diff --git a/.boltrc.js b/.boltrc.js index 1ac5eb035f..05499d313a 100644 --- a/.boltrc.js +++ b/.boltrc.js @@ -28,7 +28,7 @@ const imageFixtureDirs = globby .sync( path.join( __dirname, - './packages/components/**/fixtures/**/*.{jpg,jpeg,png}', + './packages/components/**/fixtures/**/*.{jpg,jpeg,png,svg}', ), ) .map(file => path.dirname(file)); @@ -37,7 +37,7 @@ const imageSets = []; imageFixtureDirs.forEach(fixturePath => { imageSets.push({ base: fixturePath, - glob: '*.{jpg,jpeg,png}', + glob: '*.{jpg,jpeg,png,svg}', dist: path.join(adjustRelativePath(siteConfig.wwwDir), 'fixtures'), }); }); @@ -45,6 +45,7 @@ imageFixtureDirs.forEach(fixturePath => { const nonImageFixtures = globby.sync([ './packages/components/**/fixtures/**/*', '!./packages/components/**/fixtures/**/*.{jpg,jpeg,png}', + './packages/components/**/fixtures/videos/**/*', ]); const itemsToCopy = []; @@ -59,19 +60,12 @@ nonImageFixtures.forEach(fixturePath => { to: path.join( __dirname, adjustRelativePath(siteConfig.wwwDir), - 'fixtures/', + 'fixtures/videos', ), flatten: true, }); }); -siteConfig.copy.forEach(item => { - itemsToCopy.push({ - from: path.join(__dirname, adjustRelativePath(item.from)), - to: path.join(__dirname, adjustRelativePath(item.to)), - flatten: item.flatten, - }); -}); module.exports = { wwwDir: adjustRelativePath(siteConfig.wwwDir), @@ -80,7 +74,6 @@ module.exports = { components: { global: [...allComponentPackages, '@bolt/analytics-autolink'], }, - alterTwigEnv: siteConfig.alterTwigEnv, images: { sets: imageSets, }, diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 78d93822a7..0000000000 --- a/.dockerignore +++ /dev/null @@ -1,14 +0,0 @@ -* -**/* -!www -!server -!docs-site -!packages -**/*/node_modules -**/*/vendor -docs-site/src/assets -node_modules -!yarn.lock -!package.json -!.boltrc.js -!lerna.json diff --git a/.eslintignore b/.eslintignore index ecd78b9e45..f672bab833 100644 --- a/.eslintignore +++ b/.eslintignore @@ -6,6 +6,9 @@ packages/uikit-workshop/** **/dist/** packages/generators/** +packages/uikit-critical-css-webpack-plugin/** +packages/uikit-prerenderer/** +packages/uikit-prerender-spa-plugin/** # compiled via build scripts -- need to exclude from validation rules packages/components/bolt-icons/src/icons/** diff --git a/.gitignore b/.gitignore index 72c63135b2..229a621d5e 100755 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ vendor tests_output /www +dist* # Logs *.log diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..61a0002241 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +puppeteer_skip_chromium_download=true \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 88198ef6ab..daef3a3b68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,15 +15,9 @@ addons: before_install: - openssl aes-256-cbc -K $encrypted_4537e53f71e7_key -iv $encrypted_4537e53f71e7_iv -in scripts/bolt-design-system-bot.private-key.pem.enc -out scripts/bolt-design-system-bot.private-key.pem -d - nvm install # version lifted from `.nvmrc` - - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4 + - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.16.0 - export PATH="$HOME/.yarn/bin:$PATH" -services: - - docker - -addons: - chrome: stable - # see more conditions: https://docs.travis-ci.com/user/conditions-v1 # Stages run sequentially; the jobs in them run in parallel stages: @@ -45,19 +39,34 @@ jobs: - stage: Prep name: 'Smoke Tests: Unit Tests (Jest)' - install: yarn run setup + install: + - travis_retry yarn run setup:full + - yarn workspace @bolt/website prep # creates data and manifest files before_script: ./scripts/check-run-queue.js 'Unit' - script: yarn run test + script: + - travis_retry yarn test:js --bail --maxWorkers=1 + # - yarn test:js:quick --maxWorkers=1 # running both `test:js` as comparison; remove or comment out this or other one eventually + - yarn test:php + - yarn test:monorepo --maxWorkers=1 + - yarn test:pkgs --ignore=@bolt/uikit-workshop --ignore=@bolt/build-tools --ignore=@bolt/build-tools--test-multi-lang after_success: ./scripts/check-run-success.js 'Unit' after_failure: ./scripts/check-run-failure.js 'Unit' + - stage: Prep + name: 'Smoke Tests: Build Tools' + install: 'npm run setup' + before_script: ./scripts/check-run-queue.js 'Build Tools' + script: yarn run test:build-tools + after_success: ./scripts/check-run-success.js 'Build Tools' + after_failure: ./scripts/check-run-failure.js 'Build Tools' + - stage: Prep name: 'Build Drupal Lab' script: - composer global require hirak/prestissimo - cd example-integrations/drupal-lab - composer install --prefer-dist --no-dev - - cd web/themes/bolt-starter && yarn + - cd web/themes/bolt-starter && yarn --force - yarn run build - yarn run test # run Jest tests on the FE build that just compiled - cd ../../../ && composer run build # finish running through the remainder of the Drupal Lab build @@ -76,19 +85,17 @@ jobs: - stage: Test Live Site name: 'Nightwatch End-to-End' - install: yarn run setup - before_script: ./scripts/check-run-in-progress.js 'Nightwatch' + install: travis_retry yarn run setup + before_script: travis_retry ./scripts/check-run-in-progress.js 'Nightwatch' script: - - export NOW_URL=$(./scripts/get-latest-deploy.js) + - travis_retry export NOW_URL=$(./scripts/get-latest-deploy.js) - echo "The Now URL is $NOW_URL" - - time curl -sSf "$NOW_URL" > /dev/null # warming up site - - sleep 60 + - travis_retry time curl -sSf "$NOW_URL" > /dev/null # warming up site - travis_wait yarn run test:e2e:full - - sleep 60 - - ./packages/testing/testing-nightwatch/nightwatch-report-results.js + - travis_retry ./packages/testing/testing-nightwatch/nightwatch-report-results.js after_success: - - ./scripts/deploy-branch-alias.js - - ./scripts/deploy-tagged-release.js + - travis_retry ./scripts/deploy-branch-alias.js + - travis_retry ./scripts/deploy-tagged-release.js - stage: Test Live Site name: 'Ensure site is live' diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1d441436..f0dcf8407e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,215 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* accidentally set 'target' attr instead of 'tabindex' ([845a472](https://github.com/bolt-design-system/bolt/commit/845a472)) +* add 'disabled' attr to button component ([d5081f1](https://github.com/bolt-design-system/bolt/commit/d5081f1)) +* add 'disabled' attr to trigger component ([5d53cd2](https://github.com/bolt-design-system/bolt/commit/5d53cd2)) +* add 'target' in twig if passed via attributes ([6b0317e](https://github.com/bolt-design-system/bolt/commit/6b0317e)) +* add @bolt/core fix to a handful of utility classes missing on Japanese-specific lang builds ([e03abf1](https://github.com/bolt-design-system/bolt/commit/e03abf1)) +* add calculated placeholder image / placeholder color to the image component Twig template's wrapper if a custom version isn't specified ([c41696b](https://github.com/bolt-design-system/bolt/commit/c41696b)) +* add comments ([545fde2](https://github.com/bolt-design-system/bolt/commit/545fde2)) +* add CSS fix to make sure low quality image placeholders get the blur effect while the main image is lazyloaded ([3815a57](https://github.com/bolt-design-system/bolt/commit/3815a57)) +* add custom cursor files ([1fdc43c](https://github.com/bolt-design-system/bolt/commit/1fdc43c)) +* add install command to travis for build tools tests + update yarn.lock ([5a3f3df](https://github.com/bolt-design-system/bolt/commit/5a3f3df)) +* add missing calls to super in navlink JS ([9f3bd31](https://github.com/bolt-design-system/bolt/commit/9f3bd31)) +* add missing config to disable Shadow DOM in the Navlink component (temp workaround to component not currently rendering HTML) ([f1ac0c1](https://github.com/bolt-design-system/bolt/commit/f1ac0c1)) +* add missing log dependency to cli.js ([63ee6e3](https://github.com/bolt-design-system/bolt/commit/63ee6e3)) +* add new CLI flags for jest to reduce total # of concurrent workers allowed ([6445b5f](https://github.com/bolt-design-system/bolt/commit/6445b5f)) +* add new option to the image task to optionally disable image compression; used when making / running VRTs ([6cd2d9a](https://github.com/bolt-design-system/bolt/commit/6cd2d9a)) +* add pointer as fallback for zoom-in and zoom-out in IE11 ([c31d2de](https://github.com/bolt-design-system/bolt/commit/c31d2de)) +* add temporary patch to @basalt/twig-renderer to try and prevent unavailable ports from getting assigned + temporarily add get-port package until this patch is no longer needed ([2625bd2](https://github.com/bolt-design-system/bolt/commit/2625bd2)) +* add trigger as dependency for modal ([e14e2f7](https://github.com/bolt-design-system/bolt/commit/e14e2f7)) +* address eslint issues ([e330908](https://github.com/bolt-design-system/bolt/commit/e330908)) +* address prettier issue ([226dec3](https://github.com/bolt-design-system/bolt/commit/226dec3)) +* adjust Japanese-specific CSS build test ([16d1d23](https://github.com/bolt-design-system/bolt/commit/16d1d23)) +* adjust test filter cli to work on Travis ([0835ff7](https://github.com/bolt-design-system/bolt/commit/0835ff7)) +* allow for images passed into the blockquote component to be lazyloaded ([e3b3b39](https://github.com/bolt-design-system/bolt/commit/e3b3b39)) +* apply .is-expanded rule to .c-bolt-band to fix background video bug in ie ([d2394df](https://github.com/bolt-design-system/bolt/commit/d2394df)) +* bump dependency versions used in build tool tests ([ee425c0](https://github.com/bolt-design-system/bolt/commit/ee425c0)) +* carousel chevron subpixel render ([dc91245](https://github.com/bolt-design-system/bolt/commit/dc91245)) +* change when monorepo tests ([c906697](https://github.com/bolt-design-system/bolt/commit/c906697)) +* cherry pick build tools updates from https://github.com/bolt-design-system/bolt/pull/1323 ([0676e3a](https://github.com/bolt-design-system/bolt/commit/0676e3a)) +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/commit/d9de9c0)) +* correctly ignore monorepo tests in main tests ([fba3cc0](https://github.com/bolt-design-system/bolt/commit/fba3cc0)) +* cursor size ([c8e9c68](https://github.com/bolt-design-system/bolt/commit/c8e9c68)) +* dependency map twig namespaces path ([6c1fb1a](https://github.com/bolt-design-system/bolt/commit/6c1fb1a)) +* don't re-blur the image component once it has already loaded the first time. fixes a lazy-loaded related rendering issue when updating the src / srcset props after the image component has already loaded up ([e95ada7](https://github.com/bolt-design-system/bolt/commit/e95ada7)) +* ensure dep tester paths are more resiliant ([7c2abb8](https://github.com/bolt-design-system/bolt/commit/7c2abb8)) +* escape linting ([2212614](https://github.com/bolt-design-system/bolt/commit/2212614)) +* exclude Yeoman component generator from monorepo / Twig dependency checks ([df3dbdd](https://github.com/bolt-design-system/bolt/commit/df3dbdd)) +* execa usage ([8836d22](https://github.com/bolt-design-system/bolt/commit/8836d22)) +* execa usage ([044059b](https://github.com/bolt-design-system/bolt/commit/044059b)) +* fix eslint errors ([6d7f6a4](https://github.com/bolt-design-system/bolt/commit/6d7f6a4)) +* fix eslint issue ([4af8f2e](https://github.com/bolt-design-system/bolt/commit/4af8f2e)) +* fix eslint issue + update Drupal Lab patch ([0082e19](https://github.com/bolt-design-system/bolt/commit/0082e19)) +* fix image task to properly generate srcsets in prod mode ([332ffda](https://github.com/bolt-design-system/bolt/commit/332ffda)) +* fix lint issue ([03a1bb3](https://github.com/bolt-design-system/bolt/commit/03a1bb3)) +* fix lint issue ([9e82e93](https://github.com/bolt-design-system/bolt/commit/9e82e93)) +* fix nav scrollbar in IE 11 + fix dependency-related JS error getting thrown in IE 11 ([e777ca2](https://github.com/bolt-design-system/bolt/commit/e777ca2)) +* fix prettier issue ([80b456e](https://github.com/bolt-design-system/bolt/commit/80b456e)) +* fix prettier issue ([787c3de](https://github.com/bolt-design-system/bolt/commit/787c3de)) +* fix prettier issue ([15b2563](https://github.com/bolt-design-system/bolt/commit/15b2563)) +* fix stylelint error ([3abbb7b](https://github.com/bolt-design-system/bolt/commit/3abbb7b)) +* fix typo in VRT reporting for Travis ([69f1d6e](https://github.com/bolt-design-system/bolt/commit/69f1d6e)) +* fix webpack prettier issue ([d784e7d](https://github.com/bolt-design-system/bolt/commit/d784e7d)) +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/commit/f1e6f95)) +* ignore Drupal Lab package.json from getting picked up by testing utils ([5c38668](https://github.com/bolt-design-system/bolt/commit/5c38668)) +* ignore skipped e2e tests in Jest ([65d4e75](https://github.com/bolt-design-system/bolt/commit/65d4e75)) +* immediately load up the pl-search component vs defer loading ([3a49603](https://github.com/bolt-design-system/bolt/commit/3a49603)) +* initially add the current image component width to the `sizes` prop when the prop is set to `auto` ([87adbcb](https://github.com/bolt-design-system/bolt/commit/87adbcb)) +* jest exclusion ([bd69a85](https://github.com/bolt-design-system/bolt/commit/bd69a85)) +* lazily automatically calculate the correct image sizes prop if set to auto and the image component's window gets resized ([87217e3](https://github.com/bolt-design-system/bolt/commit/87217e3)) +* limit now.sh deployment to just the www folder ([de7172a](https://github.com/bolt-design-system/bolt/commit/de7172a)) +* lint js ([7193a3b](https://github.com/bolt-design-system/bolt/commit/7193a3b)) +* lint js ([9b6c152](https://github.com/bolt-design-system/bolt/commit/9b6c152)) +* lint js ([a9a6cd8](https://github.com/bolt-design-system/bolt/commit/a9a6cd8)) +* lint js ([3c96888](https://github.com/bolt-design-system/bolt/commit/3c96888)) +* logging out stderr instead of stdout ([406e168](https://github.com/bolt-design-system/bolt/commit/406e168)) +* major cross browser fixes + polyfill updates ([50b4214](https://github.com/bolt-design-system/bolt/commit/50b4214)) +* make sure build tools test install runs postinstall scripts ([007d1ce](https://github.com/bolt-design-system/bolt/commit/007d1ce)) +* make sure config schema path can be resolved in the build tools CLI ([239e4cc](https://github.com/bolt-design-system/bolt/commit/239e4cc)) +* make sure Jest tests using the Twig Renderer stop the server when finished ([5e880f5](https://github.com/bolt-design-system/bolt/commit/5e880f5)) +* make sure the config-file CLI args work together with the default cosmic config behavior ([8a303b8](https://github.com/bolt-design-system/bolt/commit/8a303b8)) +* mark as private for now ([f7eb881](https://github.com/bolt-design-system/bolt/commit/f7eb881)) +* move the yarn workspaces' nohoist config under workspaces ([973be0f](https://github.com/bolt-design-system/bolt/commit/973be0f)) +* only add the `data-sizes` prop to the image component when lazyloading ([4c9f463](https://github.com/bolt-design-system/bolt/commit/4c9f463)) +* only display component explorer message on docs pages where previous getting used ([a112aa9](https://github.com/bolt-design-system/bolt/commit/a112aa9)) +* only output placeholder color / placeholder image when lazyloading ([283ce71](https://github.com/bolt-design-system/bolt/commit/283ce71)) +* pass the web component the correct prop data for any base64 low quality placeholder + average image color options that exists. This fixes a visible flash that had been occurring when the web component initially boots up and renders ([cd96387](https://github.com/bolt-design-system/bolt/commit/cd96387)) +* pattern lab override, position 'relative' causing modal choppiness on scroll ([29b622f](https://github.com/bolt-design-system/bolt/commit/29b622f)) +* prettify CSS result from the @bolt/build-tools before doing snapshot diff ([a50ffa5](https://github.com/bolt-design-system/bolt/commit/a50ffa5)) +* prevent globbing into gitignore folders ([58b7043](https://github.com/bolt-design-system/bolt/commit/58b7043)) +* quote the `lang` global JS data to fix JS error getting thrown ([ce3ee2c](https://github.com/bolt-design-system/bolt/commit/ce3ee2c)) +* re-test build tool Travis tests ([fcc7467](https://github.com/bolt-design-system/bolt/commit/fcc7467)) +* remove --no-verify arg ([6cd4200](https://github.com/bolt-design-system/bolt/commit/6cd4200)) +* remove 'noBodyScroll' prop in favor of private variable ([702200a](https://github.com/bolt-design-system/bolt/commit/702200a)) +* remove copy from doc page ([5dd5eff](https://github.com/bolt-design-system/bolt/commit/5dd5eff)) +* remove default sizes attribute from getting added to the device viewer component ([280a306](https://github.com/bolt-design-system/bolt/commit/280a306)) +* remove duplicate pkg ([e52396a](https://github.com/bolt-design-system/bolt/commit/e52396a)) +* remove eslint comment being picked up ([ff4c14d](https://github.com/bolt-design-system/bolt/commit/ff4c14d)) +* remove inline includes ([b1df1a2](https://github.com/bolt-design-system/bolt/commit/b1df1a2)) +* remove obsolete snapshots ([feba331](https://github.com/bolt-design-system/bolt/commit/feba331)) +* remove outline from button and link custom-elements to fix double-focus ([5454d1f](https://github.com/bolt-design-system/bolt/commit/5454d1f)) +* remove postinstall + rename dev npm script ([e431212](https://github.com/bolt-design-system/bolt/commit/e431212)) +* remove remaining schema form JS import ([7813dcf](https://github.com/bolt-design-system/bolt/commit/7813dcf)) +* remove travis command typo ([84ba7ae](https://github.com/bolt-design-system/bolt/commit/84ba7ae)) +* remove travis_retry when running Nightwatch e2e tests ([b1c5b63](https://github.com/bolt-design-system/bolt/commit/b1c5b63)) +* remove unused classname ([5904236](https://github.com/bolt-design-system/bolt/commit/5904236)) +* Remove unwanted behaviour when JS is disabled ([6d2033d](https://github.com/bolt-design-system/bolt/commit/6d2033d)) +* remove yeti icon ([488af87](https://github.com/bolt-design-system/bolt/commit/488af87)) +* rename 'preventBodyScroll' to 'noBodyScroll' ([5b6ab74](https://github.com/bolt-design-system/bolt/commit/5b6ab74)) +* rename nav-button-position prop in jest test, update snapshot ([713af90](https://github.com/bolt-design-system/bolt/commit/713af90)) +* replace %extends with separate element and :host selectors to fix IE bug ([ff75848](https://github.com/bolt-design-system/bolt/commit/ff75848)) +* restore component snapshots to have background color / image props added (regardless on if they are being lazyloaded or not) ([b4857b9](https://github.com/bolt-design-system/bolt/commit/b4857b9)) +* restore regular modal width ([36b0157](https://github.com/bolt-design-system/bolt/commit/36b0157)) +* retest build after removing Babel-related dependencies hoisted when installing ([733cf0d](https://github.com/bolt-design-system/bolt/commit/733cf0d)) +* retest Jest after making blockquote test adjustments ([670df4d](https://github.com/bolt-design-system/bolt/commit/670df4d)) +* revert adding command to kill open ports ([e214ff7](https://github.com/bolt-design-system/bolt/commit/e214ff7)) +* revert adding Japanese-specific .boltrc config ([1663b31](https://github.com/bolt-design-system/bolt/commit/1663b31)) +* revert bolt/core dependency updates + temporarily remove yarn.lock to ensure a fresh install on Travis ([20c8386](https://github.com/bolt-design-system/bolt/commit/20c8386)) +* revert patch change ([856d137](https://github.com/bolt-design-system/bolt/commit/856d137)) +* rollback uikit dependency updates while debugging IE 11 ([9e67b83](https://github.com/bolt-design-system/bolt/commit/9e67b83)) +* skip 2nd testing utils test causing errors ([86f6cc1](https://github.com/bolt-design-system/bolt/commit/86f6cc1)) +* snaps ([27a2f3c](https://github.com/bolt-design-system/bolt/commit/27a2f3c)) +* snaps ([26b5fcc](https://github.com/bolt-design-system/bolt/commit/26b5fcc)) +* temporarily auto-patch the lazysizes JS to allow the internal element selector to be specified if a new `getElements` method is defined in the lazysizes config + update yarn.lock ([ec9b628](https://github.com/bolt-design-system/bolt/commit/ec9b628)) +* temporarily disable carousel Jest test images from lazyloading ([af77e6f](https://github.com/bolt-design-system/bolt/commit/af77e6f)) +* temporarily mark as private ([d2d0a7c](https://github.com/bolt-design-system/bolt/commit/d2d0a7c)) +* temporarily mark as private ([1673619](https://github.com/bolt-design-system/bolt/commit/1673619)) +* temporarily patch Drupal Lab build tools so Jest tests continue to pass until hotfix released ([874c679](https://github.com/bolt-design-system/bolt/commit/874c679)) +* test and typo ([8aa43b3](https://github.com/bolt-design-system/bolt/commit/8aa43b3)) +* tests ([12578d9](https://github.com/bolt-design-system/bolt/commit/12578d9)) +* tighten up Twig RegEx parsing ([8d7b76b](https://github.com/bolt-design-system/bolt/commit/8d7b76b)) +* typo ([dea7a00](https://github.com/bolt-design-system/bolt/commit/dea7a00)) +* typo ([e8a3250](https://github.com/bolt-design-system/bolt/commit/e8a3250)) +* update @bolt/analytics-autolink to catch errors thrown if a Google Analytics `analytics.js` script tag doesn't exist on the page. ([41bd669](https://github.com/bolt-design-system/bolt/commit/41bd669)) +* update @bolt/analytics-autotrack package to catch a JS error thrown if `window.drupalSettings.google_analytics.trackCrossDomains` isn't defined ([5919c48](https://github.com/bolt-design-system/bolt/commit/5919c48)) +* update styles to prevent lazyloaded / blurred images from leaking out of the container ([6a032f4](https://github.com/bolt-design-system/bolt/commit/6a032f4)) +* Update and simplify twig variables ([7cfe1dd](https://github.com/bolt-design-system/bolt/commit/7cfe1dd)) +* update blockquote test config ([ab577a8](https://github.com/bolt-design-system/bolt/commit/ab577a8)) +* update blockquote VRT snapshot ([b44721b](https://github.com/bolt-design-system/bolt/commit/b44721b)) +* update build tool tests to format CSS before comparing results ([90cefe0](https://github.com/bolt-design-system/bolt/commit/90cefe0)) +* update carousel snapshots + image screenshots to now incorporate lazyload-related fixes ([c42b5a4](https://github.com/bolt-design-system/bolt/commit/c42b5a4)) +* update carousel VRT tests to render more consistently ([6ce545f](https://github.com/bolt-design-system/bolt/commit/6ce545f)) +* update code for SSR server updates to fix eslint and prettier issues ([bf46bfd](https://github.com/bolt-design-system/bolt/commit/bf46bfd)) +* update deps ([7fedea2](https://github.com/bolt-design-system/bolt/commit/7fedea2)) +* update device viewer Jest snapshot to reflect updated image component + update yarn.lock ([3c6deff](https://github.com/bolt-design-system/bolt/commit/3c6deff)) +* update eslint rules to temporarily ignore new uikit-related packages ([9a2eb46](https://github.com/bolt-design-system/bolt/commit/9a2eb46)) +* update headline component Jest test to not use async forEach ([e9ed7cf](https://github.com/bolt-design-system/bolt/commit/e9ed7cf)) +* update image component's Twig to always output placeholders when available + retest preloading ([20dfeaf](https://github.com/bolt-design-system/bolt/commit/20dfeaf)) +* update internal @bolt/build-tools references to utils to globally use the NPM namespaced version so the config store matches across the board ([200bb63](https://github.com/bolt-design-system/bolt/commit/200bb63)) +* update Jest CLI args + new testing utils CLI to handle instances when no packages have been updated ([114907b](https://github.com/bolt-design-system/bolt/commit/114907b)) +* update Jest snapshot for the build tools ([acac6a6](https://github.com/bolt-design-system/bolt/commit/acac6a6)) +* update Jest snapshot for the build tools ([a324904](https://github.com/bolt-design-system/bolt/commit/a324904)) +* update Jest snapshots for build tools ([4bc99cb](https://github.com/bolt-design-system/bolt/commit/4bc99cb)) +* update jest tests ([78cb2c7](https://github.com/bolt-design-system/bolt/commit/78cb2c7)) +* update nightwatch config to fix chrome driver issues ([3ae6a7c](https://github.com/bolt-design-system/bolt/commit/3ae6a7c)) +* update Nightwatch version + bump version of FF running on Sauce Labs ([f00bf6f](https://github.com/bolt-design-system/bolt/commit/f00bf6f)) +* update now.sh config to make sure the www folder is the server root ([f096fc7](https://github.com/bolt-design-system/bolt/commit/f096fc7)) +* update npm run test script to avoid spinning up duplicate Jest test instances ([40b33ed](https://github.com/bolt-design-system/bolt/commit/40b33ed)) +* update patch path + commit ref ([e1b468d](https://github.com/bolt-design-system/bolt/commit/e1b468d)) +* update path to action-block subcomponent, add test to confirm subcomponent renders ([17bd150](https://github.com/bolt-design-system/bolt/commit/17bd150)) +* update ratio VRT snapshot with version not as pixelated ([13d498e](https://github.com/bolt-design-system/bolt/commit/13d498e)) +* update snapshots based on image component fixes ([0d9590f](https://github.com/bolt-design-system/bolt/commit/0d9590f)) +* update tests ([0a580d1](https://github.com/bolt-design-system/bolt/commit/0a580d1)) +* update the monorepo Twig dependency test to exclude the renamed Yeoman generator ([53ae600](https://github.com/bolt-design-system/bolt/commit/53ae600)) +* update the value getting assigned to the main `` tag’s `src` attribute in the Twig template. Previously this had been using the base64 encoded version of the image (when getting lazy loaded) but this was just adding extra HTML data without actually doing what it was supposed to be doing. Now this has been updated to specifically use the 1x1 placeholder pixel instead. ([4ec7db3](https://github.com/bolt-design-system/bolt/commit/4ec7db3)) +* update theme logic in js to apply to close button ([b78f017](https://github.com/bolt-design-system/bolt/commit/b78f017)) +* update travis CLI command to kill anything running on port 4444 ([adeb16e](https://github.com/bolt-design-system/bolt/commit/adeb16e)) +* web component usage doc ([02c6459](https://github.com/bolt-design-system/bolt/commit/02c6459)) +* wire up + add tests for Japanese-specific lang build fix in Drupal Lab ([093dcb2](https://github.com/bolt-design-system/bolt/commit/093dcb2)) +* workaround to re-enable testing utils Jest tests ([c76012e](https://github.com/bolt-design-system/bolt/commit/c76012e)) +* wrapping up pkg diff list utils ([17462cf](https://github.com/bolt-design-system/bolt/commit/17462cf)) +* wrong variable name in trigger JS ([bad2ccc](https://github.com/bolt-design-system/bolt/commit/bad2ccc)) + + +### Features + +* add 'disabled' state to button link ([4943355](https://github.com/bolt-design-system/bolt/commit/4943355)) +* add 'disabled' state to trigger link, update demo ([a538ac9](https://github.com/bolt-design-system/bolt/commit/a538ac9)) +* add 'env' to global JS, wrap 'env' and 'lang' in JSON.stringify ([99f1a11](https://github.com/bolt-design-system/bolt/commit/99f1a11)) +* add 'vrtDefaultConfig' export to testing-helpers, use in carousel test ([f3a7147](https://github.com/bolt-design-system/bolt/commit/f3a7147)) +* add a nightwatch test for copy to clipboard ([4537e1b](https://github.com/bolt-design-system/bolt/commit/4537e1b)) +* add ability to optionally align background images vertically ([a9ecfe4](https://github.com/bolt-design-system/bolt/commit/a9ecfe4)) +* add cli to run Jest only on packages that changed ([4c14818](https://github.com/bolt-design-system/bolt/commit/4c14818)) +* add demo of modal triggered by video 'toggle' ([42b9784](https://github.com/bolt-design-system/bolt/commit/42b9784)) +* add demo page for trigger 'disabled' option ([11637e7](https://github.com/bolt-design-system/bolt/commit/11637e7)) +* add dependency map tests ([b422ffa](https://github.com/bolt-design-system/bolt/commit/b422ffa)) +* add dependency mapper ([d0dbb8b](https://github.com/bolt-design-system/bolt/commit/d0dbb8b)) +* add functional test of bolt sticky ([c74043c](https://github.com/bolt-design-system/bolt/commit/c74043c)) +* add new critical polyfill package + docs ([d15c6d0](https://github.com/bolt-design-system/bolt/commit/d15c6d0)) +* add new inline polyfills package ([9a7e6bd](https://github.com/bolt-design-system/bolt/commit/9a7e6bd)) +* add patch to allow VRTs images of different sizes to be tested ([013c28c](https://github.com/bolt-design-system/bolt/commit/013c28c)) +* add repeat-rule mixin ([e8d24c7](https://github.com/bolt-design-system/bolt/commit/e8d24c7)) +* adding git change details ([f9afde9](https://github.com/bolt-design-system/bolt/commit/f9afde9)) +* cherry pick a build tools update to reuse the same browser tab you already had open when starting up / restarting the @bolt/build-tools ([b0a29f8](https://github.com/bolt-design-system/bolt/commit/b0a29f8)) +* combine video modal demos into a single page ([95d8ec7](https://github.com/bolt-design-system/bolt/commit/95d8ec7)) +* improve how we handle VRT errors from Jest locally when the now.sh token expected for Travis CI builds doesn't exist + add formatted summary of results + links when completed ([ba98929](https://github.com/bolt-design-system/bolt/commit/ba98929)) +* move scrollbar helpers to core, scrollbar calc functions to Class, add 'preventBodyScroll' as prop ([5a731b0](https://github.com/bolt-design-system/bolt/commit/5a731b0)) +* output `display` instead of `display="true"` for consistency ([aa28e34](https://github.com/bolt-design-system/bolt/commit/aa28e34)) +* tweak the internal spacing for the Navbar so extra elements nested inside the main title section will automatically get spacing in between each item + eliminate the need for items themselves adding their own space ([8cbcf08](https://github.com/bolt-design-system/bolt/commit/8cbcf08)) +* update custom events to bubble and include details about body scrollbar ([2584e00](https://github.com/bolt-design-system/bolt/commit/2584e00)) +* update lazysizes default lazyloading config to be more conservative with preloading by default ([d393652](https://github.com/bolt-design-system/bolt/commit/d393652)) +* update Webpack to handle .cur files (cursor file fallback when needed) ([01602ac](https://github.com/bolt-design-system/bolt/commit/01602ac)) +* upgrade to now.sh v2 for handling the static site deployments ([8db7b15](https://github.com/bolt-design-system/bolt/commit/8db7b15)) +* wire up new critical polyfill package as a reference + prep to wire it up to Drupal Lab ([ed7e73f](https://github.com/bolt-design-system/bolt/commit/ed7e73f)) + + +### Reverts + +* re-add yarn.lock ([044d063](https://github.com/bolt-design-system/bolt/commit/044d063)) +* revert clipping Jest snapshots due to OS-level screenshot differences ([fc3e438](https://github.com/bolt-design-system/bolt/commit/fc3e438)) +* revert disabling Travis CI jobs; update maxWorkers on Travis to 1 + local development to 3 ([87c4a4d](https://github.com/bolt-design-system/bolt/commit/87c4a4d)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) diff --git a/__tests__/monorepo.test.js b/__tests__/monorepo-basics.test.js similarity index 90% rename from __tests__/monorepo.test.js rename to __tests__/monorepo-basics.test.js index a6e649a673..ae9aff7cc7 100644 --- a/__tests__/monorepo.test.js +++ b/__tests__/monorepo-basics.test.js @@ -1,7 +1,7 @@ -const path = require('path'); +const { join, resolve } = require('path'); const fs = require('fs-extra'); const globby = require('globby'); -const rootPkg = require(path.join(__dirname, '../package.json')); +const rootPkg = require(join(__dirname, '../package.json')); const assert = require('assert'); const chalk = require('chalk'); const { promisify } = require('util'); @@ -66,9 +66,13 @@ describe('check the config for monorepo packages', () => { }); }); - test('non-private @bolt packages do not use devDependencies', async () => { + test('non-private @bolt packages (generally) do not use devDependencies', async () => { pkgs.forEach(pkg => { - if (!pkg.private && pkg.name.includes('@bolt')) { + if ( + !pkg.private && + pkg.name.includes('@bolt') && + !pkg.name.includes('@bolt/critical-path-polyfills') // only currently exception to this rule + ) { expect( pkg.devDependencies, `Please move any of ${ @@ -97,13 +101,13 @@ describe('check the config for monorepo packages', () => { }); test('`@bolt` dependencies are symlinked to the packages folder', async () => { - const baseDir = path.resolve(__dirname, '../node_modules/@bolt'); + const baseDir = resolve(__dirname, '../node_modules/@bolt'); readdir(baseDir) .then(dirNames => Promise.all( dirNames.map(dirName => { const item = { - path: path.join(baseDir, dirName), + path: join(baseDir, dirName), }; return new Promise((resolve, reject) => { lstat(item.path) diff --git a/__tests__/monorepo-deps.test.js b/__tests__/monorepo-deps.test.js new file mode 100644 index 0000000000..8d0e0e322e --- /dev/null +++ b/__tests__/monorepo-deps.test.js @@ -0,0 +1,104 @@ +const { join, resolve } = require('path'); +const fs = require('fs-extra'); +const globby = require('globby'); +const { + getPkgPathFromName, + getPkgDependents, + getPkgDependencies, + getPkgList, + getPkgFiles, + getFilesPkgSync, + getFilesChanged, + findTwigFilesUsedInFile, + getFilesPkg, + getTwigFilePath, +} = require('@bolt/testing-utils'); + +/** + * @param {string} pkgName + * @param {string[]} deps + */ +function pkgToHaveDependenciesOn(pkgName, deps) { + const listedDeps = getPkgDependencies(pkgName); + const missingDeps = []; + deps.forEach(dep => { + if (!listedDeps.some(d => d === dep)) { + if (dep !== pkgName) { + if (dep !== '@bolt/global') { + missingDeps.push(dep); + } + } + } + }); + + const pass = missingDeps.length === 0; + + return pass + ? { + pass, + message: () => `${pkgName} has all dependencies listed correctly`, + } + : { + pass, + message: () => + `${pkgName} is missing these dependencies in package.json: ${missingDeps.join( + ', ', + )}`, + }; +} + +expect.extend({ pkgToHaveDependenciesOn }); + +/** @type {BoltPkg[]} */ +const boltPkgs = getPkgList(); + +describe('Bolt Components declare dependencies in package.json if used in Twig files', () => { + const excludedPkgs = ['@bolt/generator-bolt']; + + boltPkgs + .filter(boltPkg => !excludedPkgs.includes(boltPkg.name)) + .forEach( + /** @type {BoltPkg} */ + boltPkg => { + test(`pkg: ${boltPkg.name}`, async () => { + const twigFilePaths = await globby( + [join(boltPkg.location, '**/*.twig')], + { + gitignore: true, + ignore: ['**/__tests__/**', '**/node_modules/**', '**/vendor/**'], + }, + ); + + if (twigFilePaths.length === 0) { + expect(true).toBe(true); + } else { + /** @type {Set} */ + const twigDeps = new Set(); + /** @type {Set} */ + const twigDepPkgs = new Set(); + + await Promise.all( + twigFilePaths.map(async twigFilePath => { + const theseTwigDeps = await findTwigFilesUsedInFile( + twigFilePath, + ); + theseTwigDeps.forEach(x => twigDeps.add(x)); + }), + ); + + await Promise.all( + [...twigDeps].map(twigDep => { + return getTwigFilePath(twigDep) + .then(getFilesPkg) + .then(pkgName => twigDepPkgs.add(pkgName)); + }), + ); + + twigDepPkgs.delete(boltPkg.name); + + expect(boltPkg.name).pkgToHaveDependenciesOn([...twigDepPkgs]); + } + }, 10000); + }, + ); +}); diff --git a/docs-site/.boltrc.js b/docs-site/.boltrc.js index b2770cc679..3b588cd7fa 100644 --- a/docs-site/.boltrc.js +++ b/docs-site/.boltrc.js @@ -23,9 +23,9 @@ const config = { webpackDevServer: { enabled: true, }, - sourceMaps: process.env.TRAVIS || argv.prod ? false : true, - enableCache: process.env.TRAVIS || argv.prod ? false : true, - enableSSR: false, // temp disabld till Travis issue fixed + sourceMaps: !(process.env.TRAVIS || argv.prod), + enableCache: !(process.env.TRAVIS || argv.prod), + enableSSR: false, // temp disabled till Travis issue fixed extraTwigNamespaces: { bolt: { recursive: true, @@ -151,6 +151,10 @@ const config = { ], }, copy: [ + { + from: require.resolve(`@bolt/critical-path-polyfills`), + to: path.join(__dirname, '../www/build'), + }, { from: `src/assets/bolt-sketch.zip`, to: path.join(__dirname, '../www/assets'), diff --git a/docs-site/.incache b/docs-site/.incache index 292322f657..aeddb9a59b 100644 --- a/docs-site/.incache +++ b/docs-site/.incache @@ -1 +1 @@ -{"bolt-tags":{"id":"37f5ba10-b305-11e9-bfca-2d5a1547cbfa","isNew":true,"isPreserved":false,"toDelete":true,"hits":0,"lastHit":null,"createdOn":"2019-07-30T20:04:20.657Z","updatedOn":null,"expiresOn":"2019-08-29T20:04:20.657Z","value":[{"name":"vv2.3.0-rc.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/vv2.3.0-rc.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/vv2.3.0-rc.0","commit":{"sha":"a1cea7c01cef98d3aa1b61a73eb063fa12b4df18","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a1cea7c01cef98d3aa1b61a73eb063fa12b4df18"},"node_id":"MDM6UmVmOTQzNTMxNTQ6dnYyLjMuMC1yYy4w"},{"name":"v2.5.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.6","commit":{"sha":"d41aa75ae3d195d9d7fb3952eed5e0ae80988133","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/d41aa75ae3d195d9d7fb3952eed5e0ae80988133"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS42"},{"name":"v2.5.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.5","commit":{"sha":"d09d54e1cf2d8d4fcd8694459127f318d75a37a2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/d09d54e1cf2d8d4fcd8694459127f318d75a37a2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS41"},{"name":"v2.5.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.4","commit":{"sha":"26abfa30e16d831c99705c93ed113b67cb51da70","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/26abfa30e16d831c99705c93ed113b67cb51da70"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS40"},{"name":"v2.5.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.3","commit":{"sha":"ace2b3bb9fff617e9c332724079651423f5d6f97","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ace2b3bb9fff617e9c332724079651423f5d6f97"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4z"},{"name":"v2.5.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.2","commit":{"sha":"c035bd207dae01bab60feb7fef665bb8a498654b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/c035bd207dae01bab60feb7fef665bb8a498654b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4y"},{"name":"v2.5.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.1","commit":{"sha":"3fefe1d59884aac0bcd344509d30b0a0ba54063e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3fefe1d59884aac0bcd344509d30b0a0ba54063e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4x"},{"name":"v2.5.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.0","commit":{"sha":"3febe8bbb18a7dd29a34fd988cda284dac04993f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3febe8bbb18a7dd29a34fd988cda284dac04993f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4w"},{"name":"v2.4.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.4","commit":{"sha":"471c3861e9df1f1801cb98790c5d2af64d4f2c9d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/471c3861e9df1f1801cb98790c5d2af64d4f2c9d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC40"},{"name":"v2.4.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.3","commit":{"sha":"19410ff693d3bac4b925f46052861b91bc90f99e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/19410ff693d3bac4b925f46052861b91bc90f99e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4z"},{"name":"v2.4.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.2","commit":{"sha":"51afe92f27ec87ea8fa187b453f3a17bad658af5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/51afe92f27ec87ea8fa187b453f3a17bad658af5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4y"},{"name":"v2.4.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.1","commit":{"sha":"f1ce7310c1b3040604f08ebbed373e28c2a44f07","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f1ce7310c1b3040604f08ebbed373e28c2a44f07"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4x"},{"name":"v2.4.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.0","commit":{"sha":"3198503f7b9d73f9a0929a11cf0d509b7c10d7de","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3198503f7b9d73f9a0929a11cf0d509b7c10d7de"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4w"},{"name":"v2.4.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.0-beta.0","commit":{"sha":"6f6797713ff37237557b7e1319fca5c2557f57bf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/6f6797713ff37237557b7e1319fca5c2557f57bf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4wLWJldGEuMA=="},{"name":"v2.3.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.3","commit":{"sha":"8c485c01cd35b8d45c526b729b1415ffe0884db7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8c485c01cd35b8d45c526b729b1415ffe0884db7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4z"},{"name":"v2.3.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.2","commit":{"sha":"8809385d08ad70e22d8e6980aea0161d80ef3175","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8809385d08ad70e22d8e6980aea0161d80ef3175"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4y"},{"name":"v2.3.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.1","commit":{"sha":"44a40e0c476c29f9cbdb99f6da8a4f3cfe88e92d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/44a40e0c476c29f9cbdb99f6da8a4f3cfe88e92d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4x"},{"name":"v2.3.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0","commit":{"sha":"dcff0114d5540d5bf1f3c61204844ba75be99b5b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/dcff0114d5540d5bf1f3c61204844ba75be99b5b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4w"},{"name":"v2.3.0-rc.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.7","commit":{"sha":"133d972e12d0c0da5781656f337647375e8e45cf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/133d972e12d0c0da5781656f337647375e8e45cf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjc="},{"name":"v2.3.0-rc.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.6","commit":{"sha":"72938e4ea289e6fc1d8df92832978bfaf5a9eaed","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/72938e4ea289e6fc1d8df92832978bfaf5a9eaed"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjY="},{"name":"v2.3.0-rc.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.5","commit":{"sha":"0ebd520092d07fb54a14335a5574b8164870bab8","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/0ebd520092d07fb54a14335a5574b8164870bab8"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjU="},{"name":"v2.3.0-rc.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.4","commit":{"sha":"1a7fc7190801034d804c593d58c6058c0b85c490","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1a7fc7190801034d804c593d58c6058c0b85c490"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjQ="},{"name":"v2.3.0-rc.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.3","commit":{"sha":"95d757ecd8f1233da9c52c8d005c1365b1613b19","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/95d757ecd8f1233da9c52c8d005c1365b1613b19"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjM="},{"name":"v2.3.0-rc.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.2","commit":{"sha":"a89cec2129918fecde0d98d787a6716759224c65","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a89cec2129918fecde0d98d787a6716759224c65"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjI="},{"name":"v2.3.0-rc.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.1","commit":{"sha":"7295b097ff3b0f103858b502410a755ec23a5300","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/7295b097ff3b0f103858b502410a755ec23a5300"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjE="},{"name":"v2.3.0-rc.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.0","commit":{"sha":"45ae841099ff3222ba95203ded4b787dab0de0ea","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/45ae841099ff3222ba95203ded4b787dab0de0ea"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjA="},{"name":"v2.2.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.2","commit":{"sha":"b8c081853e1e4a60fa5af93cc2ad856ce88c9ea7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b8c081853e1e4a60fa5af93cc2ad856ce88c9ea7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4y"},{"name":"v2.2.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.1","commit":{"sha":"b9bf9f0a12e96516c8f680adefa3e31954601c82","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b9bf9f0a12e96516c8f680adefa3e31954601c82"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4x"},{"name":"v2.2.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.0","commit":{"sha":"2959aaa9fc039dfd2a50bfc288ba721933b26aec","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2959aaa9fc039dfd2a50bfc288ba721933b26aec"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4w"},{"name":"v2.2.0-rc.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.0-rc.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.0-rc.1","commit":{"sha":"799ce4f8f4c0f2411961966c980bfba6ee295101","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/799ce4f8f4c0f2411961966c980bfba6ee295101"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4wLXJjLjE="},{"name":"v2.1.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.6","commit":{"sha":"60ceaeb1ec9e3d45a740a957a7b244185e5b99b2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/60ceaeb1ec9e3d45a740a957a7b244185e5b99b2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS42"},{"name":"v2.1.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.5","commit":{"sha":"ddac01f2a63ca86bc60c144cb639da191046db51","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ddac01f2a63ca86bc60c144cb639da191046db51"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS41"},{"name":"v2.1.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.4","commit":{"sha":"35a30b4701444c42876b6a805b7b60b9dfe1f20d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/35a30b4701444c42876b6a805b7b60b9dfe1f20d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS40"},{"name":"v2.1.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.3","commit":{"sha":"8dd538d0bd2b00baeac2779570d00e27d23405db","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8dd538d0bd2b00baeac2779570d00e27d23405db"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4z"},{"name":"v2.1.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.2","commit":{"sha":"b8aa28fa622ce889a0b21710ee92733268183799","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b8aa28fa622ce889a0b21710ee92733268183799"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4y"},{"name":"v2.1.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.1","commit":{"sha":"8ecd575f8bb037b317078055c6cbf44047ee728a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8ecd575f8bb037b317078055c6cbf44047ee728a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4x"},{"name":"v2.1.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.0","commit":{"sha":"b725d96356c00601165d1e3a5efbddc22891834d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b725d96356c00601165d1e3a5efbddc22891834d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4w"},{"name":"v2.1.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.0-beta.0","commit":{"sha":"5a131353240a41b661bea2738a31a1abfe486097","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5a131353240a41b661bea2738a31a1abfe486097"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4wLWJldGEuMA=="},{"name":"v2.0.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0","commit":{"sha":"2b5e013d92205af495719a2f1792de9e37d1646c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2b5e013d92205af495719a2f1792de9e37d1646c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4w"},{"name":"v2.0.0-beta.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.3","commit":{"sha":"40b356ac40f7eea1584eca239cf67b4b6e540e0b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/40b356ac40f7eea1584eca239cf67b4b6e540e0b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMw=="},{"name":"v2.0.0-beta.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.2","commit":{"sha":"a8120d963d6e087adb9bf6845c4343d4b015d86d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a8120d963d6e087adb9bf6845c4343d4b015d86d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMg=="},{"name":"v2.0.0-beta.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.1","commit":{"sha":"94c50d6ab28be61332429ed4657d0ebf71d897af","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/94c50d6ab28be61332429ed4657d0ebf71d897af"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMQ=="},{"name":"v2.0.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.0","commit":{"sha":"56315a8ea35eb437a2acc3bf15b6765c63a95f54","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/56315a8ea35eb437a2acc3bf15b6765c63a95f54"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMA=="},{"name":"v1.8.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.3","commit":{"sha":"51805c602329e1cd236496624ab29bed684b0b61","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/51805c602329e1cd236496624ab29bed684b0b61"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4z"},{"name":"v1.8.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.2","commit":{"sha":"816362a5f7450fb13c42fac3d227df7fa65475e5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/816362a5f7450fb13c42fac3d227df7fa65475e5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4y"},{"name":"v1.8.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.1","commit":{"sha":"3fe53dd8cda4134a89c6bc16e882c9f702a0e44b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3fe53dd8cda4134a89c6bc16e882c9f702a0e44b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4x"},{"name":"v1.8.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.0","commit":{"sha":"a4663932e35f0966418bbb851a103e381ba0b929","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a4663932e35f0966418bbb851a103e381ba0b929"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4w"},{"name":"v1.7.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.2","commit":{"sha":"903256a58c7da3102ab65ae2957ab32d67f34280","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/903256a58c7da3102ab65ae2957ab32d67f34280"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4y"},{"name":"v1.7.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.1","commit":{"sha":"409b1cd0bb606854b39f530c52d1c20456fe4857","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/409b1cd0bb606854b39f530c52d1c20456fe4857"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4x"},{"name":"v1.7.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.0","commit":{"sha":"3e5d3692f476aba8d52e9c314b2f7476a4b88483","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3e5d3692f476aba8d52e9c314b2f7476a4b88483"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4w"},{"name":"v1.6.8","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.8","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.8","commit":{"sha":"82456b6382f10b16677f38156d04d4f04e36267f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/82456b6382f10b16677f38156d04d4f04e36267f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi44"},{"name":"v1.6.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.7","commit":{"sha":"63a02b5f4b526963848731ab6391128d8d0247ca","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63a02b5f4b526963848731ab6391128d8d0247ca"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi43"},{"name":"v1.6.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.6","commit":{"sha":"f88731389aa01900b86a9195e46ecb76ab18e957","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f88731389aa01900b86a9195e46ecb76ab18e957"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi42"},{"name":"v1.6.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.5","commit":{"sha":"63e9b28eb240e67d9798a392c055d735b9de38e4","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63e9b28eb240e67d9798a392c055d735b9de38e4"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi41"},{"name":"v1.6.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.4","commit":{"sha":"a14b46e0759e3fd06134229c0b16ea88b2bbcf20","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a14b46e0759e3fd06134229c0b16ea88b2bbcf20"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi40"},{"name":"v1.6.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.3","commit":{"sha":"9982b1402eb19f18f9fb37a2cdb0b870e10c94b0","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/9982b1402eb19f18f9fb37a2cdb0b870e10c94b0"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4z"},{"name":"v1.6.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.2","commit":{"sha":"18ea7149668d3ec64703efd6b5c9c60dd66e7119","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/18ea7149668d3ec64703efd6b5c9c60dd66e7119"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4y"},{"name":"v1.6.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.0","commit":{"sha":"cf591b3293f1e509ef08c61d7ca93b8a58bdfc7d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/cf591b3293f1e509ef08c61d7ca93b8a58bdfc7d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4w"},{"name":"v1.5.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.3","commit":{"sha":"5dd49c7da5ee3819e826248ed13937b6ba638aec","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5dd49c7da5ee3819e826248ed13937b6ba638aec"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4z"},{"name":"v1.5.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.2","commit":{"sha":"0cb7decc7e2eec4e351a0c4863c4332652fce843","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/0cb7decc7e2eec4e351a0c4863c4332652fce843"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4y"},{"name":"v1.5.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.1","commit":{"sha":"aec405a431db18c4a9fac19ba9ea34f3aa155528","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/aec405a431db18c4a9fac19ba9ea34f3aa155528"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4x"},{"name":"v1.5.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.0","commit":{"sha":"e0202423bbd98e10aa37e84678467315c77447fb","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e0202423bbd98e10aa37e84678467315c77447fb"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4w"},{"name":"v1.5.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.0-beta.0","commit":{"sha":"bf021af8ca12d44f50bccda9bb55873dfe60ea0c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bf021af8ca12d44f50bccda9bb55873dfe60ea0c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4wLWJldGEuMA=="},{"name":"v1.4.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.5","commit":{"sha":"3021958e6407b1c8753e84201825f5c367fc18d8","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3021958e6407b1c8753e84201825f5c367fc18d8"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC41"},{"name":"v1.4.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.4","commit":{"sha":"e9fb46b05a667cbebf05dda997b4525130d8321c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e9fb46b05a667cbebf05dda997b4525130d8321c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC40"},{"name":"v1.4.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.3","commit":{"sha":"2075ad611779eb3d880276e51fbd159f9c9ae6db","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2075ad611779eb3d880276e51fbd159f9c9ae6db"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4z"},{"name":"v1.4.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.2","commit":{"sha":"bd31bbdaf38ec2bd8c1d073aefd576b8c67ea9a1","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bd31bbdaf38ec2bd8c1d073aefd576b8c67ea9a1"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4y"},{"name":"v1.4.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.1","commit":{"sha":"ee26520e457860d1b5f4fd99327a87204b71c9bf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ee26520e457860d1b5f4fd99327a87204b71c9bf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4x"},{"name":"v1.4.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.0","commit":{"sha":"88df0670b4ab3bf97bc59015781d97de4c12caa9","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/88df0670b4ab3bf97bc59015781d97de4c12caa9"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4w"},{"name":"v1.3.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.4","commit":{"sha":"6c2d2de6af5855099d9b79ad60cfcc3dec021f99","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/6c2d2de6af5855099d9b79ad60cfcc3dec021f99"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy40"},{"name":"v1.3.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.3","commit":{"sha":"50b68dc7a3ea311ca0cd5e5bdaef0c582f09f20b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/50b68dc7a3ea311ca0cd5e5bdaef0c582f09f20b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4z"},{"name":"v1.3.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.2","commit":{"sha":"fd3be7510fe6ab96e9d1764be86a08dd8f81f833","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/fd3be7510fe6ab96e9d1764be86a08dd8f81f833"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4y"},{"name":"v1.3.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.1","commit":{"sha":"bd2b58863f46fd38171ab919fb199277960ff89a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bd2b58863f46fd38171ab919fb199277960ff89a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4x"},{"name":"v1.3.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.0","commit":{"sha":"f37c34da59c5502c25b723660dbc1300f55180c7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f37c34da59c5502c25b723660dbc1300f55180c7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4w"},{"name":"v1.2.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.4","commit":{"sha":"351e9dac5a02746ce00a89fd31def1becd09c4eb","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/351e9dac5a02746ce00a89fd31def1becd09c4eb"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi40"},{"name":"v1.2.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.3","commit":{"sha":"f25d3b682d5065c10f91cc491134581b36c54a67","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f25d3b682d5065c10f91cc491134581b36c54a67"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4z"},{"name":"v1.2.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.2","commit":{"sha":"cdef4f8f1b0e7d539ea7cf6b008d885303b594b5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/cdef4f8f1b0e7d539ea7cf6b008d885303b594b5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4y"},{"name":"v1.2.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.1","commit":{"sha":"54d576ca13027230159782cd020b941fb1dd81f1","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/54d576ca13027230159782cd020b941fb1dd81f1"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4x"},{"name":"v1.2.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.0","commit":{"sha":"63ac93706cacd55f63bddd32f9131f53fa076bb2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63ac93706cacd55f63bddd32f9131f53fa076bb2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4w"},{"name":"v1.1.12","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.12","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.12","commit":{"sha":"bbe50c45f743e14acec9efc9472e445916d7857a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bbe50c45f743e14acec9efc9472e445916d7857a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMg=="},{"name":"v1.1.11","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.11","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.11","commit":{"sha":"c4769ca00eda041ff73d01a1dab9ebce89483f1f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/c4769ca00eda041ff73d01a1dab9ebce89483f1f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMQ=="},{"name":"v1.1.10","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.10","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.10","commit":{"sha":"68314f9d9bfb5d5b4a879139506565e50d30d766","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/68314f9d9bfb5d5b4a879139506565e50d30d766"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMA=="},{"name":"v1.1.9","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.9","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.9","commit":{"sha":"1843b75771e6e1f491c84098f1817d980b932049","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1843b75771e6e1f491c84098f1817d980b932049"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS45"},{"name":"v1.1.8","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.8","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.8","commit":{"sha":"20aaede8654379fb0c72efa3c75c1b2b82438e85","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/20aaede8654379fb0c72efa3c75c1b2b82438e85"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS44"},{"name":"v1.1.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.7","commit":{"sha":"158e6c95d6ac915b26bdb18d852b844133aa1479","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/158e6c95d6ac915b26bdb18d852b844133aa1479"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS43"},{"name":"v1.1.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.6","commit":{"sha":"879f69e4bb99de9eac3337065ccb2083ea3f783c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/879f69e4bb99de9eac3337065ccb2083ea3f783c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS42"},{"name":"v1.1.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.5","commit":{"sha":"01c0fecbdc9f22338a7daaa3b5f955af749296b5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/01c0fecbdc9f22338a7daaa3b5f955af749296b5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS41"},{"name":"v1.1.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.4","commit":{"sha":"56e78cd901967a7055028819e16ccc39553d6125","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/56e78cd901967a7055028819e16ccc39553d6125"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS40"},{"name":"v1.1.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.3","commit":{"sha":"419472142f24fe8a63d5129f09a000cf350daaba","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/419472142f24fe8a63d5129f09a000cf350daaba"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4z"},{"name":"v1.1.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.2","commit":{"sha":"1aad9a17db14a4e0e2551dcdd39b0f3f1b33cfab","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1aad9a17db14a4e0e2551dcdd39b0f3f1b33cfab"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4y"},{"name":"v1.1.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.1","commit":{"sha":"946ca902d1a95f5910edf48359f729468500c00b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/946ca902d1a95f5910edf48359f729468500c00b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4x"},{"name":"v1.1.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.0","commit":{"sha":"4866ee3cb12d2be96eea4ccd0bed52e95ef2bf48","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/4866ee3cb12d2be96eea4ccd0bed52e95ef2bf48"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4w"},{"name":"v1.0.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.4","commit":{"sha":"2dab4ef6854a5ac002cae44fcd5901d94b722c6d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2dab4ef6854a5ac002cae44fcd5901d94b722c6d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC40"},{"name":"v1.0.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.3","commit":{"sha":"5e5e94c148edcd9a33bac338790a742b8ba73091","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5e5e94c148edcd9a33bac338790a742b8ba73091"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4z"},{"name":"v1.0.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.2","commit":{"sha":"e67d36a358814f8962daa0aea1737c22134eff97","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e67d36a358814f8962daa0aea1737c22134eff97"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4y"},{"name":"v1.0.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.1","commit":{"sha":"d4ec91ac0e70531da05c334bfe6c119575ffa79f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/d4ec91ac0e70531da05c334bfe6c119575ffa79f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4x"},{"name":"v1.0.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0","commit":{"sha":"53aca9cb4e4a3a41590c43cfa233c2087779dc5e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/53aca9cb4e4a3a41590c43cfa233c2087779dc5e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4w"},{"name":"v1.0.0-rc.12","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0-rc.12","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0-rc.12","commit":{"sha":"b7370c28d97fa0c423f5e1d1fd80e03e7eb85824","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b7370c28d97fa0c423f5e1d1fd80e03e7eb85824"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4wLXJjLjEy"},{"name":"v1.0.0-rc.11","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0-rc.11","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0-rc.11","commit":{"sha":"8453f68cacdb253cc70f509deaa4a921220682ee","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8453f68cacdb253cc70f509deaa4a921220682ee"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4wLXJjLjEx"},{"name":"v1.0.0-rc.9","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0-rc.9","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0-rc.9","commit":{"sha":"1f281260ed840f7df64d1457f838e5345c2f29c8","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1f281260ed840f7df64d1457f838e5345c2f29c8"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4wLXJjLjk="}]},"bolt-urls-to-test":{"id":"45af3730-b305-11e9-bfca-2d5a1547cbfa","isNew":true,"isPreserved":false,"toDelete":true,"hits":0,"lastHit":null,"createdOn":"2019-07-30T20:04:43.684Z","updatedOn":null,"expiresOn":"2019-08-29T20:04:43.683Z","value":{"https://v2-5-5.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-6.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://vv2-3-0-rc-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-5-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://vv2-3-0-rc-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-5-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-4-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-0-beta-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-7.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-3-0-rc-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-2-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-0-rc-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-1-6.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-5.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-0-rc-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-0-beta-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-8-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-8-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-8-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-8.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-8.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-7.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-5.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-6-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0-beta-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-5.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-0-beta-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-3-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-12.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-12.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-11.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-11.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-10.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-9.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-10.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-8.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-9.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-8.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-7.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-12.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-12.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-11.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-11.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-9.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-9.bolt-design-system.com":{"status":"dead","statusCode":404}}}} \ No newline at end of file +{"bolt-tags":{"id":"c9d6cba0-baf2-11e9-b6ed-4d18c7844835","isNew":true,"isPreserved":false,"toDelete":true,"hits":0,"lastHit":null,"createdOn":"2019-08-09T22:12:34.267Z","updatedOn":null,"expiresOn":"2019-09-08T22:12:34.266Z","value":[{"name":"vv2.3.0-rc.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/vv2.3.0-rc.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/vv2.3.0-rc.0","commit":{"sha":"a1cea7c01cef98d3aa1b61a73eb063fa12b4df18","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a1cea7c01cef98d3aa1b61a73eb063fa12b4df18"},"node_id":"MDM6UmVmOTQzNTMxNTQ6dnYyLjMuMC1yYy4w"},{"name":"v2.6.0-beta.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.6.0-beta.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.6.0-beta.1","commit":{"sha":"51f13de7bcf3ba349eca28f04de23fd23129cf90","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/51f13de7bcf3ba349eca28f04de23fd23129cf90"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNi4wLWJldGEuMQ=="},{"name":"v2.5.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.6","commit":{"sha":"c303ef52c6ec9eebefdcee17d3cb6389355d9bda","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/c303ef52c6ec9eebefdcee17d3cb6389355d9bda"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS42"},{"name":"v2.5.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.5","commit":{"sha":"d09d54e1cf2d8d4fcd8694459127f318d75a37a2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/d09d54e1cf2d8d4fcd8694459127f318d75a37a2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS41"},{"name":"v2.5.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.4","commit":{"sha":"26abfa30e16d831c99705c93ed113b67cb51da70","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/26abfa30e16d831c99705c93ed113b67cb51da70"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS40"},{"name":"v2.5.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.3","commit":{"sha":"ace2b3bb9fff617e9c332724079651423f5d6f97","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ace2b3bb9fff617e9c332724079651423f5d6f97"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4z"},{"name":"v2.5.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.2","commit":{"sha":"c035bd207dae01bab60feb7fef665bb8a498654b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/c035bd207dae01bab60feb7fef665bb8a498654b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4y"},{"name":"v2.5.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.1","commit":{"sha":"3fefe1d59884aac0bcd344509d30b0a0ba54063e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3fefe1d59884aac0bcd344509d30b0a0ba54063e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4x"},{"name":"v2.5.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.5.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.5.0","commit":{"sha":"3febe8bbb18a7dd29a34fd988cda284dac04993f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3febe8bbb18a7dd29a34fd988cda284dac04993f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNS4w"},{"name":"v2.4.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.4","commit":{"sha":"471c3861e9df1f1801cb98790c5d2af64d4f2c9d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/471c3861e9df1f1801cb98790c5d2af64d4f2c9d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC40"},{"name":"v2.4.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.3","commit":{"sha":"19410ff693d3bac4b925f46052861b91bc90f99e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/19410ff693d3bac4b925f46052861b91bc90f99e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4z"},{"name":"v2.4.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.2","commit":{"sha":"51afe92f27ec87ea8fa187b453f3a17bad658af5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/51afe92f27ec87ea8fa187b453f3a17bad658af5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4y"},{"name":"v2.4.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.1","commit":{"sha":"f1ce7310c1b3040604f08ebbed373e28c2a44f07","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f1ce7310c1b3040604f08ebbed373e28c2a44f07"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4x"},{"name":"v2.4.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.0","commit":{"sha":"3198503f7b9d73f9a0929a11cf0d509b7c10d7de","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3198503f7b9d73f9a0929a11cf0d509b7c10d7de"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4w"},{"name":"v2.4.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.4.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.4.0-beta.0","commit":{"sha":"6f6797713ff37237557b7e1319fca5c2557f57bf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/6f6797713ff37237557b7e1319fca5c2557f57bf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuNC4wLWJldGEuMA=="},{"name":"v2.3.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.3","commit":{"sha":"8c485c01cd35b8d45c526b729b1415ffe0884db7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8c485c01cd35b8d45c526b729b1415ffe0884db7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4z"},{"name":"v2.3.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.2","commit":{"sha":"8809385d08ad70e22d8e6980aea0161d80ef3175","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8809385d08ad70e22d8e6980aea0161d80ef3175"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4y"},{"name":"v2.3.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.1","commit":{"sha":"44a40e0c476c29f9cbdb99f6da8a4f3cfe88e92d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/44a40e0c476c29f9cbdb99f6da8a4f3cfe88e92d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4x"},{"name":"v2.3.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0","commit":{"sha":"dcff0114d5540d5bf1f3c61204844ba75be99b5b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/dcff0114d5540d5bf1f3c61204844ba75be99b5b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4w"},{"name":"v2.3.0-rc.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.7","commit":{"sha":"133d972e12d0c0da5781656f337647375e8e45cf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/133d972e12d0c0da5781656f337647375e8e45cf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjc="},{"name":"v2.3.0-rc.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.6","commit":{"sha":"72938e4ea289e6fc1d8df92832978bfaf5a9eaed","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/72938e4ea289e6fc1d8df92832978bfaf5a9eaed"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjY="},{"name":"v2.3.0-rc.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.5","commit":{"sha":"0ebd520092d07fb54a14335a5574b8164870bab8","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/0ebd520092d07fb54a14335a5574b8164870bab8"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjU="},{"name":"v2.3.0-rc.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.4","commit":{"sha":"1a7fc7190801034d804c593d58c6058c0b85c490","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1a7fc7190801034d804c593d58c6058c0b85c490"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjQ="},{"name":"v2.3.0-rc.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.3","commit":{"sha":"95d757ecd8f1233da9c52c8d005c1365b1613b19","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/95d757ecd8f1233da9c52c8d005c1365b1613b19"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjM="},{"name":"v2.3.0-rc.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.2","commit":{"sha":"a89cec2129918fecde0d98d787a6716759224c65","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a89cec2129918fecde0d98d787a6716759224c65"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjI="},{"name":"v2.3.0-rc.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.1","commit":{"sha":"7295b097ff3b0f103858b502410a755ec23a5300","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/7295b097ff3b0f103858b502410a755ec23a5300"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjE="},{"name":"v2.3.0-rc.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.3.0-rc.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.3.0-rc.0","commit":{"sha":"45ae841099ff3222ba95203ded4b787dab0de0ea","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/45ae841099ff3222ba95203ded4b787dab0de0ea"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMy4wLXJjLjA="},{"name":"v2.2.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.2","commit":{"sha":"b8c081853e1e4a60fa5af93cc2ad856ce88c9ea7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b8c081853e1e4a60fa5af93cc2ad856ce88c9ea7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4y"},{"name":"v2.2.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.1","commit":{"sha":"b9bf9f0a12e96516c8f680adefa3e31954601c82","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b9bf9f0a12e96516c8f680adefa3e31954601c82"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4x"},{"name":"v2.2.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.0","commit":{"sha":"2959aaa9fc039dfd2a50bfc288ba721933b26aec","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2959aaa9fc039dfd2a50bfc288ba721933b26aec"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4w"},{"name":"v2.2.0-rc.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.2.0-rc.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.2.0-rc.1","commit":{"sha":"799ce4f8f4c0f2411961966c980bfba6ee295101","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/799ce4f8f4c0f2411961966c980bfba6ee295101"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMi4wLXJjLjE="},{"name":"v2.1.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.6","commit":{"sha":"60ceaeb1ec9e3d45a740a957a7b244185e5b99b2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/60ceaeb1ec9e3d45a740a957a7b244185e5b99b2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS42"},{"name":"v2.1.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.5","commit":{"sha":"ddac01f2a63ca86bc60c144cb639da191046db51","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ddac01f2a63ca86bc60c144cb639da191046db51"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS41"},{"name":"v2.1.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.4","commit":{"sha":"35a30b4701444c42876b6a805b7b60b9dfe1f20d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/35a30b4701444c42876b6a805b7b60b9dfe1f20d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS40"},{"name":"v2.1.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.3","commit":{"sha":"8dd538d0bd2b00baeac2779570d00e27d23405db","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8dd538d0bd2b00baeac2779570d00e27d23405db"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4z"},{"name":"v2.1.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.2","commit":{"sha":"b8aa28fa622ce889a0b21710ee92733268183799","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b8aa28fa622ce889a0b21710ee92733268183799"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4y"},{"name":"v2.1.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.1","commit":{"sha":"8ecd575f8bb037b317078055c6cbf44047ee728a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8ecd575f8bb037b317078055c6cbf44047ee728a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4x"},{"name":"v2.1.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.0","commit":{"sha":"b725d96356c00601165d1e3a5efbddc22891834d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b725d96356c00601165d1e3a5efbddc22891834d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4w"},{"name":"v2.1.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.1.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.1.0-beta.0","commit":{"sha":"5a131353240a41b661bea2738a31a1abfe486097","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5a131353240a41b661bea2738a31a1abfe486097"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMS4wLWJldGEuMA=="},{"name":"v2.0.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0","commit":{"sha":"2b5e013d92205af495719a2f1792de9e37d1646c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2b5e013d92205af495719a2f1792de9e37d1646c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4w"},{"name":"v2.0.0-beta.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.3","commit":{"sha":"40b356ac40f7eea1584eca239cf67b4b6e540e0b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/40b356ac40f7eea1584eca239cf67b4b6e540e0b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMw=="},{"name":"v2.0.0-beta.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.2","commit":{"sha":"a8120d963d6e087adb9bf6845c4343d4b015d86d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a8120d963d6e087adb9bf6845c4343d4b015d86d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMg=="},{"name":"v2.0.0-beta.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.1","commit":{"sha":"94c50d6ab28be61332429ed4657d0ebf71d897af","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/94c50d6ab28be61332429ed4657d0ebf71d897af"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMQ=="},{"name":"v2.0.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v2.0.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v2.0.0-beta.0","commit":{"sha":"56315a8ea35eb437a2acc3bf15b6765c63a95f54","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/56315a8ea35eb437a2acc3bf15b6765c63a95f54"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djIuMC4wLWJldGEuMA=="},{"name":"v1.8.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.3","commit":{"sha":"51805c602329e1cd236496624ab29bed684b0b61","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/51805c602329e1cd236496624ab29bed684b0b61"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4z"},{"name":"v1.8.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.2","commit":{"sha":"816362a5f7450fb13c42fac3d227df7fa65475e5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/816362a5f7450fb13c42fac3d227df7fa65475e5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4y"},{"name":"v1.8.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.1","commit":{"sha":"3fe53dd8cda4134a89c6bc16e882c9f702a0e44b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3fe53dd8cda4134a89c6bc16e882c9f702a0e44b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4x"},{"name":"v1.8.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.8.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.8.0","commit":{"sha":"a4663932e35f0966418bbb851a103e381ba0b929","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a4663932e35f0966418bbb851a103e381ba0b929"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuOC4w"},{"name":"v1.7.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.2","commit":{"sha":"903256a58c7da3102ab65ae2957ab32d67f34280","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/903256a58c7da3102ab65ae2957ab32d67f34280"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4y"},{"name":"v1.7.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.1","commit":{"sha":"409b1cd0bb606854b39f530c52d1c20456fe4857","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/409b1cd0bb606854b39f530c52d1c20456fe4857"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4x"},{"name":"v1.7.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.7.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.7.0","commit":{"sha":"3e5d3692f476aba8d52e9c314b2f7476a4b88483","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3e5d3692f476aba8d52e9c314b2f7476a4b88483"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNy4w"},{"name":"v1.6.8","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.8","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.8","commit":{"sha":"82456b6382f10b16677f38156d04d4f04e36267f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/82456b6382f10b16677f38156d04d4f04e36267f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi44"},{"name":"v1.6.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.7","commit":{"sha":"63a02b5f4b526963848731ab6391128d8d0247ca","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63a02b5f4b526963848731ab6391128d8d0247ca"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi43"},{"name":"v1.6.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.6","commit":{"sha":"f88731389aa01900b86a9195e46ecb76ab18e957","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f88731389aa01900b86a9195e46ecb76ab18e957"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi42"},{"name":"v1.6.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.5","commit":{"sha":"63e9b28eb240e67d9798a392c055d735b9de38e4","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63e9b28eb240e67d9798a392c055d735b9de38e4"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi41"},{"name":"v1.6.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.4","commit":{"sha":"a14b46e0759e3fd06134229c0b16ea88b2bbcf20","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/a14b46e0759e3fd06134229c0b16ea88b2bbcf20"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi40"},{"name":"v1.6.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.3","commit":{"sha":"9982b1402eb19f18f9fb37a2cdb0b870e10c94b0","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/9982b1402eb19f18f9fb37a2cdb0b870e10c94b0"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4z"},{"name":"v1.6.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.2","commit":{"sha":"18ea7149668d3ec64703efd6b5c9c60dd66e7119","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/18ea7149668d3ec64703efd6b5c9c60dd66e7119"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4y"},{"name":"v1.6.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.6.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.6.0","commit":{"sha":"cf591b3293f1e509ef08c61d7ca93b8a58bdfc7d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/cf591b3293f1e509ef08c61d7ca93b8a58bdfc7d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNi4w"},{"name":"v1.5.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.3","commit":{"sha":"5dd49c7da5ee3819e826248ed13937b6ba638aec","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5dd49c7da5ee3819e826248ed13937b6ba638aec"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4z"},{"name":"v1.5.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.2","commit":{"sha":"0cb7decc7e2eec4e351a0c4863c4332652fce843","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/0cb7decc7e2eec4e351a0c4863c4332652fce843"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4y"},{"name":"v1.5.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.1","commit":{"sha":"aec405a431db18c4a9fac19ba9ea34f3aa155528","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/aec405a431db18c4a9fac19ba9ea34f3aa155528"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4x"},{"name":"v1.5.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.0","commit":{"sha":"e0202423bbd98e10aa37e84678467315c77447fb","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e0202423bbd98e10aa37e84678467315c77447fb"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4w"},{"name":"v1.5.0-beta.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.5.0-beta.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.5.0-beta.0","commit":{"sha":"bf021af8ca12d44f50bccda9bb55873dfe60ea0c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bf021af8ca12d44f50bccda9bb55873dfe60ea0c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNS4wLWJldGEuMA=="},{"name":"v1.4.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.5","commit":{"sha":"3021958e6407b1c8753e84201825f5c367fc18d8","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/3021958e6407b1c8753e84201825f5c367fc18d8"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC41"},{"name":"v1.4.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.4","commit":{"sha":"e9fb46b05a667cbebf05dda997b4525130d8321c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e9fb46b05a667cbebf05dda997b4525130d8321c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC40"},{"name":"v1.4.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.3","commit":{"sha":"2075ad611779eb3d880276e51fbd159f9c9ae6db","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2075ad611779eb3d880276e51fbd159f9c9ae6db"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4z"},{"name":"v1.4.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.2","commit":{"sha":"bd31bbdaf38ec2bd8c1d073aefd576b8c67ea9a1","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bd31bbdaf38ec2bd8c1d073aefd576b8c67ea9a1"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4y"},{"name":"v1.4.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.1","commit":{"sha":"ee26520e457860d1b5f4fd99327a87204b71c9bf","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/ee26520e457860d1b5f4fd99327a87204b71c9bf"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4x"},{"name":"v1.4.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.4.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.4.0","commit":{"sha":"88df0670b4ab3bf97bc59015781d97de4c12caa9","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/88df0670b4ab3bf97bc59015781d97de4c12caa9"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuNC4w"},{"name":"v1.3.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.4","commit":{"sha":"6c2d2de6af5855099d9b79ad60cfcc3dec021f99","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/6c2d2de6af5855099d9b79ad60cfcc3dec021f99"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy40"},{"name":"v1.3.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.3","commit":{"sha":"50b68dc7a3ea311ca0cd5e5bdaef0c582f09f20b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/50b68dc7a3ea311ca0cd5e5bdaef0c582f09f20b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4z"},{"name":"v1.3.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.2","commit":{"sha":"fd3be7510fe6ab96e9d1764be86a08dd8f81f833","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/fd3be7510fe6ab96e9d1764be86a08dd8f81f833"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4y"},{"name":"v1.3.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.1","commit":{"sha":"bd2b58863f46fd38171ab919fb199277960ff89a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bd2b58863f46fd38171ab919fb199277960ff89a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4x"},{"name":"v1.3.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.3.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.3.0","commit":{"sha":"f37c34da59c5502c25b723660dbc1300f55180c7","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f37c34da59c5502c25b723660dbc1300f55180c7"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMy4w"},{"name":"v1.2.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.4","commit":{"sha":"351e9dac5a02746ce00a89fd31def1becd09c4eb","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/351e9dac5a02746ce00a89fd31def1becd09c4eb"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi40"},{"name":"v1.2.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.3","commit":{"sha":"f25d3b682d5065c10f91cc491134581b36c54a67","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/f25d3b682d5065c10f91cc491134581b36c54a67"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4z"},{"name":"v1.2.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.2","commit":{"sha":"cdef4f8f1b0e7d539ea7cf6b008d885303b594b5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/cdef4f8f1b0e7d539ea7cf6b008d885303b594b5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4y"},{"name":"v1.2.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.1","commit":{"sha":"54d576ca13027230159782cd020b941fb1dd81f1","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/54d576ca13027230159782cd020b941fb1dd81f1"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4x"},{"name":"v1.2.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.2.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.2.0","commit":{"sha":"63ac93706cacd55f63bddd32f9131f53fa076bb2","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/63ac93706cacd55f63bddd32f9131f53fa076bb2"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMi4w"},{"name":"v1.1.12","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.12","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.12","commit":{"sha":"bbe50c45f743e14acec9efc9472e445916d7857a","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/bbe50c45f743e14acec9efc9472e445916d7857a"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMg=="},{"name":"v1.1.11","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.11","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.11","commit":{"sha":"c4769ca00eda041ff73d01a1dab9ebce89483f1f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/c4769ca00eda041ff73d01a1dab9ebce89483f1f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMQ=="},{"name":"v1.1.10","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.10","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.10","commit":{"sha":"68314f9d9bfb5d5b4a879139506565e50d30d766","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/68314f9d9bfb5d5b4a879139506565e50d30d766"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4xMA=="},{"name":"v1.1.9","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.9","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.9","commit":{"sha":"1843b75771e6e1f491c84098f1817d980b932049","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1843b75771e6e1f491c84098f1817d980b932049"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS45"},{"name":"v1.1.8","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.8","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.8","commit":{"sha":"20aaede8654379fb0c72efa3c75c1b2b82438e85","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/20aaede8654379fb0c72efa3c75c1b2b82438e85"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS44"},{"name":"v1.1.7","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.7","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.7","commit":{"sha":"158e6c95d6ac915b26bdb18d852b844133aa1479","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/158e6c95d6ac915b26bdb18d852b844133aa1479"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS43"},{"name":"v1.1.6","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.6","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.6","commit":{"sha":"879f69e4bb99de9eac3337065ccb2083ea3f783c","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/879f69e4bb99de9eac3337065ccb2083ea3f783c"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS42"},{"name":"v1.1.5","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.5","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.5","commit":{"sha":"01c0fecbdc9f22338a7daaa3b5f955af749296b5","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/01c0fecbdc9f22338a7daaa3b5f955af749296b5"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS41"},{"name":"v1.1.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.4","commit":{"sha":"56e78cd901967a7055028819e16ccc39553d6125","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/56e78cd901967a7055028819e16ccc39553d6125"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS40"},{"name":"v1.1.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.3","commit":{"sha":"419472142f24fe8a63d5129f09a000cf350daaba","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/419472142f24fe8a63d5129f09a000cf350daaba"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4z"},{"name":"v1.1.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.2","commit":{"sha":"1aad9a17db14a4e0e2551dcdd39b0f3f1b33cfab","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/1aad9a17db14a4e0e2551dcdd39b0f3f1b33cfab"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4y"},{"name":"v1.1.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.1","commit":{"sha":"946ca902d1a95f5910edf48359f729468500c00b","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/946ca902d1a95f5910edf48359f729468500c00b"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4x"},{"name":"v1.1.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.1.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.1.0","commit":{"sha":"4866ee3cb12d2be96eea4ccd0bed52e95ef2bf48","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/4866ee3cb12d2be96eea4ccd0bed52e95ef2bf48"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMS4w"},{"name":"v1.0.4","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.4","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.4","commit":{"sha":"2dab4ef6854a5ac002cae44fcd5901d94b722c6d","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/2dab4ef6854a5ac002cae44fcd5901d94b722c6d"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC40"},{"name":"v1.0.3","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.3","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.3","commit":{"sha":"5e5e94c148edcd9a33bac338790a742b8ba73091","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/5e5e94c148edcd9a33bac338790a742b8ba73091"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4z"},{"name":"v1.0.2","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.2","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.2","commit":{"sha":"e67d36a358814f8962daa0aea1737c22134eff97","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/e67d36a358814f8962daa0aea1737c22134eff97"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4y"},{"name":"v1.0.1","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.1","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.1","commit":{"sha":"d4ec91ac0e70531da05c334bfe6c119575ffa79f","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/d4ec91ac0e70531da05c334bfe6c119575ffa79f"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4x"},{"name":"v1.0.0","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0","commit":{"sha":"53aca9cb4e4a3a41590c43cfa233c2087779dc5e","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/53aca9cb4e4a3a41590c43cfa233c2087779dc5e"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4w"},{"name":"v1.0.0-rc.12","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0-rc.12","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0-rc.12","commit":{"sha":"b7370c28d97fa0c423f5e1d1fd80e03e7eb85824","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/b7370c28d97fa0c423f5e1d1fd80e03e7eb85824"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4wLXJjLjEy"},{"name":"v1.0.0-rc.11","zipball_url":"https://api.github.com/repos/bolt-design-system/bolt/zipball/v1.0.0-rc.11","tarball_url":"https://api.github.com/repos/bolt-design-system/bolt/tarball/v1.0.0-rc.11","commit":{"sha":"8453f68cacdb253cc70f509deaa4a921220682ee","url":"https://api.github.com/repos/bolt-design-system/bolt/commits/8453f68cacdb253cc70f509deaa4a921220682ee"},"node_id":"MDM6UmVmOTQzNTMxNTQ6djEuMC4wLXJjLjEx"}]},"bolt-urls-to-test":{"id":"d626a6a0-baf2-11e9-b6ed-4d18c7844835","isNew":true,"isPreserved":false,"toDelete":true,"hits":0,"lastHit":null,"createdOn":"2019-08-09T22:12:54.922Z","updatedOn":null,"expiresOn":"2019-09-08T22:12:54.922Z","value":{"https://v2-6-0-beta-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-6.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-5.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-6-0-beta-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://vv2-3-0-rc-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://vv2-3-0-rc-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-4-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-5-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-5-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-5-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-4-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-4-0-beta-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-4-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-7.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-3-0-rc-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-3-0-rc-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-0-rc-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-6.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v2-2-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-5.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-2-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-2-0-rc-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-4.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-1-0-beta-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-3.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-2.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-1-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-1.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-0.boltdesignsystem.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v2-0-0-beta-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-8-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v2-0-0-beta-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-8-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-8-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-8-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-8-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-8.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-7-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-7-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-7.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-8.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-5.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-6-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-6-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-6-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-0-beta-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-5.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-5-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-5-0-beta-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-1.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-4-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-4.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-3.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-4-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-2.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-0.bolt-design-system.com":{"status":"alive","statusCode":200},"https://v1-3-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-3-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-3-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-2-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-2-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-12.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-12.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-11.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-11.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-10.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-10.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-9.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-9.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-8.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-8.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-7.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-6.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-7.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-6.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-5.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-5.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-1-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-1-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-4.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-4.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-3.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-3.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-2.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-2.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-1.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-1.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-12.bolt-design-system.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-12.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-11.boltdesignsystem.com":{"status":"dead","statusCode":404},"https://v1-0-0-rc-11.bolt-design-system.com":{"status":"dead","statusCode":404}}}} \ No newline at end of file diff --git a/docs-site/CHANGELOG.md b/docs-site/CHANGELOG.md index 5372cb69e5..f3919c2a05 100644 --- a/docs-site/CHANGELOG.md +++ b/docs-site/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix stylelint error ([3abbb7b](https://github.com/bolt-design-system/bolt/commit/3abbb7b)) +* only display component explorer message on docs pages where previous getting used ([a112aa9](https://github.com/bolt-design-system/bolt/commit/a112aa9)) +* pattern lab override, position 'relative' causing modal choppiness on scroll ([29b622f](https://github.com/bolt-design-system/bolt/commit/29b622f)) +* remove copy from doc page ([5dd5eff](https://github.com/bolt-design-system/bolt/commit/5dd5eff)) +* remove inline includes ([b1df1a2](https://github.com/bolt-design-system/bolt/commit/b1df1a2)) +* remove remaining schema form JS import ([7813dcf](https://github.com/bolt-design-system/bolt/commit/7813dcf)) +* revert adding Japanese-specific .boltrc config ([1663b31](https://github.com/bolt-design-system/bolt/commit/1663b31)) +* test and typo ([8aa43b3](https://github.com/bolt-design-system/bolt/commit/8aa43b3)) +* typo ([e8a3250](https://github.com/bolt-design-system/bolt/commit/e8a3250)) +* web component usage doc ([02c6459](https://github.com/bolt-design-system/bolt/commit/02c6459)) + + +### Features + +* add 'disabled' state to trigger link, update demo ([a538ac9](https://github.com/bolt-design-system/bolt/commit/a538ac9)) +* add cli to run Jest only on packages that changed ([4c14818](https://github.com/bolt-design-system/bolt/commit/4c14818)) +* add demo of modal triggered by video 'toggle' ([42b9784](https://github.com/bolt-design-system/bolt/commit/42b9784)) +* add demo page for trigger 'disabled' option ([11637e7](https://github.com/bolt-design-system/bolt/commit/11637e7)) +* add functional test of bolt sticky ([c74043c](https://github.com/bolt-design-system/bolt/commit/c74043c)) +* combine video modal demos into a single page ([95d8ec7](https://github.com/bolt-design-system/bolt/commit/95d8ec7)) +* wire up new critical polyfill package as a reference + prep to wire it up to Drupal Lab ([ed7e73f](https://github.com/bolt-design-system/bolt/commit/ed7e73f)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/website diff --git a/docs-site/__tests__/pattern-lab.e2e.js b/docs-site/__tests__/pattern-lab.e2e.js index 84f65d599e..aaa7743296 100644 --- a/docs-site/__tests__/pattern-lab.e2e.js +++ b/docs-site/__tests__/pattern-lab.e2e.js @@ -11,47 +11,47 @@ module.exports = { .end(); }, - 'Pattern Lab: Confirm Successful Now.sh Deploy - Pattern Lab Outer': function( - browser, - ) { - const { testingUrl } = browser.globals; - console.log(`global browser url: ${testingUrl}`); - browser - .url(`${testingUrl}/pattern-lab/?p=components-overview`) - .waitForElementVisible('.pl-js-open-new-window', 3000) - .waitForElementVisible('pl-header', 3000) - .assert.elementPresent('.js-c-typeahead__input') - .click('.js-c-typeahead__input'); // click on the PL search input + // 'Pattern Lab: Confirm Successful Now.sh Deploy - Pattern Lab Outer': function( + // browser, + // ) { + // const { testingUrl } = browser.globals; + // console.log(`global browser url: ${testingUrl}`); + // browser + // .url(`${testingUrl}/pattern-lab/?p=components-overview`) + // .waitForElementVisible('.pl-js-open-new-window', 3000) + // .waitForElementVisible('pl-header', 3000) + // .assert.elementPresent('.js-c-typeahead__input') + // .click('.js-c-typeahead__input'); // click on the PL search input - // type "Components-Card" in the input field. Adjust command based on browser support - if (browser.sendKeys) { - browser.sendKeys('.js-c-typeahead__input', 'Components-Card'); - } else { - browser.keys('Components-Card'); - } + // // type "Components-Card" in the input field. Adjust command based on browser support + // if (browser.sendKeys) { + // browser.sendKeys('.js-c-typeahead__input', 'Components-Card'); + // } else { + // browser.keys('Components-Card'); + // } - browser.saveScreenshot( - `screenshots/pattern-lab/pattern-lab-search-input--${browser.capabilities - .browserName || 'chrome'}.png`, - ); + // browser.saveScreenshot( + // `screenshots/pattern-lab/pattern-lab-search-input--${browser.capabilities + // .browserName || 'chrome'}.png`, + // ); - // end buggy keyboard input test early for IE 11 - if (browser.capabilities.browserName.includes('explorer')) { - browser.end(); - } else { - browser - .waitForElementVisible('.pl-c-typeahead__result--first', 3000) // make sure the "Open in a New Tab" UI is there - .click('.pl-c-typeahead__result--first') // click on the first result - .getAttribute('.pl-js-open-new-window', 'href', function(result) { - browser.url(result.value); - }) - .waitForElementVisible('bolt-card', 3000) - .assert.urlContains('components-card') - .saveScreenshot( - `screenshots/pattern-lab/pattern-lab-search-results-load-new-page--${browser - .capabilities.browserName || 'chrome'}.png`, - ) - .end(); - } - }, + // // end buggy keyboard input test early for IE 11 + // if (browser.capabilities.browserName.includes('explorer')) { + // browser.end(); + // } else { + // browser + // .waitForElementVisible('.pl-c-typeahead__result--first', 3000) // make sure the "Open in a New Tab" UI is there + // .click('.pl-c-typeahead__result--first') // click on the first result + // .getAttribute('.pl-js-open-new-window', 'href', function(result) { + // browser.url(`${result.value}`); + // }) + // .waitForElementVisible('bolt-card', 3000) + // .assert.urlContains('components-card') + // .saveScreenshot( + // `screenshots/pattern-lab/pattern-lab-search-results-load-new-page--${browser + // .capabilities.browserName || 'chrome'}.png`, + // ) + // .end(); + // } + // }, }; diff --git a/docs-site/__tests__/server-side-rendering.e2e.js b/docs-site/__tests__/server-side-rendering.e2e.js index cf6aabbd7d..46ecee8054 100644 --- a/docs-site/__tests__/server-side-rendering.e2e.js +++ b/docs-site/__tests__/server-side-rendering.e2e.js @@ -11,7 +11,7 @@ module.exports = { ) .waitForElementVisible('.pl-js-open-new-window', 3000) .getAttribute('.pl-js-open-new-window', 'href', function(result) { - browser.url(result.value); + browser.url(`${result.value}`); }) .waitForElementVisible('bolt-button', 3000) .assert.elementPresent('.c-bolt-button') @@ -23,7 +23,7 @@ module.exports = { `${testingUrl}/pattern-lab/?p=components-button-ssr--web-component-wo-shadow-dom`, ) .getAttribute('.pl-js-open-new-window', 'href', function(result) { - browser.url(result.value); + browser.url(`${result.value}`); }) .waitForElementVisible('bolt-button', 3000) .assert.elementPresent('.c-bolt-button') diff --git a/docs-site/package.json b/docs-site/package.json index bcc8ca0748..52caf1dfc8 100644 --- a/docs-site/package.json +++ b/docs-site/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/website", - "version": "2.5.6", + "version": "2.6.0-beta.1", "private": true, "description": "Bolt Design System Website", "repository": { @@ -16,70 +16,71 @@ "build:pl": "bolt prep && npx lerna exec --scope @bolt/uikit-workshop --loglevel=silent -- yarn run build", "build:prod": "bolt build --prod --no-ssr", "clean": "cd ../ && npm run clean", + "prep": "bolt prep", "serve": "bolt serve", "setup": "cd ../ && npm run setup", "start": "bolt start", "start:lang": "bolt start --i18n", "start:prod": "bolt start --prod", - "test": "npm run test:links", "test:links": "blc http://localhost:3000 --recursive --ordered --filter-level 2", "watch": "bolt watch" }, "dependencies": { - "@bolt/analytics-autolink": "^2.5.1", - "@bolt/analytics-autotrack": "^2.4.2", - "@bolt/build-tools": "^2.5.6", - "@bolt/components-accordion": "^2.5.6", - "@bolt/components-action-blocks": "^2.5.6", - "@bolt/components-background": "^2.5.6", - "@bolt/components-background-shapes": "^2.5.6", - "@bolt/components-band": "^2.5.6", - "@bolt/components-banner": "^2.5.6", - "@bolt/components-block-list": "^2.5.6", - "@bolt/components-blockquote": "^2.5.6", - "@bolt/components-breadcrumb": "^2.5.6", - "@bolt/components-button": "^2.5.6", - "@bolt/components-button-group": "^2.5.6", - "@bolt/components-card": "^2.5.6", - "@bolt/components-chip": "^2.5.6", - "@bolt/components-chip-list": "^2.5.6", - "@bolt/components-copy-to-clipboard": "^2.5.6", - "@bolt/components-critical-css-vars": "^2.5.6", - "@bolt/components-critical-fonts": "^2.5.6", - "@bolt/components-device-viewer": "^2.5.6", - "@bolt/components-figure": "^2.5.6", - "@bolt/components-form": "^2.5.6", - "@bolt/components-grid": "^2.5.6", - "@bolt/components-headline": "^2.5.6", - "@bolt/components-icon": "^2.5.6", - "@bolt/components-image": "^2.5.6", - "@bolt/components-link": "^2.5.6", - "@bolt/components-list": "^2.5.6", - "@bolt/components-logo": "^2.5.6", - "@bolt/components-modal": "^2.5.6", - "@bolt/components-nav-indicator": "^2.5.6", - "@bolt/components-nav-priority": "^2.5.6", - "@bolt/components-navbar": "^2.5.6", - "@bolt/components-navlink": "^2.5.6", - "@bolt/components-ol": "^2.5.6", + "@bolt/analytics-autolink": "^2.6.0-beta.1", + "@bolt/analytics-autotrack": "^2.6.0-beta.1", + "@bolt/build-tools": "^2.6.0-beta.1", + "@bolt/components-accordion": "^2.6.0-beta.1", + "@bolt/components-action-blocks": "^2.6.0-beta.1", + "@bolt/components-background": "^2.6.0-beta.1", + "@bolt/components-background-shapes": "^2.6.0-beta.1", + "@bolt/components-band": "^2.6.0-beta.1", + "@bolt/components-banner": "^2.6.0-beta.1", + "@bolt/components-block-list": "^2.6.0-beta.1", + "@bolt/components-blockquote": "^2.6.0-beta.1", + "@bolt/components-breadcrumb": "^2.6.0-beta.1", + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/components-button-group": "^2.6.0-beta.1", + "@bolt/components-card": "^2.6.0-beta.1", + "@bolt/components-chip": "^2.6.0-beta.1", + "@bolt/components-chip-list": "^2.6.0-beta.1", + "@bolt/components-copy-to-clipboard": "^2.6.0-beta.1", + "@bolt/components-critical-css-vars": "^2.6.0-beta.1", + "@bolt/components-critical-fonts": "^2.6.0-beta.1", + "@bolt/components-device-viewer": "^2.6.0-beta.1", + "@bolt/components-figure": "^2.6.0-beta.1", + "@bolt/components-form": "^2.6.0-beta.1", + "@bolt/components-grid": "^2.6.0-beta.1", + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-image": "^2.6.0-beta.1", + "@bolt/components-link": "^2.6.0-beta.1", + "@bolt/components-list": "^2.6.0-beta.1", + "@bolt/components-logo": "^2.6.0-beta.1", + "@bolt/components-modal": "^2.6.0-beta.1", + "@bolt/components-nav-indicator": "^2.6.0-beta.1", + "@bolt/components-nav-priority": "^2.6.0-beta.1", + "@bolt/components-navbar": "^2.6.0-beta.1", + "@bolt/components-navlink": "^2.6.0-beta.1", + "@bolt/components-ol": "^2.6.0-beta.1", "@bolt/components-page-footer": "file:../packages/components/bolt-page-footer", - "@bolt/components-page-header": "^2.5.6", - "@bolt/components-pagination": "^2.5.6", - "@bolt/components-placeholder": "^2.5.6", - "@bolt/components-search-filter": "^2.5.6", - "@bolt/components-share": "^2.5.6", - "@bolt/components-site": "^2.5.6", - "@bolt/components-smooth-scroll": "^2.5.6", - "@bolt/components-stack": "^2.5.6", - "@bolt/components-sticky": "^2.5.6", - "@bolt/components-teaser": "^2.5.6", - "@bolt/components-text": "^2.5.6", - "@bolt/components-tooltip": "^2.5.6", - "@bolt/components-ul": "^2.5.6", - "@bolt/components-video": "^2.5.6", - "@bolt/core": "^2.5.6", - "@bolt/global": "^2.5.6", - "@bolt/twig-renderer": "^2.5.2", + "@bolt/components-page-header": "^2.6.0-beta.1", + "@bolt/components-pagination": "^2.6.0-beta.1", + "@bolt/components-placeholder": "^2.6.0-beta.1", + "@bolt/components-search-filter": "^2.6.0-beta.1", + "@bolt/components-share": "^2.6.0-beta.1", + "@bolt/components-site": "^2.6.0-beta.1", + "@bolt/components-smooth-scroll": "^2.6.0-beta.1", + "@bolt/components-stack": "^2.6.0-beta.1", + "@bolt/components-sticky": "^2.6.0-beta.1", + "@bolt/components-teaser": "^2.6.0-beta.1", + "@bolt/components-text": "^2.6.0-beta.1", + "@bolt/components-tooltip": "^2.6.0-beta.1", + "@bolt/components-ul": "^2.6.0-beta.1", + "@bolt/components-video": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", + "@bolt/critical-path-polyfills": "^2.6.0-beta.1", + "@bolt/global": "^2.6.0-beta.1", + "@bolt/twig-renderer": "^2.6.0-beta.1", "@ckeditor/ckeditor5-build-classic": "^12.1.0", "chalk-cli": "^4.1.0", "choices.js": "^7.0.0", diff --git a/docs-site/src/assets/images/docs/release_github-token.png b/docs-site/src/assets/images/docs/release_github-token.png new file mode 100644 index 0000000000..f016445286 Binary files /dev/null and b/docs-site/src/assets/images/docs/release_github-token.png differ diff --git a/docs-site/src/assets/images/docs/release_now-token.png b/docs-site/src/assets/images/docs/release_now-token.png new file mode 100644 index 0000000000..b2190ad7a3 Binary files /dev/null and b/docs-site/src/assets/images/docs/release_now-token.png differ diff --git a/docs-site/src/components/banner/CHANGELOG.md b/docs-site/src/components/banner/CHANGELOG.md index f4e24fb0f1..42827aa451 100644 --- a/docs-site/src/components/banner/CHANGELOG.md +++ b/docs-site/src/components/banner/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-banner + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-banner diff --git a/docs-site/src/components/banner/package.json b/docs-site/src/components/banner/package.json index 73578435fe..ab1f9acd9d 100644 --- a/docs-site/src/components/banner/package.json +++ b/docs-site/src/components/banner/package.json @@ -7,7 +7,7 @@ "css framework", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -21,6 +21,6 @@ "private": true, "style": "banner.scss", "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" } } diff --git a/docs-site/src/components/docs-search/CHANGELOG.md b/docs-site/src/components/docs-search/CHANGELOG.md index f5a8343361..cc95196369 100644 --- a/docs-site/src/components/docs-search/CHANGELOG.md +++ b/docs-site/src/components/docs-search/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/docs-search + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/docs-search diff --git a/docs-site/src/components/docs-search/docs-search.scss b/docs-site/src/components/docs-search/docs-search.scss index ff475e71d0..452c96c383 100644 --- a/docs-site/src/components/docs-search/docs-search.scss +++ b/docs-site/src/components/docs-search/docs-search.scss @@ -3,7 +3,6 @@ // temporary style overrides to the default form input until we're done refactoring to support additional input sizes + icon placement bds-docs-search { - @include bolt-padding-right(xsmall); flex-shrink: 1; max-width: 100%; margin-left: auto; @@ -13,7 +12,7 @@ bds-docs-search { grid-column: 1/span 4; justify-self: center; } - + @include bolt-mq($from: small){ width: 50px; min-width: 100px; @@ -23,7 +22,7 @@ bds-docs-search { width: auto; min-width: none; } - + &:focus-within { width: 200px; transition: all 250ms; @@ -68,7 +67,7 @@ bds-docs-search { pointer-events: none; border-radius: 50rem; background-color: transparent; - + &:before { display: none; @@ -81,7 +80,7 @@ bds-docs-search { .o-bolt-inline-list__item:first-child { display: none; - + &:last-child { display: inline-block; } diff --git a/docs-site/src/components/docs-search/package.json b/docs-site/src/components/docs-search/package.json index d0d8cf0c33..63171d4d33 100644 --- a/docs-site/src/components/docs-search/package.json +++ b/docs-site/src/components/docs-search/package.json @@ -7,7 +7,7 @@ "css framework", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -22,7 +22,7 @@ "main": "index.js", "style": "docs-search.scss", "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "docsearch.js": "^2.6.2", "querystring": "^0.2.0" } diff --git a/docs-site/src/components/pattern-lab-hacks/pattern-lab-hacks.scss b/docs-site/src/components/pattern-lab-hacks/pattern-lab-hacks.scss index efa983ece7..dfcaf7da82 100644 --- a/docs-site/src/components/pattern-lab-hacks/pattern-lab-hacks.scss +++ b/docs-site/src/components/pattern-lab-hacks/pattern-lab-hacks.scss @@ -39,6 +39,10 @@ max-height: 0px; // prevent background from showing up } +.pl-c-pattern { + position: static; +} + .pl-c-category, .pl-c-category__title, .pl-c-pattern[id*=-docs] > .pl-c-pattern__header, diff --git a/docs-site/src/components/radio-switch/CHANGELOG.md b/docs-site/src/components/radio-switch/CHANGELOG.md index dac77b8d36..36ce1cb728 100644 --- a/docs-site/src/components/radio-switch/CHANGELOG.md +++ b/docs-site/src/components/radio-switch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-radio-switch + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-radio-switch diff --git a/docs-site/src/components/radio-switch/package.json b/docs-site/src/components/radio-switch/package.json index de66242a7e..c0984d32a1 100644 --- a/docs-site/src/components/radio-switch/package.json +++ b/docs-site/src/components/radio-switch/package.json @@ -6,7 +6,7 @@ "bolt", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -21,6 +21,6 @@ "main": "index.js", "style": "radio-switch.scss", "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" } } diff --git a/docs-site/src/components/version-selector/version-selector.twig b/docs-site/src/components/version-selector/version-selector.twig index c0eb7c2b7b..2bb2e5e618 100644 --- a/docs-site/src/components/version-selector/version-selector.twig +++ b/docs-site/src/components/version-selector/version-selector.twig @@ -19,9 +19,6 @@ {% endset %} {% include("@bolt-components-form/form-element.twig") with { - attributes: { - class: "u-bolt-margin-left-small" - }, children: children, } only %} diff --git a/docs-site/src/pages/docs/45-development/30-build-tools/40-internationalization.md b/docs-site/src/pages/docs/45-development/30-build-tools/40-internationalization.md new file mode 100644 index 0000000000..d7e471ceed --- /dev/null +++ b/docs-site/src/pages/docs/45-development/30-build-tools/40-internationalization.md @@ -0,0 +1,53 @@ +--- +title: Internationalization +--- + +## Optimizing Bolt's Build For Different Languages + +> NOTE: add note about compiling Bolt for just one specific language at a time vs compiling for multiple languages + + +### Step 1. Add a `lang` prop to your `.boltrc` config + +This should be an array of the two-character language codes you want to compile optimized builds for. + +> Note: currently this only includes `en` and `ja` althouh more language-specific builds could be added in the future. + +#### Only Compile Japanese-optimized Build +``` +lang: ['ja'], // ex. only compile the ja-optimized build +``` + +#### Compile Japanese and English optimized Builds (Japanese set as the default) +``` +lang: ['ja', 'en'], // ja + en in the same build; ja used by default on docs site +``` + +#### Compile Japanese and English optimized Builds (English set as the default) +``` +lang: ['en', 'ja'], // en + ja in the same build; en used by default on docs site +``` + +#### Only Compile Japanese Optimized Build (Deprecated String Lang Method) +``` +lang: 'ja', // only ja (old to-be-removed single-lang build) +``` + +> Note: not defining a lang prop will automatically configure the build to internally use the `en` default + + +### Step 2. Disable the `@bolt/build-tools` cache + +This will get updated in the future but for now, you'll likely need to manually disable the build tools cache for a clean initial build + +``` +// switch `enableCache` in the `.boltrc` to false +enableCache: false, +``` + +### Step 3. Enably i18n (If Doing Local Development) + +If you are running Bolt locally in dev mode, make sure the `i18n` CLI flag is set to true. + +This can be done by either by running `npm run start:lang` in the docs site folder for local Bolt development OR `./node_modules/.bin/bolt start --i18n` for everyone else. + diff --git a/docs-site/src/pages/docs/45-workflow-and-process/20-cutting-a-release.md b/docs-site/src/pages/docs/45-workflow-and-process/20-cutting-a-release.md new file mode 100644 index 0000000000..2cb57fd1aa --- /dev/null +++ b/docs-site/src/pages/docs/45-workflow-and-process/20-cutting-a-release.md @@ -0,0 +1,152 @@ +--- +title: Manually Cutting a Bolt Release +--- + +> Note: all of these instructions take place after you’ve gotten the changes that need to be part of this release merged onto the `release/2.x` branch + +## 1. Preflight Checks + +``` +git checkout release/2.x +npm run setup +npm run lint +npm run test +npm run build # pre-release build for FE assets published to NPM +``` + +## 2. Pre-publish Tasks + +### Auto-update version of Bolt's PHP dependencies + +Update PHP packages with the new version we’ll be going up to. Addresses earlier workflow issues where this could only happen after we finished publishing. + +``` +node scripts/release/update-php-package-versions.js -v 2.5.5 +``` + +Add updated PHP files to Git + +``` +git commit -m "chore: version bump PHP-related dependencies to v2.5.5" +``` + +### Get Tokens for Github + Now.sh + +#### Github + +Grab a token from https://github.com/settings/tokens/new (only public_repo permissions needed). + +
+ +
+ +Export a fresh copy of your Github token. + +``` +export GITHUB_TOKEN=abc12347496507419bef5928173d759488aa1234 +``` + +### Now.sh + +Grab a now.sh token from https://zeit.co/account/tokens. + +
+ +
+ +Export a fresh copy of your now.sh token. + +``` +export NOW_TOKEN=abcdT6Dfu6T0ZgFN33x2ntAB +``` + +### Login to Now via CLI + +``` +npm i -g now # install `now` globally if you haven't already +now login +``` + +### Alias the new URL we’ll be publishing to in order to minimize the total # of build steps + +``` +now alias boltdesignsystem.com v2-5-5.boltdesignsystem.com +``` + +## 3. Publish + +``` +npm login # login to `npm` if you haven't already +npx lerna publish -m "[skip travis] chore(release): publish %s" 2.5.5 +# review + confirm package changes +y # confirm + press enter +``` + +## 4. Build + Deploy + +### Expire the .incache cache by updating the expiresOn date to be in the past + +``` +npx json -I -f docs-site/.incache -e 'this["bolt-tags"].expiresOn = "2019-06-14T12:30:26.377Z"' +npx json -I -f docs-site/.incache -e 'this["bolt-urls-to-test"].expiresOn = "2019-06-14T12:30:26.377Z"' +``` + +### Regenerate the docs site using the updated .incache data file + updated package data + +``` +npm run build +``` + +### Deploy to now.sh + +``` +npm run deploy +``` + +### Alias now.sh Deployment to Custom Domains + +``` +now alias https://boltdesignsystem-123ab99sz.now.sh boltdesignsystem.com +now alias https://boltdesignsystem-123ab99sz.now.sh www.boltdesignsystem.com +now alias https://boltdesignsystem-123ab99sz.now.sh bolt-design-system.com +now alias https://boltdesignsystem-123ab99sz.now.sh www.bolt-design-system.com +now alias https://boltdesignsystem-123ab99sz.now.sh release-2-x.boltdesignsystem.com +now alias https://boltdesignsystem-123ab99sz.now.sh v2-5-5.boltdesignsystem.com +``` + + + +## 5. Post-deploy updates + +``` +git add . # add updated .incache to Git +git commit -m "chore(release): publish v2.5.5" +``` + +### Update git tag + +``` +git tag -fa v2.5.5 -m v2.5.5 +git push --no-verify +git push origin v2.5.5 --no-verify --force ## needed since we updated the tag +``` + +### Pull updates into master + +``` +git checkout master +git pull +git merge release/2.x +git commit +git push +``` + +### Announce The Release + +- [ ] Update the Github release notes and add to the `releases` section (make sure to add these to the correct Git tag!) +- [ ] Confirm the live boltdesignsystem.com site is up to date +- [ ] Announce the release on our Slack's `design-system` channel + +### Post-release + +Make sure tag release on Travis builds and deploys successfully since this is how external PHP git repos get updated: https://travis-ci.com/bolt-design-system/bolt. diff --git a/docs-site/src/pages/docs/50-guides/40-road-runner-rules.md b/docs-site/src/pages/docs/50-guides/40-road-runner-rules.md new file mode 100644 index 0000000000..42d936b3f4 --- /dev/null +++ b/docs-site/src/pages/docs/50-guides/40-road-runner-rules.md @@ -0,0 +1,73 @@ +--- +title: Road Runner Rules +--- + +Follow these [Road Runner](http://mentalfloss.com/article/62035/chuck-jones-rules-writing-road-runner-cartoons) Rules to use Bolt effectively: + +1. Avoid writing new CSS +2. DON'T write CSS that contains the word "bolt" +3. DON'T write markup that contains c-bolt-* CSS classes +4. DO write markup that contains u-bolt-* and o-bolt-* CSS classes +5. Add a class prefixed with js- when binding javascript to an element + + +1. **Avoid writing new CSS** +Simply put, most CSS needed to build a new page based on the design system has already been written. + +If you're writing CSS, you're most likely duplicating existing work, which will both take longer and lead to inconsistency. Instead, focus your effort on finding existing solutions and placing markup on the page to pull in existing CSS. + +2. **Don't write CSS that contains the word "bolt"** +If you do write new CSS outside of Bolt, the presence of the bolt namespace in your classes probably means one of two things: + +- You're trying to modify the styling of a Bolt component to do something it doesn't support. Avoid this if at all possible – it will create design inconsistency, and component classes and markup could change without warning (Bolt doesn't consider such changes breaking). +- You've "forked" a Bolt component by copying its CSS verbatim and then modifying it to suit your needs. While such forking is the preferred solution if you must make changes to a component (and they can't be made upstream in Bolt), you should change the class names when you do this to remove the bolt namespace a) for clarity and b) to avoid conflicts if the original component is later used. + +3. **Don't write markup that contains c-bolt-* CSS classes** +The prefix `c-bolt-` indicates that a CSS class is part of a Bolt component. As a rule, the markup of a Bolt component should be considered internal to that component, i.e. not something you should ever change or even have to think about unless you're contributing to Bolt. + +Instead, use twig to include (or embed) components on a page or in a template. + +``` +{% include "@bolt/button.twig" with { + text: "Click Me", + size: "small" +} only %} +``` + +4. **Do write markup that contains u-bolt-* and o-bolt-* CSS classes** +Unlike component markup, markup that contains classes with these prefixes (indicating utilities and objects) is designed to be used freely. These classes are considered stable and are only changed rarely and carefully. + +> Note: Try to use `u-bolt-*` classes sparingly. Too many of these are an indication that you're "swimming upstream" against the design system. +> Note: some special twig tags such as `{% grid %}` are equivalent to using markup with `o-bolt-*` classes + + + +5. **Add a class prefixed with `js-` when binding javascript to an element** +Of course, always avoid using js selectors that include a `c-bolt-*` class (e.g. document.querySelector('.c-bolt-text')) for the same reason you avoid this in CSS. + +However, also avoid any selector that doesn't start with `js-` such as document.querySelector('bolt-button'), `document.querySelector('.c-overlay')`, etc. Instead, add a new class that starts with `js-` to your markup, then bind your javascript to that. This accomplishes several things: + +- Makes it easy to tell just by looking at the markup that javascript is being attached. +- Separates concerns (since CSS and js will always target different classes—even on the same element—someone editing CSS can change those without worrying about what javascript might be affected, and vice versa for someone editing javascript). + +``` +{% set attributes = create_attribute() %} +{% include "@bolt/button.twig" with { + attributes: attributes.addClass('js-popup-button') + text: "Click Me" +} only %} +``` + +``` +const popupButtons = document.querySelectorAll('.js-popup-button'); +if (popupButtons.length) { + [].forEach.call(popupButtons, function(popupButton) { + popupButton.addEventListener('click', function (event) { + // Fire the popup + }); + }); +} +``` + + + diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-lit-test/00-bolt-lit-test.twig b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-lit-test/_00-bolt-lit-test.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-lit-test/00-bolt-lit-test.twig rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-lit-test/_00-bolt-lit-test.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/02-bolt-preact-test.twig b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_02-bolt-preact-test.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/02-bolt-preact-test.twig rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_02-bolt-preact-test.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-dot.tsx b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-dot.tsx similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-dot.tsx rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-dot.tsx diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-test.tsx b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-test.tsx similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-test.tsx rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-test.tsx diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-triangle.tsx b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-triangle.tsx similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/bolt-preact-triangle.tsx rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/bolt-preact-test/_bolt-preact-triangle.tsx diff --git a/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/lazy-lit-test/lazy-lit-test.twig b/docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/lazy-lit-test/_lazy-lit-test.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/lazy-lit-test/lazy-lit-test.twig rename to docs-site/src/pages/pattern-lab/_patterns/01-visual-styles/100-rendering-performance/lazy-lit-test/_lazy-lit-test.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/00-overview.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/00-overview.twig index 134e4849d7..e843508433 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/00-overview.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/00-overview.twig @@ -1,6 +1,6 @@ {% embed "@bolt-components-band/band.twig" with { size: "none", - theme: "light", + theme: "xlight", full_bleed: true, attributes: { class: [ @@ -28,7 +28,7 @@ {% include "@bolt-assets/status-board.twig" only %} {% endcell %} {% endif %} - + {# {% cell "u-bolt-width-1/1 u-bolt-width-2/3@medium" %} {% include "@bolt-components-headline/headline.twig" with { tag: "h1", diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-tag-variations.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-tag-variations.twig new file mode 100644 index 0000000000..534fa55d4e --- /dev/null +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-tag-variations.twig @@ -0,0 +1,11 @@ +{% set schema = bolt.data.components["@bolt-components-band"].schema %} + +{% for tag in schema.properties.tag.enum %} +

Setting the container's HTML tag to: {{ tag }}

+
+ {% include "@bolt-components-band/band.twig" with { + tag: tag, + content: "This is a band.", + } only %} +
+{% endfor %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/25-band-full-bleed-variations.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/25-band-full-bleed-variations.twig new file mode 100644 index 0000000000..a3773c3eff --- /dev/null +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/25-band-full-bleed-variations.twig @@ -0,0 +1,20 @@ +{% set schema = bolt.data.components["@bolt-components-band"].schema %} + +

Note: turn off full bleed option if you don't want the band to span the full width of the page.

+{% for full_bleed in schema.properties.full_bleed.enum %} + {% if full_bleed == true %} +

Full bleed

+

This band spans the full width of the page, it ignores the spacing of its parent container.

+ {% elseif full_bleed == false %} +

Not full bleed

+

This band only takes up the available space within its parent container, it accounts for the spacing of its parent container.

+ {% endif %} +
+
+ {% include "@bolt-components-band/band.twig" with { + full_bleed: full_bleed, + content: "This is a band.", + } only %} +
+
+{% endfor %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-with-pinned-content.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/30-band-with-pinned-content.twig similarity index 88% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-with-pinned-content.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/30-band-with-pinned-content.twig index 86d5ac72cf..e72b633bd8 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/20-band-with-pinned-content.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/30-band-with-pinned-content.twig @@ -12,21 +12,31 @@ } only %} {% endset %} +{% set breadcrumb_item_1 %} + {% include "@bolt-components-link/link.twig" with { + text: "Home", + url: "#!" + } only %} +{% endset %} +{% set breadcrumb_item_2 %} + {% include "@bolt-components-link/link.twig" with { + text: "Landing Page", + url: "#!" + } only %} +{% endset %} +{% set breadcrumb_item_3 %} + {% include "@bolt-components-link/link.twig" with { + text: "Sub Page", + url: "#!" + } only %} +{% endset %} + {% set pinned_breadcrumb %} {% include "@bolt-components-breadcrumb/breadcrumb.twig" with { contentItems: [ - include("@bolt-components-link/link.twig", { - "text": "Home", - "url": "#!" - }), - include("@bolt-components-link/link.twig", { - "text": "Landing Page", - "url": "#!" - }), - include("@bolt-components-link/link.twig", { - "text": "Sub Page", - "url": "#!" - }), + breadcrumb_item_1, + breadcrumb_item_2, + breadcrumb_item_3, "Current Page" ] } only %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/25-band-with-background.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/35-band-with-background.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/25-band-with-background.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/35-band-with-background.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/30-band-nested.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/40-band-nested.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/30-band-nested.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/40-band-nested.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/35-band-flag.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/45-band-flag.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/35-band-flag.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/45-band-flag.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/40-band-feature.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/50-band-feature.twig similarity index 64% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/40-band-feature.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/50-band-feature.twig index a10ae81f1f..9166fc2bde 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/40-band-feature.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/50-band-feature.twig @@ -21,22 +21,32 @@ } only %} {% endcell %} {% cell "u-bolt-width-1/1 u-bolt-width-1/3@small" %} + {% set block_list_item_1 %} + {% include "@bolt-components-link/link.twig" with { + text: "Block List Item 1", + url: "#!", + } only %} + {% endset %} + {% set block_list_item_2 %} + {% include "@bolt-components-link/link.twig" with { + text: "Block List Item 2", + url: "#!", + } only %} + {% endset %} + {% set block_list_item_3 %} + {% include "@bolt-components-link/link.twig" with { + text: "Block List Item 3", + url: "#!", + } only %} + {% endset %} + {% include "@bolt-components-list/list.twig" with { separator: "solid", spacing: "medium", items: [ - include("@bolt-components-link/link.twig", { - text: "Block List Item 1", - url: "#!", - }), - include("@bolt-components-link/link.twig", { - text: "Block List Item 2", - url: "#!", - }), - include("@bolt-components-link/link.twig", { - text: "Block List Item 3", - url: "#!", - }), + block_list_item_1, + block_list_item_2, + block_list_item_3, ] } only %} {% endcell %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/band/45-band-collection.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/band/55-band-collection.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/band/45-band-collection.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/band/55-band-collection.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/image/05-image.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/image/05-image.twig index 67acb4a92d..97b0ca17ee 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/image/05-image.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/image/05-image.twig @@ -1,5 +1,4 @@ {% include '@bolt-components-image/image.twig' with { src: "/images/placeholders/tout-4x3-climber.jpg", alt: "A Rock Climber", - lazyload: false, } only %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/40-modal-usage-image-and-caption.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/40-modal-usage-image-and-caption.twig index c152e7739c..525ba917e7 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/40-modal-usage-image-and-caption.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/40-modal-usage-image-and-caption.twig @@ -10,7 +10,7 @@ } only %} {% endset %} {% set caption %} -
+
{% include "@bolt-components-headline/text.twig" with { text: "This is the caption for the image.", size: "small", @@ -87,7 +87,7 @@ } only %} {% endset %} {% set caption %} -
+
{% include "@bolt-components-headline/text.twig" with { text: "This is the caption for the image.", size: "small", diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/custom-events/_modal-usage-custom-events.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/custom-events/_modal-usage-custom-events.twig new file mode 100644 index 0000000000..d21e15fb4a --- /dev/null +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/modal/custom-events/_modal-usage-custom-events.twig @@ -0,0 +1,132 @@ +{% set javascript %} + +{% endset %} + +Modal Custom Events +Bolt Modal emits the following custom events: modal:show, modal:shown, modal:hide, modal:hidden. + +
+ Placeholder "fixed" element, should not shift when modal shows/hides. +
+ +Demo +
+ {% set modal_content %} + {% include "@bolt-components-video/video.twig" with { + videoId: "3861325118001", + accountId: "1900410236", + playerId: "r1CAdLzTW", + showMeta: true, + showMetaTitle: true, + attributes: { + class: "js-modal-video-123" + } + } only %} + {% endset %} + + {% set trigger %} + {% include "@bolt-components-button/button.twig" with { + text: "Play the video", + size: "small", + width: "full", + attributes: { + "on-click": "show", + "on-click-target": "js-modal-123" + } + } only %} + {% include "@bolt-components-modal/modal.twig" with { + attributes: { + class: "js-modal-123" + }, + content: modal_content, + width: "optimal", + spacing: "none", + theme: "none", + scroll: "overall", + } only %} + {{ javascript }} + {% endset %} + {% set description %} + Set padding on a "fixed" element when modal shows/hides + Use the modal:show and modal:hidden events to set padding on a fixed element to prevent it from shifting. + Note: for this example, you must use modal:hidden not modal:hide event, as modal:hidden fires after the modal animation, and that is key to getting the correct hasScrollbar state. + {% endset %} + {% include "@bolt-components-grid/grid.twig" with { + items: [ + { + column_start: "1 1@small", + column_span: "12 8@small 9@medium", + row_start: "2 1@small", + row_span: "1", + valign: "center", + content: description, + }, + { + column_start: "1 10@small 11@medium", + column_span: "6 3@small 2@medium", + row_start: "1 1@small", + row_span: "1", + valign: "center", + content: trigger, + }, + ] + } only %} +
+ +Custom Javascript +{% spaceless %} + {{ javascript | replace({ + '<': '<', + '>': '>', + }) | trim | raw }} +{% endspaceless %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/sticky/-10-sticky-simple-example.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/sticky/-10-sticky-simple-example.twig index 9ff0311282..9689f8d5cf 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/sticky/-10-sticky-simple-example.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/sticky/-10-sticky-simple-example.twig @@ -28,6 +28,6 @@ {% endblock %} {% endembed %} -
+
-
End of demo
+
End of demo
diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/table/15-table-borderless.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/table/15-table-borderless.twig index acf4ed218c..79bce0fcad 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/table/15-table-borderless.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/table/15-table-borderless.twig @@ -6,7 +6,7 @@ cells: [ "Description", "Team", - "Vehical Form", + "Vehicle Form", ] }, side: { diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/table/40-table-with-web-component.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/table/999-table-with-web-component.twig similarity index 65% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/table/40-table-with-web-component.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/table/999-table-with-web-component.twig index e78405382a..fcf8cc5886 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/02-components/table/40-table-with-web-component.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/table/999-table-with-web-component.twig @@ -1,15 +1,24 @@ -{% macro code_example(code, copy) %} - {% spaceless %} +{% macro code_example(code) %} +
+ {% grid "o-bolt-grid--center" %} + {% cell "u-bolt-width-12/12 u-bolt-width-6/12@small" %} + {{ code }} + {% endcell %} + {% endgrid %} +
+
+ {% spaceless %} {{ code | replace({ '<': '<', '>': '>', }) | trim | raw }} {% endspaceless %} +
{% endmacro %} {% import _self as table_example %} -{% set simple_demo %} +{% set table_demo %} @@ -52,7 +61,60 @@ {% endset %} -{% set advanced_demo %} +{% set table_prop_demo %} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PtsRebAstStlBlk
Michael Jordan7010251
Toni Kukoc21151034
Steve Kerr522050
Total912732135
+
+{% endset %} + +{% set table_advanced_demo %} @@ -102,7 +164,7 @@ {% endset %} -{% set components_demo %} +{% set table_data_demo %}
@@ -147,7 +209,6 @@ @@ -175,36 +236,27 @@ {% endset %} -{% grid with { - attributes: { - class: [ - "o-bolt-grid--matrix" - ] - } -} %} - {% cell "u-bolt-width-12/12" %} - Web Component Usage - - Bolt Table is a web component that renders a semantic table with Bolt styles. To make a simple table, wrap a semantic <table> element with a <bolt-table> element. - - {{ simple_demo }} - {% include table_example.code_example(simple_demo, true) %} - {% endcell %} - {% cell "u-bolt-width-12/12" %} - Advanced Usage - - Attributes and utility classes are supported on table headers and cells. - - {{ advanced_demo }} - {% include table_example.code_example(advanced_demo, true) %} - {% endcell %} - {% cell "u-bolt-width-12/12" %} - Accepted Data - - Each table header or cell can accept any Bolt web components, HTML markup, or just plain text. - - {{ components_demo }} - {% include table_example.code_example(components_demo, true) %} - {% endcell %} -{% endgrid %} +Web Component Usage + + Bolt Table is a web component that renders a semantic table with Bolt styles. To make a simple table, wrap a semantic <table> element with a <bolt-table> element. + +{% include table_example.code_example(table_demo) %} + +Prop Usage + + Configure the table with the properties specified in the schema. + +{% include table_example.code_example(table_prop_demo) %} + +Advanced Usage + + Attributes and utility classes are supported on table headers and cells. + +{% include table_example.code_example(table_advanced_demo) %} + +Accepted Data + + Each table header or cell can accept any Bolt web components, HTML markup, or just plain text. + +{% include table_example.code_example(table_data_demo) %} diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/30-trigger-disabled-variations.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/30-trigger-disabled-variations.twig new file mode 100644 index 0000000000..a5c2a81347 --- /dev/null +++ b/docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/30-trigger-disabled-variations.twig @@ -0,0 +1,15 @@ +

+ {% include "@bolt-components-trigger/trigger.twig" with { + content: "This <button> is disabled", + disabled: true + } only %} +

+ +

+ {% include "@bolt-components-trigger/trigger.twig" with { + content: "This <a> is disabled", + disabled: true, + url: "http://pega.com", + target: "_blank" + } only %} +

diff --git a/docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/30-trigger-advanced-usage.twig b/docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/35-trigger-advanced-usage.twig similarity index 100% rename from docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/30-trigger-advanced-usage.twig rename to docs-site/src/pages/pattern-lab/_patterns/02-components/trigger/35-trigger-advanced-usage.twig diff --git a/docs-site/src/pages/pattern-lab/_patterns/04-pages/10-d8-product-pages/product-t2.twig b/docs-site/src/pages/pattern-lab/_patterns/04-pages/10-d8-product-pages/product-t2.twig index 0136670226..7433479e99 100644 --- a/docs-site/src/pages/pattern-lab/_patterns/04-pages/10-d8-product-pages/product-t2.twig +++ b/docs-site/src/pages/pattern-lab/_patterns/04-pages/10-d8-product-pages/product-t2.twig @@ -21,7 +21,10 @@ contentItems: [{ pattern: "image", src: "/images/content/backgrounds/background-tall-3.jpg", - lazyload: false + lazyload: false, + placeholder_color: "hsl(10, 14%, 8%)", + valign: "30%", + sizes: "100vw" }] }, primaryTeaser: { @@ -228,20 +231,16 @@ color: "black", image: { src: "/images/content/screenshots/device-screenshot--tablet.jpg", - lazyload: false + lazyload: true, + _sizes: "(min-width: 1400px) 40.64285714vw, (min-width: 600px) 41vw, 72.5vw", + placeholder_color: "#ececec" } } only %} {% endcell %} - {% endgrid %} - - {% endblock %} {% endembed %} - - - {% embed "@bolt-components-band/band.twig" with { size: "medium", theme: "light", @@ -258,7 +257,7 @@ color: "black", image: { src: "/images/content/screenshots/device-screenshot--tablet-portrait.jpg", - lazyload: false + placeholder_color: "#1c1c1c" } } only %} {% endcell %} @@ -340,7 +339,7 @@ color: "black", image: { src: "/images/content/screenshots/device-screenshot--phone.jpg", - lazyload: false + placeholder_color: "#1c1c1c" } } only %} {% endcell %} @@ -396,7 +395,7 @@ color: "black", image: { src: "/images/content/screenshots/device-screenshot--desktop.jpg", - lazyload: false + placeholder_color: "#ececec" } } only %} {% endcell %} @@ -414,7 +413,7 @@ "pattern": "card", "image": { "src": "/images/content/promos/promo-16x9-anthem.jpg", - "lazyload": false + placeholder_color: "#8d9598" }, "teaser": { "eyebrow": { @@ -422,7 +421,6 @@ }, "logo": { src: "/images/content/logos/logo-paypal.svg", - "lazyload": false }, "headlines": [ { @@ -446,7 +444,7 @@ "pattern": "card", "image": { "src": "/images/content/promos/promo-16x9-anthem.jpg", - "lazyload": false + placeholder_color: "#8d9598" }, "teaser": { "eyebrow": { @@ -474,7 +472,7 @@ "pattern": "card", "image": { "src": "/images/content/promos/promo-16x9-anthem.jpg", - "lazyload": false + placeholder_color: "#8d9598" }, "teaser": { "eyebrow": { @@ -558,7 +556,6 @@ { "pattern": "image", "src": "/images/content/backgrounds/background-tall-4.jpg", - "lazyload": false } ] } @@ -577,12 +574,11 @@ logo: { src: "/images/content/logos/logo-paypal.svg", invert: true, - lazyload: false }, author: { image: { src: "/images/placeholders/500x500.jpg", - lazyload: false + placeholder_color: "#405d78" }, name: "Jessica Cuthbertson", title: "CEO, RBS" diff --git a/docs-site/src/templates/_site-head.twig b/docs-site/src/templates/_site-head.twig index e7f096fb9b..9469e1149b 100644 --- a/docs-site/src/templates/_site-head.twig +++ b/docs-site/src/templates/_site-head.twig @@ -32,6 +32,10 @@ + {% if fileExists("@bolt-assets/bolt-critical-path-polyfills.cjs.js") %} + + {% endif %} + #} + {{ head_title|safe_join(' | ') }} + + + + + {# + Keyboard navigation/accessibility link to main content section in + page.html.twig. + #} + + {{ 'Skip to main content'|t }} + + {{ page_top }} + {{ page }} + {{ page_bottom }} + + + diff --git a/example-integrations/static-html/.boltrc.js b/example-integrations/static-html/.bolt/.boltrc.js similarity index 92% rename from example-integrations/static-html/.boltrc.js rename to example-integrations/static-html/.bolt/.boltrc.js index c6aac3eb2c..5fce10f76e 100644 --- a/example-integrations/static-html/.boltrc.js +++ b/example-integrations/static-html/.bolt/.boltrc.js @@ -1,9 +1,13 @@ const config = { // Environmental variable / preset to use - env: 'drupal', // @todo: update when refactoring the confusing `env` config option names - buildDir: './assets/bolt/', - wwwDir: './', + env: 'drupal', // @todo: update when refactoring the confusing `env` config option names + buildDir: '../assets/bolt/', + dataDir: '../assets/bolt/data/', + wwwDir: '../', verbosity: 1, + webpackDevServer: { + enabled: true, + }, components: { global: [ '@bolt/global', diff --git a/example-integrations/static-html/package.json b/example-integrations/static-html/.bolt/package.json similarity index 93% rename from example-integrations/static-html/package.json rename to example-integrations/static-html/.bolt/package.json index 2effc59115..28406b955a 100644 --- a/example-integrations/static-html/package.json +++ b/example-integrations/static-html/.bolt/package.json @@ -15,8 +15,8 @@ "license": "MIT", "dependencies": { "serve": "^11.0.0", - "@bolt/build-tools": "^2.4.3", - "@bolt/components-action-blocks": "^2.4.1", + "@bolt/build-tools": "^2.4.4", + "@bolt/components-action-blocks": "^2.4.4", "@bolt/components-background": "^2.4.0", "@bolt/components-background-shapes": "^2.4.0", "@bolt/components-band": "^2.4.3", @@ -41,7 +41,7 @@ "@bolt/components-headline": "^2.4.0", "@bolt/components-icon": "^2.4.3", "@bolt/components-icons": "^2.4.3", - "@bolt/components-image": "^2.3.1", + "@bolt/components-image": "^2.4.0", "@bolt/components-li": "^2.4.0", "@bolt/components-link": "^2.4.0", "@bolt/components-list": "^2.4.1", @@ -65,6 +65,6 @@ "@bolt/components-video": "^2.4.2", "@bolt/core": "^2.4.0", "@bolt/global": "^2.4.0", - "@bolt/twig-renderer": "^2.4.3" + "@bolt/twig-renderer": "^2.4.4" } } diff --git a/example-integrations/static-html/.bolt/serve.json b/example-integrations/static-html/.bolt/serve.json new file mode 100644 index 0000000000..8d482586df --- /dev/null +++ b/example-integrations/static-html/.bolt/serve.json @@ -0,0 +1,3 @@ +{ + "public": "../" +} diff --git a/example-integrations/drupal-lab/web/themes/bolt-starter/yarn.lock b/example-integrations/static-html/.bolt/yarn.lock similarity index 56% rename from example-integrations/drupal-lab/web/themes/bolt-starter/yarn.lock rename to example-integrations/static-html/.bolt/yarn.lock index 555e398412..d5391cc760 100644 --- a/example-integrations/drupal-lab/web/themes/bolt-starter/yarn.lock +++ b/example-integrations/static-html/.bolt/yarn.lock @@ -4,7 +4,7 @@ "@babel/cli@^7.2.3": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" integrity sha512-XGr5YjQSjgTa6OzQZY57FAJsdeVSAKR/u/KA5exWIz66IKtv/zXtHy+fIZcMry/EgYegwuHE7vzGnrFhjdIAsQ== dependencies: commander "^2.8.1" @@ -21,14 +21,14 @@ "@babel/code-frame@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== dependencies: "@babel/highlight" "^7.0.0" -"@babel/core@^7.1.0", "@babel/core@^7.2.0", "@babel/core@^7.2.2", "@babel/core@^7.4.5": +"@babel/core@^7.2.0", "@babel/core@^7.2.2", "@babel/core@^7.4.5": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA== dependencies: "@babel/code-frame" "^7.0.0" @@ -46,9 +46,9 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.4.0", "@babel/generator@^7.4.4": +"@babel/generator@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ== dependencies: "@babel/types" "^7.4.4" @@ -59,14 +59,14 @@ "@babel/helper-annotate-as-pure@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== dependencies: "@babel/types" "^7.0.0" "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== dependencies: "@babel/helper-explode-assignable-expression" "^7.1.0" @@ -74,7 +74,7 @@ "@babel/helper-builder-react-jsx@^7.3.0": version "7.3.0" - resolved "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== dependencies: "@babel/types" "^7.3.0" @@ -82,7 +82,7 @@ "@babel/helper-call-delegate@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== dependencies: "@babel/helper-hoist-variables" "^7.4.4" @@ -91,7 +91,7 @@ "@babel/helper-create-class-features-plugin@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz#fc3d690af6554cc9efc607364a82d48f58736dba" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz#fc3d690af6554cc9efc607364a82d48f58736dba" integrity sha512-UbBHIa2qeAGgyiNR9RszVF7bUHEdgS4JAUNT8SiqrAN6YJVxlOxeLr5pBzb5kan302dejJ9nla4RyKcR1XT6XA== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -103,7 +103,7 @@ "@babel/helper-define-map@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -112,7 +112,7 @@ "@babel/helper-explode-assignable-expression@^7.1.0": version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== dependencies: "@babel/traverse" "^7.1.0" @@ -120,7 +120,7 @@ "@babel/helper-function-name@^7.1.0": version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== dependencies: "@babel/helper-get-function-arity" "^7.0.0" @@ -129,35 +129,35 @@ "@babel/helper-get-function-arity@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== dependencies: "@babel/types" "^7.0.0" "@babel/helper-hoist-variables@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== dependencies: "@babel/types" "^7.4.4" "@babel/helper-member-expression-to-functions@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== dependencies: "@babel/types" "^7.0.0" "@babel/helper-module-imports@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== dependencies: "@babel/types" "^7.0.0" "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w== dependencies: "@babel/helper-module-imports" "^7.0.0" @@ -169,26 +169,26 @@ "@babel/helper-optimise-call-expression@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== dependencies: "@babel/types" "^7.0.0" "@babel/helper-plugin-utils@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q== dependencies: lodash "^4.17.11" "@babel/helper-remap-async-to-generator@^7.1.0": version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" @@ -199,7 +199,7 @@ "@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg== dependencies: "@babel/helper-member-expression-to-functions" "^7.0.0" @@ -209,7 +209,7 @@ "@babel/helper-simple-access@^7.1.0": version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== dependencies: "@babel/template" "^7.1.0" @@ -217,14 +217,14 @@ "@babel/helper-split-export-declaration@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== dependencies: "@babel/types" "^7.4.4" "@babel/helper-wrap-function@^7.1.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -234,7 +234,7 @@ "@babel/helpers@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A== dependencies: "@babel/template" "^7.4.4" @@ -243,21 +243,21 @@ "@babel/highlight@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== dependencies: chalk "^2.0.0" esutils "^2.0.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5": +"@babel/parser@^7.4.4", "@babel/parser@^7.4.5": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew== "@babel/plugin-proposal-async-generator-functions@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -266,7 +266,7 @@ "@babel/plugin-proposal-class-properties@^7.3.0": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce" integrity sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg== dependencies: "@babel/helper-create-class-features-plugin" "^7.4.4" @@ -274,7 +274,7 @@ "@babel/plugin-proposal-decorators@^7.3.0": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" integrity sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw== dependencies: "@babel/helper-create-class-features-plugin" "^7.4.4" @@ -283,7 +283,7 @@ "@babel/plugin-proposal-json-strings@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -291,7 +291,7 @@ "@babel/plugin-proposal-object-rest-spread@^7.3.1", "@babel/plugin-proposal-object-rest-spread@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" integrity sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -299,7 +299,7 @@ "@babel/plugin-proposal-optional-catch-binding@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -307,7 +307,7 @@ "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -316,63 +316,63 @@ "@babel/plugin-syntax-async-generators@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-decorators@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-dynamic-import@^v7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-json-strings@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-jsx@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": +"@babel/plugin-syntax-object-rest-spread@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-optional-catch-binding@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-arrow-functions@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-async-to-generator@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" integrity sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA== dependencies: "@babel/helper-module-imports" "^7.0.0" @@ -381,14 +381,14 @@ "@babel/plugin-transform-block-scoped-functions@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-block-scoping@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -396,7 +396,7 @@ "@babel/plugin-transform-classes@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" @@ -410,21 +410,21 @@ "@babel/plugin-transform-computed-properties@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-destructuring@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -433,14 +433,14 @@ "@babel/plugin-transform-duplicate-keys@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-exponentiation-operator@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" @@ -448,14 +448,14 @@ "@babel/plugin-transform-for-of@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-function-name@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== dependencies: "@babel/helper-function-name" "^7.1.0" @@ -463,21 +463,21 @@ "@babel/plugin-transform-literals@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-member-expression-literals@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-modules-amd@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== dependencies: "@babel/helper-module-transforms" "^7.1.0" @@ -485,7 +485,7 @@ "@babel/plugin-transform-modules-commonjs@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" integrity sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw== dependencies: "@babel/helper-module-transforms" "^7.4.4" @@ -494,7 +494,7 @@ "@babel/plugin-transform-modules-systemjs@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" integrity sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ== dependencies: "@babel/helper-hoist-variables" "^7.4.4" @@ -502,7 +502,7 @@ "@babel/plugin-transform-modules-umd@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== dependencies: "@babel/helper-module-transforms" "^7.1.0" @@ -510,21 +510,21 @@ "@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== dependencies: regexp-tree "^0.1.6" "@babel/plugin-transform-new-target@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-object-super@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -532,7 +532,7 @@ "@babel/plugin-transform-parameters@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== dependencies: "@babel/helper-call-delegate" "^7.4.4" @@ -541,14 +541,14 @@ "@babel/plugin-transform-property-literals@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-react-jsx@^7.3.0": version "7.3.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== dependencies: "@babel/helper-builder-react-jsx" "^7.3.0" @@ -557,21 +557,21 @@ "@babel/plugin-transform-regenerator@^7.4.5": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== dependencies: regenerator-transform "^0.14.0" "@babel/plugin-transform-reserved-words@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-runtime@^7.2.0": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz#a50f5d16e9c3a4ac18a1a9f9803c107c380bce08" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz#a50f5d16e9c3a4ac18a1a9f9803c107c380bce08" integrity sha512-aMVojEjPszvau3NRg+TIH14ynZLvPewH4xhlCW1w6A3rkxTS1m4uwzRclYR9oS+rl/dr+kT+pzbfHuAWP/lc7Q== dependencies: "@babel/helper-module-imports" "^7.0.0" @@ -581,21 +581,21 @@ "@babel/plugin-transform-shorthand-properties@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-spread@^7.2.0": version "7.2.2" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-sticky-regex@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -603,7 +603,7 @@ "@babel/plugin-transform-template-literals@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== dependencies: "@babel/helper-annotate-as-pure" "^7.0.0" @@ -611,14 +611,14 @@ "@babel/plugin-transform-typeof-symbol@^7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-unicode-regex@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -627,7 +627,7 @@ "@babel/preset-env@^7.2.0", "@babel/preset-env@^7.3.1": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" integrity sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w== dependencies: "@babel/helper-module-imports" "^7.0.0" @@ -681,23 +681,23 @@ "@babel/runtime@^7.3.1": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12" integrity sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ== dependencies: regenerator-runtime "^0.13.2" -"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": +"@babel/template@^7.1.0", "@babel/template@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== dependencies: "@babel/code-frame" "^7.0.0" "@babel/parser" "^7.4.4" "@babel/types" "^7.4.4" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": version "7.4.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A== dependencies: "@babel/code-frame" "^7.0.0" @@ -710,9 +710,9 @@ globals "^11.1.0" lodash "^4.17.11" -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": +"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4": version "7.4.4" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ== dependencies: esutils "^2.0.2" @@ -721,7 +721,7 @@ "@basalt/twig-renderer@^0.12.0": version "0.12.0" - resolved "https://registry.npmjs.org/@basalt/twig-renderer/-/twig-renderer-0.12.0.tgz#ef752a08d4c6378de1598a5cd4a1779b5dcb99b9" + resolved "https://registry.yarnpkg.com/@basalt/twig-renderer/-/twig-renderer-0.12.0.tgz#ef752a08d4c6378de1598a5cd4a1779b5dcb99b9" integrity sha512-ORKtGM1Dy3nKhz2yKw0RPgybUTx6D6p4tKLc6LpKsCGhNhDbW20zwM5WR9dxfe0byqEaQvBgG6Syn0f4MMSdcw== dependencies: "@babel/core" "^7.2.0" @@ -735,7 +735,7 @@ "@bolt/api@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/api/-/api-2.5.2.tgz#9858169493e66b493779b797f286e8184065f7c4" + resolved "https://registry.yarnpkg.com/@bolt/api/-/api-2.5.2.tgz#9858169493e66b493779b797f286e8184065f7c4" integrity sha512-+FZRF5Q8Rfki/bXsTpi6lBVO3MH+qzmTTiE7n32odvV+lsVgfNoS1v/ZdqiT5SL+tum5lPFdotQ4w86e7OtvlQ== dependencies: "@bolt/components-button" "^2.5.2" @@ -744,7 +744,7 @@ "@bolt/babel-preset-bolt@^2.5.1": version "2.5.1" - resolved "https://registry.npmjs.org/@bolt/babel-preset-bolt/-/babel-preset-bolt-2.5.1.tgz#92aed351699e90cb4806cef0557aaa99591cf256" + resolved "https://registry.yarnpkg.com/@bolt/babel-preset-bolt/-/babel-preset-bolt-2.5.1.tgz#92aed351699e90cb4806cef0557aaa99591cf256" integrity sha512-0PDCwN5jNR4b9eEZ81xYv5GIfACElh6DmwUJ2d3vp7D/DHpJn6XQpr0B/HgU0CbA7Xd7Pb7KKDGdAZRcoND7hg== dependencies: "@babel/cli" "^7.2.3" @@ -762,15 +762,13 @@ "@bolt/browserslist-config@^2.5.1": version "2.5.1" - resolved "https://registry.npmjs.org/@bolt/browserslist-config/-/browserslist-config-2.5.1.tgz#82701e36149c08d9d4ffe9fbe21544d1c27a076b" + resolved "https://registry.yarnpkg.com/@bolt/browserslist-config/-/browserslist-config-2.5.1.tgz#82701e36149c08d9d4ffe9fbe21544d1c27a076b" integrity sha512-7aWpdSNwKUp1VSgsVua+CHVRTLarjiMHlSqruFBiEmAApRCr5A0+gIrqYjW192chQOsZVGVyz3SHFppOTJuJWw== dependencies: browserslist "^4.6.1" -"@bolt/build-tools@latest": +"@bolt/build-tools@^2.5.2", "@bolt/build-tools@file:../../../packages/build-tools": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/build-tools/-/build-tools-2.5.2.tgz#85b8e63863c4623b46ced05c99d1b91350295a38" - integrity sha512-d6CYMKEZuHG5PECeXtx876waJVvnJ7wKY2yjhlIMSBHtRnnQcYlf3Mweuth7NHXWxvFI6j+y/LTgI7vmJvLuzw== dependencies: "@babel/core" "^7.4.5" "@bolt/api" "^2.5.2" @@ -851,9 +849,9 @@ yaml-loader "^0.5.0" yargs "^13.2.4" -"@bolt/build-utils@^2.5.2", "@bolt/build-utils@latest": +"@bolt/build-utils@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/build-utils/-/build-utils-2.5.2.tgz#de9f72f3c25090cb23bbe1851768b04318569ff1" + resolved "https://registry.yarnpkg.com/@bolt/build-utils/-/build-utils-2.5.2.tgz#de9f72f3c25090cb23bbe1851768b04318569ff1" integrity sha512-LlowNSwhGb17YoKIX9w1EPOZ0ao5cwF8Tj7pBScuuH2MvqBSSkRD8ueCVjVDjlFiEb4/ZhKd5/J+CjoK1QDO8A== dependencies: address "^1.1.0" @@ -872,24 +870,195 @@ resolve "^1.11.0" semver "^6.1.1" -"@bolt/components-button@^2.5.2", "@bolt/components-button@latest": +"@bolt/components-action-blocks@^2.4.1": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-button/-/components-button-2.5.2.tgz#d18b1a12f1a49c4c79c190ab1b56b770f9ef698c" + resolved "https://registry.yarnpkg.com/@bolt/components-action-blocks/-/components-action-blocks-2.5.2.tgz#3e045d6df9821dc06d35e683c038629a09c72761" + integrity sha512-UGwZFYfqtBHtxXCeiutBQLv6NDOjoSbUSE6Seoom/+FWRaAPHXcr+ULrAEL/PisbIUeAtaO/ApxQ994lkKNSnQ== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-background-shapes@^2.4.0", "@bolt/components-background-shapes@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-background-shapes/-/components-background-shapes-2.5.2.tgz#7e197f578169844e323ab70136730f89561ec9a5" + integrity sha512-/Sbi4uftK5KGwILDgYqED4Hpq17+D2EGJrey/a7BbEEb8o+oRC+ECXng9ODlazRGOVsy4km4BLuJi56rIDGwTw== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-background@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-background/-/components-background-2.5.2.tgz#b19960a8823d5f51c2309a48e07656c3abcd339a" + integrity sha512-1cGfpGLl82NF8DmE268KmHOxsb85qbdF0KGPH9PQQKUPRqkSDAnnzqz1NUnTuldB1aARNd7mGqVjGp0KIfwFyQ== + dependencies: + "@bolt/components-background-shapes" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-band@^2.4.3": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-band/-/components-band-2.5.2.tgz#3568e99bf932f0c376cb0e0e9ef42cc96167feb2" + integrity sha512-zh2ZtLEortOLEmlTqEEcLmX5jTAjNtYCAzhQd7oG3vYvT89I/LLa0OlE+ehFdRRBbh4i2/iepT+i5fVUKEcD1w== + dependencies: + "@bolt/components-grid" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-block-list@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-block-list/-/components-block-list-2.5.2.tgz#d6eb8cf1cf60e879f8076ceb41555c3a1f01c81c" + integrity sha512-ikXopJwzcGMJhtkmClPJ84anUQvEMnAKaxCVAVpKmctvkdi/SgYTkiaBpGXsrZHVhAwxbGCyxaSVTzG4dWtuQw== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-blockquote@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-blockquote/-/components-blockquote-2.5.2.tgz#47659c1af7437b0eb4e06873ee936765e26be2cb" + integrity sha512-Yb+/VuXGatTZM5svu+WUaaB01lFLmGSkytYrZXS6mkpONTf3uhqsbUwt1w9Pq/5lF0Dx4I2KnvnZRxWUyirL2Q== + dependencies: + "@bolt/components-image" "^2.5.2" + "@bolt/components-text" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-breadcrumb@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-breadcrumb/-/components-breadcrumb-2.5.2.tgz#68023c601ea4699099f37a8ca4f5cc97e5567101" + integrity sha512-+CzabjUcybKPlv4QK8z5mb2gY/Ovfdw3wCiREd/BmgFlD7LYHwYE7zIrPQpgbkbnMD4CUx8Z2mjZSly9etok3g== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-button-group@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-button-group/-/components-button-group-2.5.2.tgz#f11d84a11af90ab2201446b7ea07e9a79ae5db75" + integrity sha512-SnxeVXj4PAXBxrf3nSp9Ic225zpAgW/4jCbGxQg//zsROxeeRdzrRS3nNv1LM11eQbofghf5bwuD7JoZCG0HaQ== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-button@^2.4.0", "@bolt/components-button@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-button/-/components-button-2.5.2.tgz#d18b1a12f1a49c4c79c190ab1b56b770f9ef698c" integrity sha512-A1RWeBAExqjgWi6NfwGe/CLnwwXhETH/8kkxG8WiNK6MTPRb5s9it6z8FkrjgRP/+h6kkrDd67Gn4zA+zVh+BA== dependencies: "@bolt/components-icon" "^2.5.2" "@bolt/core" "^2.5.2" -"@bolt/components-headline@latest": +"@bolt/components-card@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-card/-/components-card-2.5.2.tgz#ccfd545e3154aa693f2f8d678306afda2d792bc6" + integrity sha512-X/7HKWhPzDp4i5rY/sXZuesZLYPkxb3LssHTICFNMEbyUP2pv9oT+OkDnZPr7vZujBZBhUWQay/vzwKGaGSjiA== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-chip-list@^2.4.0": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-headline/-/components-headline-2.5.2.tgz#1823f7f37c31da79d0896440f9668c823a9aa2d7" + resolved "https://registry.yarnpkg.com/@bolt/components-chip-list/-/components-chip-list-2.5.2.tgz#3f922b59589682f957f76dc079f4c0e9dc34fe7d" + integrity sha512-Mar1LbGulfhL1H8fe6rEktn/ofGKgJ4cLrTOrTW8OpwPYUG7BVyr127OPs6tEVDTcxUwTkI+3ZagmLs4taqHcQ== + dependencies: + "@bolt/components-chip" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-chip@^2.4.0", "@bolt/components-chip@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-chip/-/components-chip-2.5.2.tgz#42cd5d72f88c4ec4a8253ce8424d7388eee8c8f8" + integrity sha512-8OxZ0KKuJxYpB9iaeWECyMno4tdZfsc5AT5GXEp3UrKXKWIUpME7KZG8hcwhdWqb6t/z3Qmn6sXf3Sk+cN9tog== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-code-snippet@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-code-snippet/-/components-code-snippet-2.5.2.tgz#71da29138a437c3413abdb33d330faee15f81b58" + integrity sha512-Dn5+ncWCgz7A3S9EdLQ6ObUZ5Vp7JAgblUt5XcZNxT8lo8BkPq5uZZwF6mIYcZORBUf/3ZiHfEpJ4kdOuZND7g== + dependencies: + "@bolt/core" "^2.5.2" + preact "^8.4.2" + preact-html "^2.0.3" + prismjs "^1.15.0" + +"@bolt/components-copy-to-clipboard@^2.4.3", "@bolt/components-copy-to-clipboard@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-copy-to-clipboard/-/components-copy-to-clipboard-2.5.2.tgz#c1b4747f4b0b0694f292350380d77770dfae8f11" + integrity sha512-8rSQcZb99SFhakK0xqU3PTFbQ9vvNbVjVgFDgJtFExM+bFCOSvKqcxMFfFaqK5gVHnWYL1P9g2UauDEGCDlQ1w== + dependencies: + "@bolt/components-icon" "^2.5.2" + "@bolt/components-link" "^2.5.2" + "@bolt/core" "^2.5.2" + clipboard "^2.0.0" + +"@bolt/components-critical-css-vars@^2.4.3": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-critical-css-vars/-/components-critical-css-vars-2.5.2.tgz#75400369c42a373f32b9372daab00d0de59672fc" + integrity sha512-dfggCrrTrvOxFVcJjZn05zimlhrKv1zTXZTQNw286YCcoVvmCRcjZbMcWhF0wGz6j3aSOJ7SiwXH56wyWOVldw== + dependencies: + "@bolt/build-tools" "^2.5.2" + "@bolt/core" "^2.5.2" + fg-loadcss ">= ^2.1.0" + +"@bolt/components-critical-css@^2.4.3": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-critical-css/-/components-critical-css-2.5.2.tgz#992352ec6fe6422732b2601991307b9da82619f4" + integrity sha512-wL2Lj7iZiQFyZTvCSH7s50QHPLROcdIntKy2NHeOpilZoPTks28g7v3PxDdMbFCbyQEmBN7wHkF2tAV9HaOb4A== + dependencies: + "@bolt/build-tools" "^2.5.2" + "@bolt/core" "^2.5.2" + fg-loadcss "^2.1.0" + +"@bolt/components-critical-fonts@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-critical-fonts/-/components-critical-fonts-2.5.2.tgz#8c96fb8f7f29667aa6d8ad9d6d9691acc54881fc" + integrity sha512-HztF1NTgIyE4BARrGAOeehpmNL4Jc0DzFVgLoG9NPb72CgNALa4ETuWrH7UiiYB+klcggYH/LaC15XtNGAdReQ== + dependencies: + "@bolt/components-headline" "^2.5.2" + "@bolt/core" "^2.5.2" + "@bolt/global" "^2.5.2" + fontfaceobserver "^2.0.13" + +"@bolt/components-device-viewer@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-device-viewer/-/components-device-viewer-2.5.2.tgz#b440d903b7b114ba0f294a2278e496034ca33460" + integrity sha512-IGRpiR0aNxSv8fmhPZAN39MySuJAPfSC9QpTJWt0pUj21rh/WAftHaEmIbWgJO9Tr2YZrd0EcQHoTeINQ0JOWQ== + dependencies: + "@bolt/core" "^2.5.2" + drift-zoom "^1.2.0" + +"@bolt/components-dropdown@^2.4.3": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-dropdown/-/components-dropdown-2.5.2.tgz#65730a89e2e3bb193c89df66aae56a40177ff7bd" + integrity sha512-pXbvhxpa2BhIjWjNYcooxv7lXTCX/19Bvauw+FV+8m4GXVNBrissXZMaLl4e7s6D2+6as83hH3V8AUlE+3gdlQ== + dependencies: + "@bolt/components-icon" "^2.5.2" + "@bolt/core" "^2.5.2" + classnames "^2.2.5" + ev-emitter "^1.1.1" + handorgel "^0.4.5" + +"@bolt/components-figure@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-figure/-/components-figure-2.5.2.tgz#cbad67180c53f1645e90c662bd3282ca16ea63b6" + integrity sha512-VJNreEjx2MnCfn1eu+JLkvzlQalxB2IuaUitrHqF0OQXySD4gOhTHDE8uyisvchn/ZxZUCEZ5dS2PBK9dDMV+A== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-form@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-form/-/components-form-2.5.2.tgz#79aaa87dd758623ca3fc88ef7cdeae2cb14ed822" + integrity sha512-D9e55E8Wn+mk9guGNNfXfXLIjRUFBdgrVf2H6TUaK0ELbTYJvua+dIRHv5wPWSmiASDUGA28TPjsEufEq5tQSw== + dependencies: + "@bolt/components-button" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-grid@^2.4.0", "@bolt/components-grid@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-grid/-/components-grid-2.5.2.tgz#c414efede4c34d678a35590ad66a3b3a8d871c31" + integrity sha512-ITHRXbmW3lLGBZsv2JZSwKWgkd+EBhpx2jZljHK3cimV3wKNtbpaP9hQW6/bNagfSPnvacsS9FkziRwX3JaWiA== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-headline@^2.4.0", "@bolt/components-headline@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-headline/-/components-headline-2.5.2.tgz#1823f7f37c31da79d0896440f9668c823a9aa2d7" integrity sha512-2rIgCLh1wuCiwXK1R1VDxNkQUALK4T/T/rl2/FKZ1lNdn+WKHnXyBqzKiI6beyHo0THozi3041H+m8aim00rqw== dependencies: "@bolt/core" "^2.5.2" -"@bolt/components-icon@^2.5.2", "@bolt/components-icon@latest": +"@bolt/components-icon@^2.4.3", "@bolt/components-icon@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-icon/-/components-icon-2.5.2.tgz#2294da6d39935bf5f0c23e6dd6a428b162c608a9" + resolved "https://registry.yarnpkg.com/@bolt/components-icon/-/components-icon-2.5.2.tgz#2294da6d39935bf5f0c23e6dd6a428b162c608a9" integrity sha512-YAtnK8XcO2PXLqGaVUt/i74xIE6pccRzQTT858D6JfsxZOTf2yy5OjKUUax7d3eLdrq9aZHFbsbSzvNxHuOt6Q== dependencies: "@bolt/components-icons" "^2.5.2" @@ -897,40 +1066,80 @@ pubsub-js "^1.6.0" uppercamelcase "^3.0.0" -"@bolt/components-icons@^2.5.2": +"@bolt/components-icons@^2.4.3", "@bolt/components-icons@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-icons/-/components-icons-2.5.2.tgz#8dfd53e6158e1e0c5d425de49f8e62dcc447bd87" + resolved "https://registry.yarnpkg.com/@bolt/components-icons/-/components-icons-2.5.2.tgz#8dfd53e6158e1e0c5d425de49f8e62dcc447bd87" integrity sha512-CSvHut2NnjB5aaoi4cSHwZ+StK6X10S7nLA1hAEWPcAbMVa8NGgs1Q8g5vyIKxuCml7PiutL4gdaGypkpP1NKw== dependencies: "@bolt/core" "^2.5.2" -"@bolt/components-link@latest": +"@bolt/components-image@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@bolt/components-image/-/components-image-2.3.1.tgz#2fe464dcf8974c83102f37916a608f7d47aa3c40" + integrity sha512-9vFLJMHiluH8oy2ROixtPQYsAyxjtg9MKzKjQsdmstlngVXvZBdBwaSU5xvCXdI2//IsEeuDfdcIG00cOgSq3g== + dependencies: + "@bolt/components-ratio" "^2.3.1" + "@bolt/core" "^2.3.1" + lazysizes "^4.1.4" + +"@bolt/components-image@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-image/-/components-image-2.5.2.tgz#5ef970d390d925e1d955503c2ac7ea11acffab81" + integrity sha512-zPxg97Wu0PNhP5gQvdd2q6S1PaZRbOLQFd0aIkGLGH/CZj9WIcwJAKE0p7UJMvdCPSHMF7DwYb5W5lY/QcTCHg== + dependencies: + "@bolt/components-ratio" "^2.5.2" + "@bolt/core" "^2.5.2" + lazysizes "^4.1.4" + +"@bolt/components-li@^2.4.0", "@bolt/components-li@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-link/-/components-link-2.5.2.tgz#67addad5889cf0727301bb2bfdcf4dde7a03cc8f" + resolved "https://registry.yarnpkg.com/@bolt/components-li/-/components-li-2.5.2.tgz#84c0d1bfa4b715676cbcd0f5d58682b5f0df29fe" + integrity sha512-11k7/30IYp6/t9/i9y8qBu3yLC3ieCZFvvBdihEffSSACamQsk5tnv6dMhsMlHSKEFrWPFjmdeBnsJ3bvlb12w== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-link@^2.4.0", "@bolt/components-link@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-link/-/components-link-2.5.2.tgz#67addad5889cf0727301bb2bfdcf4dde7a03cc8f" integrity sha512-y2hnk4gkG4KDJTTiQqwUas9qm9MP2FxkHQuyZ9BZr5d9nLYGsh8Xh+MvXNfCHVH3pz2f7a3maeD+INCeuF45cg== dependencies: "@bolt/core" "^2.5.2" ajv "^6.5.4" -"@bolt/components-nav-indicator@^2.5.2": +"@bolt/components-list@^2.4.1": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-list/-/components-list-2.5.2.tgz#c4c2848c0c4955b404cb60752cbb3ef8be3df8d3" + integrity sha512-RJ2nf9kjh3iWthVLjflXviqg1BhkYf0mthNSy8OujL+yEqW0upc2jEhb9SxhXuQqri0nc4gqvFWk1RytAb2OIg== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-logo@^2.4.0": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-nav-indicator/-/components-nav-indicator-2.5.2.tgz#1ccf65d988e6f50ad7a21d7121c2e79636cf5e1b" + resolved "https://registry.yarnpkg.com/@bolt/components-logo/-/components-logo-2.5.2.tgz#17de04ea35bd13eed551016ac3438c90c6da2548" + integrity sha512-eOdE/la+9+UqILKK6UizgvVkjw/MdGpAUHeI7r2Eqcj8nUXmP1LaaK7NwMiloZjhFpbODvv/nIC9ol0eh9MFoQ== + dependencies: + "@bolt/components-image" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-nav-indicator@^2.4.0", "@bolt/components-nav-indicator@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-nav-indicator/-/components-nav-indicator-2.5.2.tgz#1ccf65d988e6f50ad7a21d7121c2e79636cf5e1b" integrity sha512-YX91jS4o7E+gu9yHeSc9h6HbkxqhVHLPJZo2cRwrrA2ioKcSWl/sC9vEkjCOXQ7SJ2bCgnmUOm16udsZV9I9vA== dependencies: "@bolt/core" "^2.5.2" gumshoejs "^3.5.0" is-visible "^2.2.0" -"@bolt/components-nav-priority@^2.5.2": +"@bolt/components-nav-priority@^2.4.0", "@bolt/components-nav-priority@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-nav-priority/-/components-nav-priority-2.5.2.tgz#e00a4712904ea85622ae9a99238f5cc2859656f9" + resolved "https://registry.yarnpkg.com/@bolt/components-nav-priority/-/components-nav-priority-2.5.2.tgz#e00a4712904ea85622ae9a99238f5cc2859656f9" integrity sha512-LU+Pd59fW8z7PmFMaT/EEPzLaa6w4iutIEoPMqhEn4XiTe1anFEJ7vIdBlemlUnS46VEhupKWqPlbQ5h2+utJg== dependencies: "@bolt/core" "^2.5.2" -"@bolt/components-navbar@latest": +"@bolt/components-navbar@^2.4.3": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-navbar/-/components-navbar-2.5.2.tgz#b2dc0a017951cfcb602945f676958e6f0eed7ce0" + resolved "https://registry.yarnpkg.com/@bolt/components-navbar/-/components-navbar-2.5.2.tgz#b2dc0a017951cfcb602945f676958e6f0eed7ce0" integrity sha512-Po5kR39+nZr2NKgfGEvoOq9mY/bTLcVJl9R2fmd44DQV1hTenQ8ez+OxN+yVhNBT5jqkYtlpjwD4FKqh4ecNTw== dependencies: "@bolt/components-nav-indicator" "^2.5.2" @@ -938,41 +1147,124 @@ "@bolt/components-navlink" "^2.5.2" "@bolt/core" "^2.5.2" -"@bolt/components-navlink@^2.5.2": +"@bolt/components-navlink@^2.4.3", "@bolt/components-navlink@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-navlink/-/components-navlink-2.5.2.tgz#996dde6c1683486289505a4537214ee9cf222432" + resolved "https://registry.yarnpkg.com/@bolt/components-navlink/-/components-navlink-2.5.2.tgz#996dde6c1683486289505a4537214ee9cf222432" integrity sha512-h5twCBTUgOJp7GUgMp5E3w0xP9OJDIAxOY5D3UY3bOquHYfuNt0MnEt1S58wCa7437H2V6AaSS8ggYxnDTg80w== dependencies: "@bolt/components-smooth-scroll" "^2.5.2" "@bolt/core" "^2.5.2" is-visible "^2.2.0" -"@bolt/components-ratio@^2.5.2": +"@bolt/components-ol@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-ol/-/components-ol-2.5.2.tgz#3c0074474425f08102b122ed559f71932d837287" + integrity sha512-lXm6kc2uBScM5T5in69RiFzGmNA+LwTW2SEte0eA2EL/zHR1v3jLPgllYf72QW0cKriN4beSsfhRo9QIkKBcaA== + dependencies: + "@bolt/components-li" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-pagination@^2.4.0": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-ratio/-/components-ratio-2.5.2.tgz#7273dde7e4cd562c3a35cb688ea359358cc762cb" + resolved "https://registry.yarnpkg.com/@bolt/components-pagination/-/components-pagination-2.5.2.tgz#e29355ae894ddd6bff057fb3893b7f1a6b282df5" + integrity sha512-HEAwBD2rmiqeWcUzYsGOFPuDompHluans2rPv0TvPEXxD21E+J738Da6FCdn1BXS/30504XfbX0vUXfop8EgLg== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-placeholder@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-placeholder/-/components-placeholder-2.5.2.tgz#b1fe43700bb3974214aa1dca7e92abdcdac22c16" + integrity sha512-ByCcLIgW6+fMtjld+LrrKKaH0rRolF7PAvO9Pv09K6AQGBZ98qkyFGLFNQlVYgl4GUWfxYAIbAvfD3AYatXpKw== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-ratio@^2.3.1", "@bolt/components-ratio@^2.4.0", "@bolt/components-ratio@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-ratio/-/components-ratio-2.5.2.tgz#7273dde7e4cd562c3a35cb688ea359358cc762cb" integrity sha512-btRXCCdqN6ndLmhzINHDducUqafn4BavhIPmqi+qm+mkUrc1WrWKxIJ6MIVP+1RlBBr5G9Ux0AZfNLD1RJ7Ikw== dependencies: "@bolt/core" "^2.5.2" -"@bolt/components-smooth-scroll@^2.5.2": +"@bolt/components-share@^2.4.3": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-share/-/components-share-2.5.2.tgz#73bfde4a00e6513aae54d4b65d37347973c3f0df" + integrity sha512-4znbPm9pAUIlCTeMjd/yokR6dM7qw83lDjS+qNpKgWaBWJUqQ2fzANh0KFYnpWa5o+ITMEDvHbUxVmeNW538WQ== + dependencies: + "@bolt/components-copy-to-clipboard" "^2.5.2" + "@bolt/components-icon" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-site@^2.4.0": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-smooth-scroll/-/components-smooth-scroll-2.5.2.tgz#94739f9b4ede87abd74cc80ec96baed7270909fc" + resolved "https://registry.yarnpkg.com/@bolt/components-site/-/components-site-2.5.2.tgz#66abe3d8e31e94320652402198874957bb52642e" + integrity sha512-GH5mUdqO2wn6xqeh0WzI6Qi45MBcrWuGCKPqUeJrQ1i5LzuFNpw3uFn4Sg/YbhRhatiPXP0lQWZrSby9G73v+w== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-smooth-scroll@^2.4.0", "@bolt/components-smooth-scroll@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-smooth-scroll/-/components-smooth-scroll-2.5.2.tgz#94739f9b4ede87abd74cc80ec96baed7270909fc" integrity sha512-CnHSoOqqi6mCFaI4nyYlzpfMdKt8b/9XsKMkPOrua0aiBsCSf/FW54lZdEndyIrpWAMkOR+uvth3YDDweofn9A== dependencies: "@bolt/core" "^2.5.2" smooth-scroll "github:bolt-design-system/smooth-scroll#master" -"@bolt/components-sticky@latest": +"@bolt/components-sticky@^2.4.0": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/components-sticky/-/components-sticky-2.5.2.tgz#d34ef5976c7978a7a4e6bb14f8f772b4792e9fb4" + resolved "https://registry.yarnpkg.com/@bolt/components-sticky/-/components-sticky-2.5.2.tgz#d34ef5976c7978a7a4e6bb14f8f772b4792e9fb4" integrity sha512-BF+CM+L/iy4nZyQOycc3xgUjKKaii+9i7f/N8aK9y8LjQQi46wIuBGp/kFbcQVoMnQPEMDEjPBE3W2wMfPYz7Q== dependencies: "@bolt/core" "^2.5.2" stickyfilljs "^2.0.3" -"@bolt/core@^2.5.2": +"@bolt/components-teaser@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-teaser/-/components-teaser-2.5.2.tgz#76b4ebeb37ac30141bf271f7ae29006baaf37b6c" + integrity sha512-T6BuwnIoB1mC7QgJxQdoggIk2gWtKl39GHRM69zst900ykK9+fG6q8RHkqps6Rn7fxqNpYaYertgfToceIfpog== + dependencies: + "@bolt/core" "^2.5.2" + +"@bolt/components-text@^2.4.0", "@bolt/components-text@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-text/-/components-text-2.5.2.tgz#cee90dd8045b25815c21c62ec0877d49134365a7" + integrity sha512-1GuEw9CXktrFnX+59mfXRYj17GJoLEqlS6ysAHUTlNvdTmiz/XxQwBhxEWvNYXm8AODShBohVfy5vUlT3yDTGw== + dependencies: + "@bolt/components-link" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-tooltip@^2.4.1": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-tooltip/-/components-tooltip-2.5.2.tgz#7b4e34e3edf6b83ca7177c1d49c24128de35eeba" + integrity sha512-BfUyOTeEgIhmkkwJgPzcdQnP3Xe+Oe7ceXlY7fbGkzOXh82k9U7SoJAM7EUbgTHJdvq95TJ70mFoKkupHTNpmw== + dependencies: + "@bolt/components-button" "^2.5.2" + "@bolt/components-icon" "^2.5.2" + "@bolt/components-icons" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-ul@^2.4.0": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-ul/-/components-ul-2.5.2.tgz#e1da0fdaca086f4bdffca47d1551caaf75703e5c" + integrity sha512-Mcs+21VHcQ1QuKzUEeHVOeS34WpBntFOs8Ml7Dhmz4APMedoU5jb6vQkqZ1K4fA1kcqU5qlD2ilRPBMJo2GWHg== + dependencies: + "@bolt/components-li" "^2.5.2" + "@bolt/core" "^2.5.2" + +"@bolt/components-video@^2.4.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@bolt/components-video/-/components-video-2.5.2.tgz#aea6d3b2171b91917c2a11c1ac26c3fba132ee45" + integrity sha512-TKL/3nJL5Aq/YsgXNRpoxh9b3tuzKI5iAhri/SbG1IcbAoz8aK3oHGyomCd3XioSAidhbX7mOU4aUs8l8H/BKw== + dependencies: + "@bolt/components-button" "^2.5.2" + "@bolt/components-ratio" "^2.5.2" + "@bolt/core" "^2.5.2" + dasherize "^2.0.0" + lodash.isequal "^4.5.0" + mousetrap "^1.6.1" + +"@bolt/core@^2.3.1", "@bolt/core@^2.4.0", "@bolt/core@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/core/-/core-2.5.2.tgz#a52f13449120961d45a6ee57111741a5decadf86" + resolved "https://registry.yarnpkg.com/@bolt/core/-/core-2.5.2.tgz#a52f13449120961d45a6ee57111741a5decadf86" integrity sha512-VhnYII0KzM862pDnkppc9ViPCCnHiOZw+shfhej5U66sao6SnJW2cdKpBfiXqMjWfkkI7dkGzFnIpEssVKZ2dg== dependencies: "@polymer/polymer" "^3.2.0" @@ -1007,12 +1299,12 @@ "@bolt/drupal-twig-extensions@^2.5.1": version "2.5.1" - resolved "https://registry.npmjs.org/@bolt/drupal-twig-extensions/-/drupal-twig-extensions-2.5.1.tgz#27a5c65dcf32bb5569cd457da23ea292fe6a160a" + resolved "https://registry.yarnpkg.com/@bolt/drupal-twig-extensions/-/drupal-twig-extensions-2.5.1.tgz#27a5c65dcf32bb5569cd457da23ea292fe6a160a" integrity sha512-tFC97qEO4MsDe86Tptg2M93FIlJ1OcRLi3jx1UeYRKOKtrYK7MJnn3MwEazKnoHAL/7kuwJHr7tNr7+wilPZgA== -"@bolt/global@latest": +"@bolt/global@^2.4.0", "@bolt/global@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/global/-/global-2.5.2.tgz#6e5a8476eb4a69b5ed5f59a1a0873c3aaaae7c67" + resolved "https://registry.yarnpkg.com/@bolt/global/-/global-2.5.2.tgz#6e5a8476eb4a69b5ed5f59a1a0873c3aaaae7c67" integrity sha512-g79rjgyo5X+CbImN2HNt0s7z0YAwG9mLrSEK5zhk91t5KHfEq3Fnk40UX7v8ipzQJ8hWe03V9NLQkcoax1sSag== dependencies: "@bolt/components-ratio" "^2.5.2" @@ -1021,7 +1313,7 @@ "@bolt/postcss-themify@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/postcss-themify/-/postcss-themify-2.5.2.tgz#c8cd1986e17555313b4e44db806668277b03503a" + resolved "https://registry.yarnpkg.com/@bolt/postcss-themify/-/postcss-themify-2.5.2.tgz#c8cd1986e17555313b4e44db806668277b03503a" integrity sha512-sPRfoOebSA1FAlqNgE6UgAGtlBMGyxXUf6nq3UaeA3lU4lPIemeA+N5CYAaGroz55s6Do3HluREm8cZ2z7L4WQ== dependencies: "@bolt/core" "^2.5.2" @@ -1033,7 +1325,7 @@ "@bolt/sass-export-data@^2.5.1": version "2.5.1" - resolved "https://registry.npmjs.org/@bolt/sass-export-data/-/sass-export-data-2.5.1.tgz#4fbf20ceaa38078952a0b998876931f5ced3ac20" + resolved "https://registry.yarnpkg.com/@bolt/sass-export-data/-/sass-export-data-2.5.1.tgz#4fbf20ceaa38078952a0b998876931f5ced3ac20" integrity sha512-Yv888bp4rPivnoNqx2SXdZbkDgltbQnfg0d8uoPdJDRcNfx2i6pgRbsIQn5jjWwzPKI40eYqVd8D5dw16rrumA== dependencies: "@theme-tools/core" "^1.0.0" @@ -1046,16 +1338,16 @@ "@bolt/sassdoc-webpack-plugin@^2.5.1": version "2.5.1" - resolved "https://registry.npmjs.org/@bolt/sassdoc-webpack-plugin/-/sassdoc-webpack-plugin-2.5.1.tgz#026f7d8e1e807fc339ff29b434b63405630b04aa" + resolved "https://registry.yarnpkg.com/@bolt/sassdoc-webpack-plugin/-/sassdoc-webpack-plugin-2.5.1.tgz#026f7d8e1e807fc339ff29b434b63405630b04aa" integrity sha512-ubt38S4ii4MF5AV2q0Jv2+U/2g485Y3eTPnsQkkw7u1Cd0jBUGMmlK7pEMwlD/E13Ey/J/R2L2IjAhn48UdBJw== dependencies: chai "^4.2.0" js-yaml "^3.13.1" sassdoc "^2.7.0" -"@bolt/twig-renderer@^2.5.2": +"@bolt/twig-renderer@^2.4.3", "@bolt/twig-renderer@^2.5.2": version "2.5.2" - resolved "https://registry.npmjs.org/@bolt/twig-renderer/-/twig-renderer-2.5.2.tgz#5514d7fe978badae7fd33a8f2c8d3993a1cce76a" + resolved "https://registry.yarnpkg.com/@bolt/twig-renderer/-/twig-renderer-2.5.2.tgz#5514d7fe978badae7fd33a8f2c8d3993a1cce76a" integrity sha512-EohNacoNatjDWBudhDk8Xe1LkWf+cWHKE2T5eXg3IVmLBOzJvLVEifKQY0vjTK9av5bZ4yuKDM3MfvcHoZLFww== dependencies: "@basalt/twig-renderer" "^0.12.0" @@ -1063,163 +1355,9 @@ "@bolt/drupal-twig-extensions" "^2.5.1" sleep-promise "^8.0.1" -"@cnakazawa/watch@^1.0.3": - version "1.0.3" - resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" - integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== - dependencies: - exec-sh "^0.3.2" - minimist "^1.2.0" - -"@jest/console@^24.7.1": - version "24.7.1" - resolved "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== - dependencies: - "@jest/source-map" "^24.3.0" - chalk "^2.0.1" - slash "^2.0.0" - -"@jest/core@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" - integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A== - dependencies: - "@jest/console" "^24.7.1" - "@jest/reporters" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - ansi-escapes "^3.0.0" - chalk "^2.0.1" - exit "^0.1.2" - graceful-fs "^4.1.15" - jest-changed-files "^24.8.0" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" - jest-resolve-dependencies "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - jest-watcher "^24.8.0" - micromatch "^3.1.10" - p-each-series "^1.0.0" - pirates "^4.0.1" - realpath-native "^1.1.0" - rimraf "^2.5.4" - strip-ansi "^5.0.0" - -"@jest/environment@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" - integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw== - dependencies: - "@jest/fake-timers" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - -"@jest/fake-timers@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== - dependencies: - "@jest/types" "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - -"@jest/reporters@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" - integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - chalk "^2.0.1" - exit "^0.1.2" - glob "^7.1.2" - istanbul-lib-coverage "^2.0.2" - istanbul-lib-instrument "^3.0.1" - istanbul-lib-report "^2.0.4" - istanbul-lib-source-maps "^3.0.1" - istanbul-reports "^2.1.1" - jest-haste-map "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" - node-notifier "^5.2.1" - slash "^2.0.0" - source-map "^0.6.0" - string-length "^2.0.0" - -"@jest/source-map@^24.3.0": - version "24.3.0" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.1.15" - source-map "^0.6.0" - -"@jest/test-result@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== - dependencies: - "@jest/console" "^24.7.1" - "@jest/types" "^24.8.0" - "@types/istanbul-lib-coverage" "^2.0.0" - -"@jest/test-sequencer@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" - integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg== - dependencies: - "@jest/test-result" "^24.8.0" - jest-haste-map "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" - -"@jest/transform@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" - integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^24.8.0" - babel-plugin-istanbul "^5.1.0" - chalk "^2.0.1" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.1.15" - jest-haste-map "^24.8.0" - jest-regex-util "^24.3.0" - jest-util "^24.8.0" - micromatch "^3.1.10" - realpath-native "^1.1.0" - slash "^2.0.0" - source-map "^0.6.1" - write-file-atomic "2.4.1" - -"@jest/types@^24.8.0": - version "24.8.0" - resolved "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^12.0.9" - "@mrmlnc/readdir-enhanced@^2.2.1": version "2.2.1" - resolved "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" + resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== dependencies: call-me-maybe "^1.0.1" @@ -1227,12 +1365,12 @@ "@nodelib/fs.stat@^1.1.2": version "1.1.3" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== "@octokit/endpoint@^5.1.0": version "5.2.0" - resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.2.0.tgz#acd569cb7152549998454aa5658532eb24a0987e" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-5.2.0.tgz#acd569cb7152549998454aa5658532eb24a0987e" integrity sha512-g4r1MKr8GJ8qubJQp3HP3JrxDY+ZeVqjYBTgtu1lPEDLhfQDY6rOhyZOoHKOw+gaIF6aAcmuvPPNZUro2OwmOg== dependencies: deepmerge "3.3.0" @@ -1242,14 +1380,14 @@ "@octokit/plugin-throttling@^2.6.0": version "2.6.0" - resolved "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-2.6.0.tgz#0b3107c2267e3a8cf6f63925847ec3ebe9e0aa8d" + resolved "https://registry.yarnpkg.com/@octokit/plugin-throttling/-/plugin-throttling-2.6.0.tgz#0b3107c2267e3a8cf6f63925847ec3ebe9e0aa8d" integrity sha512-E0xQrcD36sVEeBhut6j9nWX38vm/1LKMRSUqjvJ/mqGLXfHr4jYMsrR3I/nT2QC0eJL1/SKMt7zxOt7pZiFhDA== dependencies: bottleneck "^2.15.3" "@octokit/request-error@^1.0.1", "@octokit/request-error@^1.0.2": version "1.0.4" - resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.0.4.tgz#15e1dc22123ba4a9a4391914d80ec1e5303a23be" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.0.4.tgz#15e1dc22123ba4a9a4391914d80ec1e5303a23be" integrity sha512-L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig== dependencies: deprecation "^2.0.0" @@ -1257,7 +1395,7 @@ "@octokit/request@^4.0.1": version "4.1.1" - resolved "https://registry.npmjs.org/@octokit/request/-/request-4.1.1.tgz#614262214f48417b4d3b14e047d09a9c8e2f7a09" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-4.1.1.tgz#614262214f48417b4d3b14e047d09a9c8e2f7a09" integrity sha512-LOyL0i3oxRo418EXRSJNk/3Q4I0/NKawTn6H/CQp+wnrG1UFLGu080gSsgnWobhPo5BpUNgSQ5BRk5FOOJhD1Q== dependencies: "@octokit/endpoint" "^5.1.0" @@ -1270,7 +1408,7 @@ "@octokit/rest@^16.27.3": version "16.28.2" - resolved "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.2.tgz#3fc3b8700046ab29ab1e2a4bdf49f89e94f7ba27" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.28.2.tgz#3fc3b8700046ab29ab1e2a4bdf49f89e94f7ba27" integrity sha512-csuYiHvJ1P/GFDadVn0QhwO83R1+YREjcwCY7ZIezB6aJTRIEidJZj+R7gAkUhT687cqYb4cXTZsDVu9F+Fmug== dependencies: "@octokit/request" "^4.0.1" @@ -1289,127 +1427,64 @@ "@polymer/polymer@^3.2.0": version "3.3.0" - resolved "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.3.0.tgz#52a0665ac29654728e8f46e8ee178c02c49efdd0" + resolved "https://registry.yarnpkg.com/@polymer/polymer/-/polymer-3.3.0.tgz#52a0665ac29654728e8f46e8ee178c02c49efdd0" integrity sha512-rij7suomS7DxdBamnwr/Xa0V5hpypf7I9oYKseF2FWz5Xh2a3wJNpVjgJy1adXVCxqIyPhghsrthnfCt7EblsQ== dependencies: "@webcomponents/shadycss" "^1.9.1" "@sindresorhus/is@^0.14.0": version "0.14.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== "@szmarczak/http-timer@^1.1.2": version "1.1.2" - resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== dependencies: defer-to-connect "^1.0.1" "@theme-tools/core@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@theme-tools/core/-/core-1.0.0.tgz#7ed9915cb4d0f3591404346612ce3adfc2d9923e" + resolved "https://registry.yarnpkg.com/@theme-tools/core/-/core-1.0.0.tgz#7ed9915cb4d0f3591404346612ce3adfc2d9923e" integrity sha512-8CwKeAVetuEIs5RlUlCW/GcxYsL80sPjVfNDIwtpRcCJ6rwKVtpHOeWFX/0Q6nv6tzU4p6tlz8SDTEQB7Nk0zg== dependencies: js-yaml "^3.8.3" merge "^1.2.0" node-notifier "^5.1.2" -"@types/babel__core@^7.1.0": - version "7.1.2" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f" - integrity sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.0.2" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" - integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.0.2" - resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" - integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.7" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" - integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== - dependencies: - "@babel/types" "^7.3.0" - "@types/events@*": version "3.0.0" - resolved "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" + resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== "@types/glob@^7.1.1": version "7.1.1" - resolved "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== dependencies: "@types/events" "*" "@types/minimatch" "*" "@types/node" "*" -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.1" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" - integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== - -"@types/istanbul-lib-report@*": - version "1.1.1" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" - integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== - dependencies: - "@types/istanbul-lib-coverage" "*" - "@types/istanbul-lib-report" "*" - "@types/minimatch@*": version "3.0.3" - resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/node@*": version "12.0.10" - resolved "https://registry.npmjs.org/@types/node/-/node-12.0.10.tgz#51babf9c7deadd5343620055fc8aff7995c8b031" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.0.10.tgz#51babf9c7deadd5343620055fc8aff7995c8b031" integrity sha512-LcsGbPomWsad6wmMNv7nBLw7YYYyfdYcz6xryKYQhx89c3XXan+8Q6AJ43G5XDIaklaVkK3mE4fCb0SBvMiPSQ== "@types/q@^1.5.1": version "1.5.2" - resolved "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== -"@types/stack-utils@^1.0.1": - version "1.0.1" - resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== - -"@types/yargs@^12.0.2", "@types/yargs@^12.0.9": - version "12.0.12" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== - "@webassemblyjs/ast@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== dependencies: "@webassemblyjs/helper-module-context" "1.8.5" @@ -1418,34 +1493,34 @@ "@webassemblyjs/floating-point-hex-parser@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== "@webassemblyjs/helper-api-error@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== "@webassemblyjs/helper-buffer@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== "@webassemblyjs/helper-code-frame@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== dependencies: "@webassemblyjs/wast-printer" "1.8.5" "@webassemblyjs/helper-fsm@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== "@webassemblyjs/helper-module-context@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1453,12 +1528,12 @@ "@webassemblyjs/helper-wasm-bytecode@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== "@webassemblyjs/helper-wasm-section@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1468,26 +1543,26 @@ "@webassemblyjs/ieee754@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== dependencies: "@xtuc/long" "4.2.2" "@webassemblyjs/utf8@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== "@webassemblyjs/wasm-edit@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1501,7 +1576,7 @@ "@webassemblyjs/wasm-gen@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1512,7 +1587,7 @@ "@webassemblyjs/wasm-opt@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1522,7 +1597,7 @@ "@webassemblyjs/wasm-parser@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1534,7 +1609,7 @@ "@webassemblyjs/wast-parser@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1546,7 +1621,7 @@ "@webassemblyjs/wast-printer@1.8.5": version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -1555,62 +1630,57 @@ "@webcomponents/custom-elements@^1.2.4": version "1.2.4" - resolved "https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.2.4.tgz#7074543155396114617722724d6f6cb7b3800a14" + resolved "https://registry.yarnpkg.com/@webcomponents/custom-elements/-/custom-elements-1.2.4.tgz#7074543155396114617722724d6f6cb7b3800a14" integrity sha512-WiTlgz6/kuwajYIcgyq64rSlCtb2AvbxwwrExP3wr6rKbJ72I3hi/sb4KdGUumfC+isDn2F0btZGk4MnWpyO1Q== "@webcomponents/shadycss@^1.9.1": version "1.9.1" - resolved "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.1.tgz#d769fbadfa504f11b84caeef26701f89070ec49a" + resolved "https://registry.yarnpkg.com/@webcomponents/shadycss/-/shadycss-1.9.1.tgz#d769fbadfa504f11b84caeef26701f89070ec49a" integrity sha512-IaZOnWOKXHghqk/WfPNDRIgDBi3RsVPY2IFAw6tYiL9UBGvQRy5R6uC+Fk7qTZsReTJ0xh5MTT8yAcb3MUR4mQ== "@webcomponents/shadydom@^1.6.0": version "1.6.0" - resolved "https://registry.npmjs.org/@webcomponents/shadydom/-/shadydom-1.6.0.tgz#5918eccd07ff506a3a258fa0a7339bd7434bcf0a" + resolved "https://registry.yarnpkg.com/@webcomponents/shadydom/-/shadydom-1.6.0.tgz#5918eccd07ff506a3a258fa0a7339bd7434bcf0a" integrity sha512-2r9SGHv13MS488ZwYXd2W123bXn/ZjWo5/pO4s9FOZmpEYv8ALWRc4VazmiFNl+3n4Cdu0uvCwju4V6ivgZKXA== "@webcomponents/template@^1.4.0": version "1.4.0" - resolved "https://registry.npmjs.org/@webcomponents/template/-/template-1.4.0.tgz#2ffd4574a5a2b662f0330dbeb40b231244a41c52" + resolved "https://registry.yarnpkg.com/@webcomponents/template/-/template-1.4.0.tgz#2ffd4574a5a2b662f0330dbeb40b231244a41c52" integrity sha512-HJfhAxCD+DZmtm8oCALtvyOL9JlisSDqwE/4FWfaxq4SK3gUIp/2eUjLE6zqt9n6VHeo1zQjMTOA4fKKF6qSQg== "@webcomponents/webcomponentsjs@^2.2.10": version "2.2.10" - resolved "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.2.10.tgz#6f6bee0277833ae98d7e5b46f1e0fdb48cd5ff44" + resolved "https://registry.yarnpkg.com/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.2.10.tgz#6f6bee0277833ae98d7e5b46f1e0fdb48cd5ff44" integrity sha512-5dzhUhP+h0qMiK0IWb7VNb0OGBoXO3AuI6Qi8t9PoKT50s5L1jv0xnwnLq+cFgPuTB8FLTNP8xIDmyoOsKBy9Q== "@xtuc/ieee754@^1.2.0": version "1.2.0" - resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== "@xtuc/long@4.2.2": version "4.2.2" - resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== -"@yarnpkg/lockfile@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" - integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== +"@zeit/schemas@2.6.0": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38eac7bcbf58a867fe3" + integrity sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg== a-sync-waterfall@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz#75b6b6aa72598b497a125e7a2770f14f4c8a1fa7" + resolved "https://registry.yarnpkg.com/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz#75b6b6aa72598b497a125e7a2770f14f4c8a1fa7" integrity sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA== -abab@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== - abbrev@1: version "1.1.1" - resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -accepts@~1.3.4, accepts@~1.3.7: +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" - resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== dependencies: mime-types "~2.1.24" @@ -1618,45 +1688,27 @@ accepts@~1.3.4, accepts@~1.3.7: acorn-dynamic-import@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== -acorn-globals@^4.1.0: - version "4.3.2" - resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" - integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== - dependencies: - acorn "^6.0.1" - acorn-walk "^6.0.1" - acorn-jsx@^5.0.0: version "5.0.1" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== -acorn-walk@^6.0.1: - version "6.1.1" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" - integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== - -acorn@^5.5.3: - version "5.7.3" - resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" - integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== - -acorn@^6.0.1, acorn@^6.0.5, acorn@^6.0.7: +acorn@^6.0.5, acorn@^6.0.7: version "6.1.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== address@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/address/-/address-1.1.0.tgz#ef8e047847fcd2c5b6f50c16965f924fd99fe709" + resolved "https://registry.yarnpkg.com/address/-/address-1.1.0.tgz#ef8e047847fcd2c5b6f50c16965f924fd99fe709" integrity sha512-4diPfzWbLEIElVG4AnqP+00SULlPzNuyJFNnmMrLgyaxG6tZXJ1sn7mjBu4fHrJE+Yp/jgylOweJn2xsLMFggQ== adjust-sourcemap-loader@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA== dependencies: assert "1.4.1" @@ -1667,22 +1719,32 @@ adjust-sourcemap-loader@2.0.0: after@0.8.2: version "0.8.2" - resolved "https://registry.npmjs.org/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= ajv-errors@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== ajv-keywords@^3.1.0: version "3.4.0" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== +ajv@6.5.3: + version "6.5.3" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9" + integrity sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + ajv@^6.1.0, ajv@^6.10.0, ajv@^6.5.2, ajv@^6.5.4, ajv@^6.5.5, ajv@^6.9.1: version "6.10.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== dependencies: fast-deep-equal "^2.0.1" @@ -1692,71 +1754,71 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.5.2, ajv@^6.5.4, ajv@^6.5.5, ajv@^6.9.1: alphanum-sort@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= amdefine@>=0.0.4: version "1.0.1" - resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= ansi-align@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= dependencies: string-width "^2.0.0" ansi-colors@3.2.3: version "3.2.3" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== ansi-colors@^3.0.0: version "3.2.4" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== -ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: +ansi-escapes@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== ansi-html@0.0.7: version "0.0.7" - resolved "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= ansi-regex@^2.0.0: version "2.1.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= -ansi-regex@^4.0.0, ansi-regex@^4.1.0: +ansi-regex@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== ansi-styles@^2.2.1: version "2.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" anymatch@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== dependencies: micromatch "^3.1.4" @@ -1764,7 +1826,7 @@ anymatch@^2.0.0: anymatch@^3.0.1: version "3.0.2" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.0.2.tgz#ddb3a8495d44875423af7b919aace11e91732a41" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.0.2.tgz#ddb3a8495d44875423af7b919aace11e91732a41" integrity sha512-rUe9SxpRQlVg4EM8It7JMNWWYHAirTPpbTuvaSKybb5IejNgWB3PGBBX9rrPKDx2pM/p3Wh+7+ASaWRyyAbxmQ== dependencies: normalize-path "^3.0.0" @@ -1772,64 +1834,69 @@ anymatch@^3.0.1: aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" - resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== +arch@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" + integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg== + are-we-there-yet@~1.1.2: version "1.1.5" - resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== dependencies: delegates "^1.0.0" readable-stream "^2.0.6" +arg@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arg/-/arg-2.0.0.tgz#c06e7ff69ab05b3a4a03ebe0407fac4cba657545" + integrity sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w== + argh@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/argh/-/argh-0.1.4.tgz#3eb4d612973fc6b6dc6ef338f56f759f2ac5c3a6" + resolved "https://registry.yarnpkg.com/argh/-/argh-0.1.4.tgz#3eb4d612973fc6b6dc6ef338f56f759f2ac5c3a6" integrity sha1-PrTWEpc/xrbcbvM49W91nyrFw6Y= argparse@^1.0.7: version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" arity-n@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" + resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U= arr-diff@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= dependencies: arr-flatten "^1.0.1" arr-diff@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== arr-union@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= -array-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= - array-events@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/array-events/-/array-events-0.2.0.tgz#ff42ac53e66f485d6f883234c32252bc2286130e" + resolved "https://registry.yarnpkg.com/array-events/-/array-events-0.2.0.tgz#ff42ac53e66f485d6f883234c32252bc2286130e" integrity sha1-/0KsU+ZvSF1viDI0wyJSvCKGEw4= dependencies: async-arrays "*" @@ -1837,17 +1904,17 @@ array-events@^0.2.0: array-find-index@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= array-sort@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" + resolved "https://registry.yarnpkg.com/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== dependencies: default-compare "^1.0.0" @@ -1856,39 +1923,39 @@ array-sort@^1.0.0: array-union@^1.0.1, array-union@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= dependencies: array-uniq "^1.0.1" array-uniq@^1.0.1: version "1.0.3" - resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= array-unique@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= array-unique@^0.3.2: version "0.3.2" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= arraybuffer.slice@~0.0.7: version "0.0.7" - resolved "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== asap@^2.0.3: version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= asn1.js@^4.0.0: version "4.10.1" - resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== dependencies: bn.js "^4.0.0" @@ -1897,26 +1964,26 @@ asn1.js@^4.0.0: asn1@~0.2.3: version "0.2.4" - resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== dependencies: safer-buffer "~2.1.0" assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= assert@1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= dependencies: util "0.10.3" assert@^1.1.1: version "1.5.0" - resolved "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== dependencies: object-assign "^4.1.1" @@ -1924,69 +1991,69 @@ assert@^1.1.1: assertion-error@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== assign-symbols@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= astral-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== async-arrays@*: version "1.0.1" - resolved "https://registry.npmjs.org/async-arrays/-/async-arrays-1.0.1.tgz#347af2b70f2a7a5767a2d5679cc42bbf1c220fd9" + resolved "https://registry.yarnpkg.com/async-arrays/-/async-arrays-1.0.1.tgz#347af2b70f2a7a5767a2d5679cc42bbf1c220fd9" integrity sha1-NHrytw8qeldnotVnnMQrvxwiD9k= dependencies: sift "*" async-each-series@0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" + resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" integrity sha1-dhfBkXQB/Yykooqtzj266Yr+tDI= async-each@^1.0.1, async-each@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-foreach@^0.1.3: version "0.1.3" - resolved "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= async-limiter@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== async@1.5.2, async@^1.5.2: version "1.5.2" - resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= atob-lite@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696" + resolved "https://registry.yarnpkg.com/atob-lite/-/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696" integrity sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY= atob@^2.1.1: version "2.1.2" - resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.5.1: version "9.6.0" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.6.0.tgz#0111c6bde2ad20c6f17995a33fad7cf6854b4c87" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.0.tgz#0111c6bde2ad20c6f17995a33fad7cf6854b4c87" integrity sha512-kuip9YilBqhirhHEGHaBTZKXL//xxGnzvsD0FtBQa6z+A69qZD6s/BAX9VzDF1i9VKDquTJDQaPLSEhOnL6FvQ== dependencies: browserslist "^4.6.1" @@ -1999,38 +2066,25 @@ autoprefixer@^9.5.1: aws-sign2@~0.7.0: version "0.7.0" - resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: version "1.8.0" - resolved "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== axios@0.19.0: version "0.19.0" - resolved "https://registry.npmjs.org/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ== dependencies: follow-redirects "1.5.10" is-buffer "^2.0.2" -babel-jest@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" - integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw== - dependencies: - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/babel__core" "^7.1.0" - babel-plugin-istanbul "^5.1.0" - babel-preset-jest "^24.6.0" - chalk "^2.4.2" - slash "^2.0.0" - babel-loader@^8.0.6: version "8.0.6" - resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw== dependencies: find-cache-dir "^2.0.0" @@ -2038,33 +2092,9 @@ babel-loader@^8.0.6: mkdirp "^0.5.1" pify "^4.0.1" -babel-plugin-istanbul@^5.1.0: - version "5.1.4" - resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba" - integrity sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ== - dependencies: - find-up "^3.0.0" - istanbul-lib-instrument "^3.3.0" - test-exclude "^5.2.3" - -babel-plugin-jest-hoist@^24.6.0: - version "24.6.0" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" - integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== - dependencies: - "@types/babel__traverse" "^7.0.6" - -babel-preset-jest@^24.6.0: - version "24.6.0" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" - integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== - dependencies: - "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^24.6.0" - babel-runtime@^6.22.0, babel-runtime@^6.26.0: version "6.26.0" - resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= dependencies: core-js "^2.4.0" @@ -2072,32 +2102,32 @@ babel-runtime@^6.22.0, babel-runtime@^6.26.0: backo2@1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= balanced-match@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= base64-arraybuffer@0.1.5: version "0.1.5" - resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= base64-js@^1.0.2: version "1.3.0" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== base64id@1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" integrity sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY= base@^0.11.1: version "0.11.2" - resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== dependencies: cache-base "^1.0.1" @@ -2110,53 +2140,53 @@ base@^0.11.1: batch@0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= bcrypt-pbkdf@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= dependencies: tweetnacl "^0.14.3" before-after-hook@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d" + resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d" integrity sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg== better-assert@~1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= dependencies: callsite "1.0.0" big.js@^5.2.2: version "5.2.2" - resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^1.0.0: version "1.13.1" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== binary-extensions@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== bit-mask@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/bit-mask/-/bit-mask-1.0.2.tgz#42f708362119611d6223cd53202c79428bf70b81" + resolved "https://registry.yarnpkg.com/bit-mask/-/bit-mask-1.0.2.tgz#42f708362119611d6223cd53202c79428bf70b81" integrity sha512-UGtq08LSiazxL4zVmBzrhdCWnT4RWx3JhhD/3crhfv8xxjnVHxf/WoVjEstjSUaZeZRP7kZrWNqup1VvUClCaQ== dependencies: array-events "^0.2.0" bl@^1.0.0: version "1.2.2" - resolved "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA== dependencies: readable-stream "^2.3.5" @@ -2164,29 +2194,29 @@ bl@^1.0.0: blob@0.0.5: version "0.0.5" - resolved "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" + resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== block-stream@*: version "0.0.9" - resolved "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= dependencies: inherits "~2.0.0" bluebird@^3.5.1, bluebird@^3.5.5: version "3.5.5" - resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== body-parser@1.19.0: version "1.19.0" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== dependencies: bytes "3.1.0" @@ -2202,17 +2232,17 @@ body-parser@1.19.0: boolbase@^1.0.0, boolbase@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/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= bottleneck@^2.15.3: version "2.19.1" - resolved "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.1.tgz#f7657aed83edff1fa41d438cdbdf3e0931a1d3f0" + resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.1.tgz#f7657aed83edff1fa41d438cdbdf3e0931a1d3f0" integrity sha512-TrdmthuOG5SpYfFQTprSQOtqQUTreAgPkCFfow/aVOnryRRpIwiwfiQmmJUiiHUKgPV7LBNlfGecJ5hCVs30gw== -boxen@^1.2.1: +boxen@1.3.0, boxen@^1.2.1: version "1.3.0" - resolved "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== dependencies: ansi-align "^2.0.0" @@ -2225,7 +2255,7 @@ boxen@^1.2.1: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -2233,7 +2263,7 @@ brace-expansion@^1.1.7: braces@^1.8.2: version "1.8.5" - resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= dependencies: expand-range "^1.8.1" @@ -2242,7 +2272,7 @@ braces@^1.8.2: braces@^2.3.1, braces@^2.3.2: version "2.3.2" - resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== dependencies: arr-flatten "^1.1.0" @@ -2258,36 +2288,24 @@ braces@^2.3.1, braces@^2.3.2: braces@^3.0.1, braces@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" brorand@^1.0.1: version "1.1.0" - resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= -browser-process-hrtime@^0.1.2: - version "0.1.3" - resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== - -browser-resolve@^1.11.3: - version "1.11.3" - resolved "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== - dependencies: - resolve "1.1.7" - browser-stdout@1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== browser-sync-client@^2.26.6: version "2.26.6" - resolved "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.26.6.tgz#e5201d3ace8aee88af17656b7b0c0620b6f8e4ab" + resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.26.6.tgz#e5201d3ace8aee88af17656b7b0c0620b6f8e4ab" integrity sha512-mGrkZdNzttKdf/16I+y+2dTQxoMCIpKbVIMJ/uP8ZpnKu9f9qa/2CYVtLtbjZG8nsM14EwiCrjuFTGBEnT3Gjw== dependencies: etag "1.8.1" @@ -2297,7 +2315,7 @@ browser-sync-client@^2.26.6: browser-sync-ui@^2.26.4: version "2.26.4" - resolved "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz#3772f13c6b93f2d7d333f4be0ca1ec02aae97dba" + resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz#3772f13c6b93f2d7d333f4be0ca1ec02aae97dba" integrity sha512-u20P3EsZoM8Pt+puoi3BU3KlbQAH1lAcV+/O4saF26qokrBqIDotmGonfWwoRbUmdxZkM9MBmA0K39ZTG1h4sA== dependencies: async-each-series "0.1.1" @@ -2309,7 +2327,7 @@ browser-sync-ui@^2.26.4: browser-sync@^2.26.5: version "2.26.7" - resolved "https://registry.npmjs.org/browser-sync/-/browser-sync-2.26.7.tgz#120287716eb405651a76cc74fe851c31350557f9" + resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.26.7.tgz#120287716eb405651a76cc74fe851c31350557f9" integrity sha512-lY3emme0OyvA2ujEMpRmyRy9LY6gHLuTr2/ABxhIm3lADOiRXzP4dgekvnDrQqZ/Ec2Fz19lEjm6kglSG5766w== dependencies: browser-sync-client "^2.26.6" @@ -2345,7 +2363,7 @@ browser-sync@^2.26.5: browserify-aes@^1.0.0, browserify-aes@^1.0.4: version "1.2.0" - resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== dependencies: buffer-xor "^1.0.3" @@ -2357,7 +2375,7 @@ browserify-aes@^1.0.0, browserify-aes@^1.0.4: browserify-cipher@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== dependencies: browserify-aes "^1.0.4" @@ -2366,7 +2384,7 @@ browserify-cipher@^1.0.0: browserify-des@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== dependencies: cipher-base "^1.0.1" @@ -2376,7 +2394,7 @@ browserify-des@^1.0.0: browserify-rsa@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= dependencies: bn.js "^4.1.0" @@ -2384,7 +2402,7 @@ browserify-rsa@^4.0.0: browserify-sign@^4.0.0: version "4.0.4" - resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= dependencies: bn.js "^4.1.1" @@ -2397,14 +2415,14 @@ browserify-sign@^4.0.0: browserify-zlib@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== dependencies: pako "~1.0.5" browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.1, browserslist@^4.6.2: version "4.6.3" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.6.3.tgz#0530cbc6ab0c1f3fc8c819c72377ba55cf647f05" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.3.tgz#0530cbc6ab0c1f3fc8c819c72377ba55cf647f05" integrity sha512-CNBqTCq22RKM8wKJNowcqihHJ4SkI8CGeK7KOR9tPboXUuS5Zk5lQgzzTbs4oxD8x+6HUshZUa2OyNI9lR93bQ== dependencies: caniuse-lite "^1.0.30000975" @@ -2413,34 +2431,27 @@ browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.1, browserslist@^4.6 bs-recipes@1.3.4: version "1.3.4" - resolved "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" + resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" integrity sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU= bs-snippet-injector@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz#61b5393f11f52559ed120693100343b6edb04dd5" + resolved "https://registry.yarnpkg.com/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz#61b5393f11f52559ed120693100343b6edb04dd5" integrity sha1-YbU5PxH1JVntEgaTEANDtu2wTdU= -bser@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" - integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== - dependencies: - node-int64 "^0.4.0" - btoa-lite@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" + resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc= buffer-alloc-unsafe@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== buffer-alloc@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== dependencies: buffer-alloc-unsafe "^1.1.0" @@ -2448,22 +2459,22 @@ buffer-alloc@^1.2.0: buffer-fill@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= buffer-from@^1.0.0: version "1.1.1" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== buffer-xor@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= buffer@^4.3.0: version "4.9.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= dependencies: base64-js "^1.0.2" @@ -2472,7 +2483,7 @@ buffer@^4.3.0: buffer@^5.2.1: version "5.2.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== dependencies: base64-js "^1.0.2" @@ -2480,17 +2491,22 @@ buffer@^5.2.1: builtin-status-codes@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + bytes@3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== cacache@^11.3.2: version "11.3.3" - resolved "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc" integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA== dependencies: bluebird "^3.5.5" @@ -2510,7 +2526,7 @@ cacache@^11.3.2: cache-base@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== dependencies: collection-visit "^1.0.0" @@ -2525,7 +2541,7 @@ cache-base@^1.0.1: cacheable-request@^6.0.0: version "6.1.0" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== dependencies: clone-response "^1.0.2" @@ -2538,41 +2554,41 @@ cacheable-request@^6.0.0: call-me-maybe@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= caller-callsite@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= dependencies: callsites "^2.0.0" caller-path@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= dependencies: caller-callsite "^2.0.0" callsite@1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= callsites@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@3.0.x, camel-case@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= dependencies: no-case "^2.2.0" @@ -2580,7 +2596,7 @@ camel-case@3.0.x, camel-case@^3.0.0: camelcase-keys@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= dependencies: camelcase "^2.0.0" @@ -2588,37 +2604,37 @@ camelcase-keys@^2.0.0: camelcase@5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== camelcase@^2.0.0, camelcase@^2.0.1: version "2.1.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= camelcase@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= camelcase@^5.0.0, camelcase@^5.2.0, camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelify@0.0.2: version "0.0.2" - resolved "https://registry.npmjs.org/camelify/-/camelify-0.0.2.tgz#e143472ab6ef25b894a4e85c354c9977ab1f1e15" + resolved "https://registry.yarnpkg.com/camelify/-/camelify-0.0.2.tgz#e143472ab6ef25b894a4e85c354c9977ab1f1e15" integrity sha1-4UNHKrbvJbiUpOhcNUyZd6sfHhU= caniuse-api@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== dependencies: browserslist "^4.0.0" @@ -2627,30 +2643,23 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000971, caniuse-lite@^1.0.30000975: - version "1.0.30000977" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000977.tgz#7da2ca14cae2fddb368c05c57ab4a529afd658ff" - integrity sha512-RTXL32vdfAc2g9aoDL6vnBzbOO/3sM+T+YX4m7W9iFZnl3qIz7WYoZZpcZpALud8xq4+N56rnruX/NQy9HQu6A== - -capture-exit@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - dependencies: - rsvp "^4.8.4" + version "1.0.30000978" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000978.tgz#1e3346c27fc46bce9ac1ccd77863153a263dde56" + integrity sha512-H6gK6kxUzG6oAwg/Jal279z8pHw0BzrpZfwo/CA9FFm/vA0l8IhDfkZtepyJNE2Y4V6Dp3P3ubz6czby1/Mgsw== capture-stack-trace@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== caseless@~0.12.0: version "0.12.0" - resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= cdocparser@^0.13.0: version "0.13.0" - resolved "https://registry.npmjs.org/cdocparser/-/cdocparser-0.13.0.tgz#1ba98a1e1e1668e2bfb35d41761e9e4645d731ba" + resolved "https://registry.yarnpkg.com/cdocparser/-/cdocparser-0.13.0.tgz#1ba98a1e1e1668e2bfb35d41761e9e4645d731ba" integrity sha1-G6mKHh4WaOK/s11Bdh6eRkXXMbo= dependencies: escape-string-regexp "^1.0.2" @@ -2659,7 +2668,7 @@ cdocparser@^0.13.0: chai-fs@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/chai-fs/-/chai-fs-2.0.0.tgz#35ae039fbbb0710f5122aae17faba1e8f41107c6" + resolved "https://registry.yarnpkg.com/chai-fs/-/chai-fs-2.0.0.tgz#35ae039fbbb0710f5122aae17faba1e8f41107c6" integrity sha1-Na4Dn7uwcQ9RIqrhf6uh6PQRB8Y= dependencies: bit-mask "^1.0.1" @@ -2667,7 +2676,7 @@ chai-fs@^2.0.0: chai@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" + resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== dependencies: assertion-error "^1.1.0" @@ -2677,9 +2686,18 @@ chai@^4.2.0: pathval "^1.1.0" type-detect "^4.0.5" +chalk@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" + integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.0, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -2688,7 +2706,7 @@ chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4. chalk@^1.1.1: version "1.1.3" - resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= dependencies: ansi-styles "^2.2.1" @@ -2699,7 +2717,7 @@ chalk@^1.1.1: change-case@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e" integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw== dependencies: camel-case "^3.0.0" @@ -2723,17 +2741,17 @@ change-case@^3.1.0: chardet@^0.7.0: version "0.7.0" - resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== check-error@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= check-links@^1.1.7: version "1.1.7" - resolved "https://registry.npmjs.org/check-links/-/check-links-1.1.7.tgz#35d1d39b6a11bfd23bad74848a507e143743f7f9" + resolved "https://registry.yarnpkg.com/check-links/-/check-links-1.1.7.tgz#35d1d39b6a11bfd23bad74848a507e143743f7f9" integrity sha512-BlewZuP+EGGbEXhnNXPR2QSVzIL4p4w2jyeB/GGFFL/NWGSOVStrFMdq0fyP0t9wEeOxpoQO2HoIScOW+E8/xQ== dependencies: got "^9.6.0" @@ -2743,7 +2761,7 @@ check-links@^1.1.7: cheerio@^1.0.0-rc.3: version "1.0.0-rc.3" - resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== dependencies: css-select "~1.2.0" @@ -2755,7 +2773,7 @@ cheerio@^1.0.0-rc.3: chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: version "2.1.6" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== dependencies: anymatch "^2.0.0" @@ -2774,7 +2792,7 @@ chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: chokidar@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.0.1.tgz#98fe9aa476c55d9aea7841d6325ffdb30e95b40c" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.0.1.tgz#98fe9aa476c55d9aea7841d6325ffdb30e95b40c" integrity sha512-2ww34sJWehnbpV0Q4k4V5Hh7juo7po6z7LUWkcIQnSGN1lHOL8GGtLtfwabKvLFQw/hbSUQ0u6V7OgGYgBzlkQ== dependencies: anymatch "^3.0.1" @@ -2790,34 +2808,29 @@ chokidar@^3.0.0: chownr@^1.0.1, chownr@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== chroma-js@^1.2.2: version "1.4.1" - resolved "https://registry.npmjs.org/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" + resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" integrity sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ== chrome-trace-event@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== dependencies: tslib "^1.9.0" ci-info@^1.5.0: version "1.6.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== dependencies: inherits "^2.0.1" @@ -2825,14 +2838,14 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: class-list@~0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/class-list/-/class-list-0.1.1.tgz#9b9745192c4179b5da0a0d7633658e3c70d796cb" + resolved "https://registry.yarnpkg.com/class-list/-/class-list-0.1.1.tgz#9b9745192c4179b5da0a0d7633658e3c70d796cb" integrity sha1-m5dFGSxBebXaCg12M2WOPHDXlss= dependencies: indexof "0.0.1" class-utils@^0.3.5: version "0.3.6" - resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== dependencies: arr-union "^3.1.0" @@ -2840,14 +2853,14 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" -classnames@^2.2.6: +classnames@^2.2.5, classnames@^2.2.6: version "2.2.6" - resolved "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== clean-css-loader@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/clean-css-loader/-/clean-css-loader-2.0.0.tgz#8d34aaa45767a2166963e7e797d74faa239d70ff" + resolved "https://registry.yarnpkg.com/clean-css-loader/-/clean-css-loader-2.0.0.tgz#8d34aaa45767a2166963e7e797d74faa239d70ff" integrity sha512-wULJG7dHXvWYRg+9cNNExv07VWQhyTdnmL3mOlsN14C5SeqLw8Qu/2vAlq/p35oi1HvkttiSiEuUe0fDXsV6Fg== dependencies: clean-css "^4.2.1" @@ -2855,36 +2868,53 @@ clean-css-loader@^2.0.0: clean-css@4.2.x, clean-css@^4.2.1: version "4.2.1" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== dependencies: source-map "~0.6.0" cli-boxes@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= cli-cursor@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= dependencies: restore-cursor "^2.0.0" cli-spinners@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.1.0.tgz#22c34b4d51f573240885b201efda4e4ec9fff3c7" - integrity sha512-8B00fJOEh1HPrx4fo5eW16XmE1PcL1tGpGrxy63CXGP9nHdPBN63X75hA1zhvQuhVztJWLqV58Roj2qlNM7cAA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77" + integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ== cli-width@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= +clipboard@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d" + integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ== + dependencies: + good-listener "^1.2.2" + select "^1.1.2" + tiny-emitter "^2.0.0" + +clipboardy@1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef" + integrity sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA== + dependencies: + arch "^2.1.0" + execa "^0.8.0" + cliui@^3.0.3, cliui@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= dependencies: string-width "^1.0.1" @@ -2893,7 +2923,7 @@ cliui@^3.0.3, cliui@^3.2.0: cliui@^4.0.0: version "4.1.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== dependencies: string-width "^2.1.1" @@ -2902,7 +2932,7 @@ cliui@^4.0.0: cliui@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== dependencies: string-width "^3.1.0" @@ -2911,7 +2941,7 @@ cliui@^5.0.0: clone-deep@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ== dependencies: for-own "^1.0.0" @@ -2921,39 +2951,34 @@ clone-deep@^2.0.1: clone-response@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= dependencies: mimic-response "^1.0.0" clone-stats@^0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= clone@2.x, clone@^2.1.1: version "2.1.2" - resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= clone@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" + resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" integrity sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8= clone@^1.0.0, clone@^1.0.2: version "1.0.4" - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= -co@^4.6.0: - version "4.6.0" - resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - coa@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== dependencies: "@types/q" "^1.5.1" @@ -2962,12 +2987,12 @@ coa@^2.0.2: code-point-at@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= collection-visit@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= dependencies: map-visit "^1.0.0" @@ -2975,24 +3000,24 @@ collection-visit@^1.0.0: color-convert@^1.9.0, color-convert@^1.9.1: version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-name@1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= color-name@^1.0.0: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.5.2: version "1.5.3" - resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== dependencies: color-name "^1.0.0" @@ -3000,7 +3025,7 @@ color-string@^1.5.2: color@^3.0.0, color@^3.1.1: version "3.1.2" - resolved "https://registry.npmjs.org/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== dependencies: color-convert "^1.9.1" @@ -3008,76 +3033,96 @@ color@^3.0.0, color@^3.1.1: colors@~0.6.0-1: version "0.6.2" - resolved "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" + resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" integrity sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w= combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" commander@2.17.x: version "2.17.1" - resolved "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== commander@^2.19.0, commander@^2.2.0, commander@^2.20.0, commander@^2.8.1, commander@~2.20.0: version "2.20.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== commander@~2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" integrity sha1-0SG7roYNmZKj1Re6lvVliOR8Z4E= commander@~2.19.0: version "2.19.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== commondir@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= component-bind@1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= component-emitter@1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= component-emitter@^1.2.1: version "1.3.0" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== component-inherit@0.0.3: version "0.0.3" - resolved "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= compose-function@3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" + resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8= dependencies: arity-n "^1.0.4" +compressible@~2.0.14: + version "2.0.17" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" + integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + dependencies: + mime-db ">= 1.40.0 < 2" + +compression@1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db" + integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.14" + debug "2.6.9" + on-headers "~1.0.1" + safe-buffer "5.1.2" + vary "~1.1.2" + concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.6.2: version "1.6.2" - resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== dependencies: buffer-from "^1.0.0" @@ -3087,7 +3132,7 @@ concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.6.2: configstore@^3.0.0: version "3.1.2" - resolved "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== dependencies: dot-prop "^4.1.0" @@ -3099,12 +3144,12 @@ configstore@^3.0.0: connect-history-api-fallback@^1: version "1.6.0" - resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== connect@3.6.6: version "3.6.6" - resolved "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" integrity sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ= dependencies: debug "2.6.9" @@ -3114,19 +3159,19 @@ connect@3.6.6: console-browserify@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= dependencies: date-now "^0.1.4" console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= constant-case@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46" integrity sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY= dependencies: snake-case "^2.1.0" @@ -3134,56 +3179,61 @@ constant-case@^2.0.0: constants-browserify@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= + content-disposition@0.5.3: version "0.5.3" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== dependencies: safe-buffer "5.1.2" content-type@~1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== convert-hrtime@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz#62c7593f5809ca10be8da858a6d2f702bcda00aa" + resolved "https://registry.yarnpkg.com/convert-hrtime/-/convert-hrtime-3.0.0.tgz#62c7593f5809ca10be8da858a6d2f702bcda00aa" integrity sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA== -convert-source-map@1.6.0, convert-source-map@^1.1.0, convert-source-map@^1.1.1, convert-source-map@^1.4.0: +convert-source-map@1.6.0, convert-source-map@^1.1.0, convert-source-map@^1.1.1: version "1.6.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== dependencies: safe-buffer "~5.1.1" convert-source-map@^0.3.3: version "0.3.5" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= cookie@0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= cookie@0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== copy-concurrently@^1.0.0: version "1.0.5" - resolved "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== dependencies: aproba "^1.1.1" @@ -3195,12 +3245,12 @@ copy-concurrently@^1.0.0: copy-descriptor@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= copy-webpack-plugin@^5.0.3: version "5.0.3" - resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.0.3.tgz#2179e3c8fd69f13afe74da338896f1f01a875b5c" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.0.3.tgz#2179e3c8fd69f13afe74da338896f1f01a875b5c" integrity sha512-PlZRs9CUMnAVylZq+vg2Juew662jWtwOXOqH4lbQD9ZFhRG9R7tVStOgHt21CBGVq7k5yIJaz8TXDLSjV+Lj8Q== dependencies: cacache "^11.3.2" @@ -3218,7 +3268,7 @@ copy-webpack-plugin@^5.0.3: core-js-compat@^3.1.1: version "3.1.4" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" integrity sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg== dependencies: browserslist "^4.6.2" @@ -3227,27 +3277,27 @@ core-js-compat@^3.1.1: core-js-pure@3.1.4: version "3.1.4" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" integrity sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA== core-js@^2.4.0: version "2.6.9" - resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== core-js@^3.1.2: version "3.1.4" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.1.4.tgz#3a2837fc48e582e1ae25907afcd6cf03b0cc7a07" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.1.4.tgz#3a2837fc48e582e1ae25907afcd6cf03b0cc7a07" integrity sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: version "5.2.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== dependencies: import-fresh "^2.0.0" @@ -3257,7 +3307,7 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: create-ecdh@^4.0.0: version "4.0.3" - resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== dependencies: bn.js "^4.1.0" @@ -3265,14 +3315,14 @@ create-ecdh@^4.0.0: create-error-class@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= dependencies: capture-stack-trace "^1.0.0" create-hash@^1.1.0, create-hash@^1.1.2: version "1.2.0" - resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== dependencies: cipher-base "^1.0.1" @@ -3283,7 +3333,7 @@ create-hash@^1.1.0, create-hash@^1.1.2: create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: version "1.1.7" - resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== dependencies: cipher-base "^1.0.3" @@ -3295,7 +3345,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: nice-try "^1.0.4" @@ -3306,7 +3356,7 @@ cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: cross-spawn@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI= dependencies: lru-cache "^4.0.1" @@ -3314,7 +3364,7 @@ cross-spawn@^3.0.0: cross-spawn@^5.0.1: version "5.1.0" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= dependencies: lru-cache "^4.0.1" @@ -3323,7 +3373,7 @@ cross-spawn@^5.0.1: crypto-browserify@^3.11.0: version "3.12.0" - resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== dependencies: browserify-cipher "^1.0.0" @@ -3340,17 +3390,17 @@ crypto-browserify@^3.11.0: crypto-random-string@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= css-color-names@0.0.4, css-color-names@^0.0.4: version "0.0.4" - resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= css-declaration-sorter@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== dependencies: postcss "^7.0.1" @@ -3358,7 +3408,7 @@ css-declaration-sorter@^4.0.1: css-hot-loader@^1.4.4: version "1.4.4" - resolved "https://registry.npmjs.org/css-hot-loader/-/css-hot-loader-1.4.4.tgz#ae784932cd8b7d092f7f15702af08b3ec9436052" + resolved "https://registry.yarnpkg.com/css-hot-loader/-/css-hot-loader-1.4.4.tgz#ae784932cd8b7d092f7f15702af08b3ec9436052" integrity sha512-J/qXHz+r7FOT92qMIJfxUk0LC9fecQNZVr0MswQ4FOpKLyOCBjofVMfc6R268bh/5ktkTShrweMr0wWqerC92g== dependencies: loader-utils "^1.1.0" @@ -3367,7 +3417,7 @@ css-hot-loader@^1.4.4: css-loader@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w== dependencies: camelcase "^5.2.0" @@ -3384,12 +3434,12 @@ css-loader@^2.1.1: css-select-base-adapter@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== css-select@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== dependencies: boolbase "^1.0.0" @@ -3399,7 +3449,7 @@ css-select@^2.0.0: css-select@~1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= dependencies: boolbase "~1.0.0" @@ -3409,7 +3459,7 @@ css-select@~1.2.0: css-tree@1.0.0-alpha.28: version "1.0.0-alpha.28" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f" integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w== dependencies: mdn-data "~1.1.0" @@ -3417,7 +3467,7 @@ css-tree@1.0.0-alpha.28: css-tree@1.0.0-alpha.29: version "1.0.0-alpha.29" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg== dependencies: mdn-data "~1.1.0" @@ -3425,22 +3475,22 @@ css-tree@1.0.0-alpha.29: css-unit-converter@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" + resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= css-url-regex@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" + resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w= css-what@2.1, css-what@^2.1.2: version "2.1.3" - resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== css@^2.0.0: version "2.2.4" - resolved "https://registry.npmjs.org/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" + resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== dependencies: inherits "^2.0.3" @@ -3450,17 +3500,17 @@ css@^2.0.0: cssesc@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssnano-preset-default@^4.0.7: version "4.0.7" - resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== dependencies: css-declaration-sorter "^4.0.1" @@ -3496,29 +3546,29 @@ cssnano-preset-default@^4.0.7: cssnano-util-get-arguments@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" + resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= cssnano-util-get-match@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" + resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= cssnano-util-raw-cache@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" + resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== dependencies: postcss "^7.0.0" cssnano-util-same-parent@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" + resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== cssnano@^4.1.0, cssnano@^4.1.10: version "4.1.10" - resolved "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== dependencies: cosmiconfig "^5.0.0" @@ -3528,38 +3578,26 @@ cssnano@^4.1.0, cssnano@^4.1.10: csso@^3.5.1: version "3.5.1" - resolved "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" + resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg== dependencies: css-tree "1.0.0-alpha.29" -cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": - version "0.3.6" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" - integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A== - -cssstyle@^1.0.0: - version "1.2.2" - resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077" - integrity sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow== - dependencies: - cssom "0.3.x" - currently-unhandled@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= dependencies: array-find-index "^1.0.1" cyclist@~0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= d@1: version "1.0.1" - resolved "https://registry.npmjs.org/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== dependencies: es5-ext "^0.10.50" @@ -3567,142 +3605,138 @@ d@1: dargs@^4.0.0: version "4.1.0" - resolved "https://registry.npmjs.org/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" + resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= dependencies: number-is-nan "^1.0.0" dashdash@^1.12.0: version "1.14.1" - resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= dependencies: assert-plus "^1.0.0" -data-urls@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" - integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== - dependencies: - abab "^2.0.0" - whatwg-mimetype "^2.2.0" - whatwg-url "^7.0.0" +dasherize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" + integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= date-now@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= debug@2.6.9, debug@^2.2.0, debug@^2.3.3: version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@3.2.6, debug@^3.1.0, debug@^3.2.6: version "3.2.6" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== dependencies: ms "^2.1.1" -debug@4.1.1, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: +debug@4.1.1, debug@^4.0.1, debug@^4.1.0: version "4.1.1" - resolved "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== dependencies: ms "^2.1.1" debug@=3.1.0, debug@~3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== dependencies: ms "2.0.0" decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= decode-uri-component@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= decompress-response@^3.3.0: version "3.3.0" - resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= dependencies: mimic-response "^1.0.0" deep-eql@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== dependencies: type-detect "^4.0.0" deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deep-is@~0.1.3: version "0.1.3" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= deepmerge@3.3.0, deepmerge@^3.2.0: version "3.3.0" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== default-compare@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" + resolved "https://registry.yarnpkg.com/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== dependencies: kind-of "^5.0.2" defaults@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= dependencies: clone "^1.0.2" defer-to-connect@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" integrity sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw== define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" define-property@^0.2.5: version "0.2.5" - resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= dependencies: is-descriptor "^0.1.0" define-property@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= dependencies: is-descriptor "^1.0.0" define-property@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== dependencies: is-descriptor "^1.0.2" @@ -3710,7 +3744,7 @@ define-property@^2.0.2: del@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" + resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== dependencies: "@types/glob" "^7.1.1" @@ -3723,27 +3757,32 @@ del@^4.1.1: delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= +delegate@^3.1.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" + integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== + delegates@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= depd@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= deprecation@^2.0.0: version "2.3.1" - resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" + resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== des.js@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= dependencies: inherits "^2.0.1" @@ -3751,52 +3790,42 @@ des.js@^1.0.0: destroy@~1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= detect-file@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= detect-indent@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= detect-libc@^1.0.2, detect-libc@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= -detect-newline@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" - integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= - dev-ip@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" + resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" integrity sha1-p2o+0YVb56ASu4rBbLgPPADcKPA= diff-match-patch@^1.0.0: version "1.0.4" - resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.4.tgz#6ac4b55237463761c4daf0dc603eb869124744b1" + resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz#6ac4b55237463761c4daf0dc603eb869124744b1" integrity sha512-Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg== -diff-sequences@^24.3.0: - version "24.3.0" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== - diff@3.5.0: version "3.5.0" - resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== diffie-hellman@^5.0.0: version "5.0.3" - resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== dependencies: bn.js "^4.1.0" @@ -3805,33 +3834,33 @@ diffie-hellman@^5.0.0: dir-glob@^2.0.0, dir-glob@^2.2.2: version "2.2.2" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== dependencies: path-type "^3.0.0" docopt@^0.6.1: version "0.6.2" - resolved "https://registry.npmjs.org/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" + resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" integrity sha1-so6eIiDaXsSffqW7JKR3h0Be6xE= doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" document-register-element@^1.13.2: version "1.13.2" - resolved "https://registry.npmjs.org/document-register-element/-/document-register-element-1.13.2.tgz#e1773941f6e39345aefec909cc753e82993b415d" + resolved "https://registry.yarnpkg.com/document-register-element/-/document-register-element-1.13.2.tgz#e1773941f6e39345aefec909cc753e82993b415d" integrity sha512-zFmrflJsehS9r86gNiBdvShz+Iuvg8Xnxq715+mrTuHNBway5c24ldTdVmqKxpD4WQBo1HnSflvSJdPgSBb11A== dependencies: lightercollective "^0.3.0" dom-serializer@0, dom-serializer@~0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== dependencies: domelementtype "^1.3.0" @@ -3839,31 +3868,24 @@ dom-serializer@0, dom-serializer@~0.1.1: domain-browser@^1.1.1: version "1.2.0" - resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== -domexception@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== - dependencies: - webidl-conversions "^4.0.2" - domhandler@^2.3.0: version "2.4.2" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== dependencies: domelementtype "1" domutils@1.5.1: version "1.5.1" - resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= dependencies: dom-serializer "0" @@ -3871,7 +3893,7 @@ domutils@1.5.1: domutils@^1.5.1, domutils@^1.7.0: version "1.7.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== dependencies: dom-serializer "0" @@ -3879,33 +3901,38 @@ domutils@^1.5.1, domutils@^1.7.0: dot-case@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee" integrity sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4= dependencies: no-case "^2.2.0" dot-prop@^4.1.0, dot-prop@^4.1.1: version "4.2.0" - resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== dependencies: is-obj "^1.0.0" +drift-zoom@^1.2.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/drift-zoom/-/drift-zoom-1.3.4.tgz#6edd37147f2ce0c5237d6380b900925290403dd2" + integrity sha512-/XD2GWZb4EMi/32xDG5YpjGPYADygG4UPG/IlqAiOObB7SGfGIsfJipl8owrs7Vk8R/eMMXF07My7lQX/EHCGw== + duplexer2@^0.1.2: version "0.1.4" - resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= dependencies: readable-stream "^2.0.2" duplexer3@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: version "3.7.1" - resolved "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== dependencies: end-of-stream "^1.0.0" @@ -3915,21 +3942,21 @@ duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: easy-extender@^2.3.4: version "2.3.4" - resolved "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz#298789b64f9aaba62169c77a2b3b64b4c9589b8f" + resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.4.tgz#298789b64f9aaba62169c77a2b3b64b4c9589b8f" integrity sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q== dependencies: lodash "^4.17.10" eazy-logger@^3: version "3.0.2" - resolved "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" + resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" integrity sha1-oyWqXlPROiIliJsqxBE7K5Y29Pw= dependencies: tfunk "^3.0.1" ecc-jsbn@~0.1.1: version "0.1.2" - resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= dependencies: jsbn "~0.1.0" @@ -3937,28 +3964,28 @@ ecc-jsbn@~0.1.1: ee-first@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= ejs@^2.6.1: version "2.6.2" - resolved "https://registry.npmjs.org/ejs/-/ejs-2.6.2.tgz#3a32c63d1cd16d11266cd4703b14fec4e74ab4f6" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.2.tgz#3a32c63d1cd16d11266cd4703b14fec4e74ab4f6" integrity sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q== electron-to-chromium@^1.3.164: - version "1.3.173" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.173.tgz#275b9ba235447b95fc3204d32ca2c5a8bf2ca599" - integrity sha512-weH16m8as+4Fy4XJxrn/nFXsIqB7zkxERhvj/5YX2HE4HB8MCu98Wsef4E3mu0krIT27ic0bGsr+TvqYrUn6Qg== + version "1.3.176" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.176.tgz#df54c54386e0f205dc6d1f5582d9e8b0cd30532b" + integrity sha512-hsQ/BH6x2iCvJ7WOIbNTAlsT39vsVGIVoJJ9i6ZkGXUE2LdzWsNv0xJI2uZ5/Hkqv1oTTLxAYjbtGKVJzqYbjA== element-closest@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/element-closest/-/element-closest-2.0.2.tgz#72a740a107453382e28df9ce5dbb5a8df0f966ec" + resolved "https://registry.yarnpkg.com/element-closest/-/element-closest-2.0.2.tgz#72a740a107453382e28df9ce5dbb5a8df0f966ec" integrity sha1-cqdAoQdFM4LijfnOXbtajfD5Zuw= elliptic@^6.0.0: - version "6.4.1" - resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" - integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== + version "6.5.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.0.tgz#2b8ed4c891b7de3200e14412a5b8248c7af505ca" + integrity sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg== dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -3970,34 +3997,34 @@ elliptic@^6.0.0: emoji-regex@^7.0.1: version "7.0.3" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== emojis-list@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= encodeurl@~1.0.1, encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.1" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== dependencies: once "^1.4.0" ends-with@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz#2f9da98d57a50cfda4571ce4339000500f4e6b8a" + resolved "https://registry.yarnpkg.com/ends-with/-/ends-with-0.2.0.tgz#2f9da98d57a50cfda4571ce4339000500f4e6b8a" integrity sha1-L52pjVelDP2kVxzkM5AAUA9Oa4o= engine.io-client@~3.2.0: version "3.2.1" - resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" integrity sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw== dependencies: component-emitter "1.2.1" @@ -4014,7 +4041,7 @@ engine.io-client@~3.2.0: engine.io-client@~3.3.1: version "3.3.2" - resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.3.2.tgz#04e068798d75beda14375a264bb3d742d7bc33aa" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.3.2.tgz#04e068798d75beda14375a264bb3d742d7bc33aa" integrity sha512-y0CPINnhMvPuwtqXfsGuWE8BB66+B6wTtCofQDRecMQPYX3MYUZXFNKDhdrSe3EVjgOu4V3rxdeqN/Tr91IgbQ== dependencies: component-emitter "1.2.1" @@ -4031,7 +4058,7 @@ engine.io-client@~3.3.1: engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: version "2.1.3" - resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6" integrity sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA== dependencies: after "0.8.2" @@ -4042,7 +4069,7 @@ engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: engine.io@~3.2.0: version "3.2.1" - resolved "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz#b60281c35484a70ee0351ea0ebff83ec8c9522a2" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.1.tgz#b60281c35484a70ee0351ea0ebff83ec8c9522a2" integrity sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w== dependencies: accepts "~1.3.4" @@ -4054,7 +4081,7 @@ engine.io@~3.2.0: enhanced-resolve@4.1.0, enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== dependencies: graceful-fs "^4.1.2" @@ -4063,26 +4090,26 @@ enhanced-resolve@4.1.0, enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: entities@^1.1.1, entities@~1.1.1: version "1.1.2" - resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== errno@^0.1.3, errno@~0.1.7: version "0.1.7" - resolved "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== dependencies: prr "~1.0.1" error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-abstract@^1.12.0, es-abstract@^1.5.1: version "1.13.0" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== dependencies: es-to-primitive "^1.2.0" @@ -4094,7 +4121,7 @@ es-abstract@^1.12.0, es-abstract@^1.5.1: es-to-primitive@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== dependencies: is-callable "^1.1.4" @@ -4103,7 +4130,7 @@ es-to-primitive@^1.2.0: es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14: version "0.10.50" - resolved "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.50.tgz#6d0e23a0abdb27018e5ac4fd09b412bc5517a778" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz#6d0e23a0abdb27018e5ac4fd09b412bc5517a778" integrity sha512-KMzZTPBkeQV/JcSQhI5/z6d9VWJ3EnQ194USTUwIYZ2ZbpN8+SGXQKt1h68EX44+qt+Fzr8DO17vnxrw7c3agw== dependencies: es6-iterator "~2.0.3" @@ -4112,12 +4139,12 @@ es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14: es6-denodeify@^0.1.0: version "0.1.5" - resolved "https://registry.npmjs.org/es6-denodeify/-/es6-denodeify-0.1.5.tgz#31d4d5fe9c5503e125460439310e16a2a3f39c1f" + resolved "https://registry.yarnpkg.com/es6-denodeify/-/es6-denodeify-0.1.5.tgz#31d4d5fe9c5503e125460439310e16a2a3f39c1f" integrity sha1-MdTV/pxVA+ElRgQ5MQ4WoqPznB8= es6-iterator@2.0.3, es6-iterator@~2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= dependencies: d "1" @@ -4126,17 +4153,17 @@ es6-iterator@2.0.3, es6-iterator@~2.0.3: es6-promise@^3.0.2: version "3.3.1" - resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" integrity sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM= es6-promise@^4.1.0, es6-promise@^4.2.6: version "4.2.8" - resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== es6-symbol@^3.1.1, es6-symbol@~3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= dependencies: d "1" @@ -4144,29 +4171,17 @@ es6-symbol@^3.1.1, es6-symbol@~3.1.1: escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -escodegen@^1.9.1: - version "1.11.1" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" - integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== - dependencies: - esprima "^3.1.3" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - eslint-loader@^2.1.2: version "2.1.2" - resolved "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.1.2.tgz#453542a1230d6ffac90e4e7cb9cadba9d851be68" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-2.1.2.tgz#453542a1230d6ffac90e4e7cb9cadba9d851be68" integrity sha512-rA9XiXEOilLYPOIInvVH5S/hYfyTPyxag6DZhoQOduM+3TkghAEQ3VcFO8VnX4J4qg/UIBzp72aOf/xvYmpmsg== dependencies: loader-fs-cache "^1.0.0" @@ -4177,7 +4192,7 @@ eslint-loader@^2.1.2: eslint-scope@^4.0.0, eslint-scope@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== dependencies: esrecurse "^4.1.0" @@ -4185,17 +4200,17 @@ eslint-scope@^4.0.0, eslint-scope@^4.0.3: eslint-utils@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== eslint-visitor-keys@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== eslint@^5.16.0: version "5.16.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== dependencies: "@babel/code-frame" "^7.0.0" @@ -4237,78 +4252,73 @@ eslint@^5.16.0: espree@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" + resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== dependencies: acorn "^6.0.7" acorn-jsx "^5.0.0" eslint-visitor-keys "^1.0.0" -esprima@^3.1.3: - version "3.1.3" - resolved "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= - esprima@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== dependencies: estraverse "^4.0.0" esrecurse@^4.1.0: version "4.2.1" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== dependencies: estraverse "^4.1.0" -estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: version "4.2.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= esutils@^2.0.0, esutils@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= etag@1.8.1, etag@^1.8.1, etag@~1.8.1: version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= +ev-emitter@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-1.1.1.tgz#8f18b0ce5c76a5d18017f71c0a795c65b9138f2a" + integrity sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q== + eventemitter3@1.x.x: version "1.2.0" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" integrity sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg= events@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" + resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== dependencies: md5.js "^1.3.4" safe-buffer "^5.1.1" -exec-sh@^0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== - execa@^0.7.0: version "0.7.0" - resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= dependencies: cross-spawn "^5.0.1" @@ -4319,9 +4329,22 @@ execa@^0.7.0: signal-exit "^3.0.0" strip-eof "^1.0.0" +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execa@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: cross-spawn "^6.0.0" @@ -4332,21 +4355,16 @@ execa@^1.0.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - expand-brackets@^0.1.4: version "0.1.5" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= dependencies: is-posix-bracket "^0.1.0" expand-brackets@^2.1.4: version "2.1.4" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= dependencies: debug "^2.3.3" @@ -4359,38 +4377,26 @@ expand-brackets@^2.1.4: expand-range@^1.8.1: version "1.8.2" - resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= dependencies: fill-range "^2.1.0" expand-template@^2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== expand-tilde@^2.0.0, expand-tilde@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= dependencies: homedir-polyfill "^1.0.1" -expect@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== - dependencies: - "@jest/types" "^24.8.0" - ansi-styles "^3.2.0" - jest-get-type "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" - express@^4.17.1: version "4.17.1" - resolved "https://registry.npmjs.org/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== dependencies: accepts "~1.3.7" @@ -4426,14 +4432,14 @@ express@^4.17.1: extend-shallow@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= dependencies: is-extendable "^0.1.0" extend-shallow@^3.0.0, extend-shallow@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= dependencies: assign-symbols "^1.0.0" @@ -4441,17 +4447,17 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: extend@2.*: version "2.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-2.0.2.tgz#1b74985400171b85554894459c978de6ef453ab7" + resolved "https://registry.yarnpkg.com/extend/-/extend-2.0.2.tgz#1b74985400171b85554894459c978de6ef453ab7" integrity sha512-AgFD4VU+lVLP6vjnlNfF7OeInLTyeyckCNPEsuxz1vi786UuK/nk6ynPuhn/h+Ju9++TQyr5EpLRI14fc1QtTQ== extend@^3.0.0, extend@^3.0.2, extend@~3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== extended-emitter@*: version "1.0.3" - resolved "https://registry.npmjs.org/extended-emitter/-/extended-emitter-1.0.3.tgz#ea1014882a9cd29f2e11cc781b1b56fa10d5ab64" + resolved "https://registry.yarnpkg.com/extended-emitter/-/extended-emitter-1.0.3.tgz#ea1014882a9cd29f2e11cc781b1b56fa10d5ab64" integrity sha512-gdaWWszJmr2oq6rKSxPmuclQtEwfzt4JwmGrEqTnE89GQHqZyvPZ/NWj6fBgK3IKufvRyJDnLZviUFPrrJf36Q== dependencies: sift "*" @@ -4459,7 +4465,7 @@ extended-emitter@*: external-editor@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== dependencies: chardet "^0.7.0" @@ -4468,14 +4474,14 @@ external-editor@^3.0.3: extglob@^0.3.1: version "0.3.2" - resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= dependencies: is-extglob "^1.0.0" extglob@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== dependencies: array-unique "^0.3.2" @@ -4489,22 +4495,22 @@ extglob@^2.0.4: extsprintf@1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= extsprintf@^1.2.0: version "1.4.0" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= fast-deep-equal@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= fast-glob@^2.2.6: version "2.2.7" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== dependencies: "@mrmlnc/readdir-enhanced" "^2.2.1" @@ -4516,43 +4522,48 @@ fast-glob@^2.2.6: fast-json-stable-stringify@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= fast-levenshtein@~2.0.4: version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fb-watchman@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" - integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= +fast-url-parser@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" + integrity sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0= dependencies: - bser "^2.0.0" + punycode "^1.3.2" + +"fg-loadcss@>= ^2.1.0", fg-loadcss@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fg-loadcss/-/fg-loadcss-2.1.0.tgz#b3cbdf2ab5ee82a13ddb26340f10e3ac43fe2233" + integrity sha512-HpvR2uRoKvrYAEwimw+k4Fr2NVHYPfld5Lc/f9uy3mKeUTXhS5urL24XA2rqyq5b2i410EXCLir4Uhsb8J1QaQ== figgy-pudding@^3.5.1: version "3.5.1" - resolved "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== figures@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== dependencies: flat-cache "^2.0.1" file-loader@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw== dependencies: loader-utils "^1.0.2" @@ -4560,17 +4571,17 @@ file-loader@^3.0.1: filename-regex@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= filesize@^3.6.1: version "3.6.1" - resolved "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== fill-range@^2.1.0: version "2.2.4" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== dependencies: is-number "^2.1.0" @@ -4581,7 +4592,7 @@ fill-range@^2.1.0: fill-range@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= dependencies: extend-shallow "^2.0.1" @@ -4591,14 +4602,14 @@ fill-range@^4.0.0: fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" finalhandler@1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" integrity sha1-zgtoVbRYU+eRsvzGgARtiCU91/U= dependencies: debug "2.6.9" @@ -4611,7 +4622,7 @@ finalhandler@1.1.0: finalhandler@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== dependencies: debug "2.6.9" @@ -4624,7 +4635,7 @@ finalhandler@~1.1.2: find-cache-dir@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= dependencies: commondir "^1.0.1" @@ -4633,7 +4644,7 @@ find-cache-dir@^0.1.1: find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== dependencies: commondir "^1.0.1" @@ -4642,40 +4653,32 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: find-free-port@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/find-free-port/-/find-free-port-2.0.0.tgz#4b22e5f6579eb1a38c41ac6bcb3efed1b6da9b1b" + resolved "https://registry.yarnpkg.com/find-free-port/-/find-free-port-2.0.0.tgz#4b22e5f6579eb1a38c41ac6bcb3efed1b6da9b1b" integrity sha1-SyLl9leesaOMQaxryz7+0bbamxs= find-index@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" + resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" integrity sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ= find-up@3.0.0, find-up@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: locate-path "^3.0.0" find-up@^1.0.0: version "1.1.2" - resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= dependencies: path-exists "^2.0.0" pinkie-promise "^2.0.0" -find-yarn-workspace-root@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-1.2.1.tgz#40eb8e6e7c2502ddfaa2577c176f221422f860db" - integrity sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q== - dependencies: - fs-extra "^4.0.3" - micromatch "^3.1.4" - findup-sync@3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== dependencies: detect-file "^1.0.0" @@ -4685,7 +4688,7 @@ findup-sync@3.0.0: findup@^0.1.5: version "0.1.5" - resolved "https://registry.npmjs.org/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" + resolved "https://registry.yarnpkg.com/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" integrity sha1-itkpozk7rGJ5V6fl3kYjsGsOLOs= dependencies: colors "~0.6.0-1" @@ -4693,17 +4696,17 @@ findup@^0.1.5: first-chunk-stream@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" + resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= flak@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/flak/-/flak-1.0.0.tgz#6ca271396c6ca2fe3d29193f9f280317bdb0c943" + resolved "https://registry.yarnpkg.com/flak/-/flak-1.0.0.tgz#6ca271396c6ca2fe3d29193f9f280317bdb0c943" integrity sha512-g+EVnZT2Fq+88EJCuJefBylTdOVhlqZeoF/qPhqa+Z3nuJPhglFKDw7Uh1bR3K+gBicuMVRWo9UbDxMAulzsQg== flat-cache@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== dependencies: flatted "^2.0.0" @@ -4712,19 +4715,19 @@ flat-cache@^2.0.1: flat@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" + resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== dependencies: is-buffer "~2.0.3" flatted@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== flush-write-stream@^1.0.0: version "1.1.1" - resolved "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== dependencies: inherits "^2.0.3" @@ -4732,43 +4735,48 @@ flush-write-stream@^1.0.0: follow-redirects@1.5.10: version "1.5.10" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== dependencies: debug "=3.1.0" +fontfaceobserver@^2.0.13: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fontfaceobserver/-/fontfaceobserver-2.1.0.tgz#e2705d293e2c585a6531c2a722905657317a2991" + integrity sha512-ReOsO2F66jUa0jmv2nlM/s1MiutJx/srhAe2+TE8dJCMi02ZZOcCTxTCQFr3Yet+uODUtnr4Mewg+tNQ+4V1Ng== + for-in@^0.1.3: version "0.1.8" - resolved "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= for-in@^1.0.1, for-in@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= for-own@^0.1.4: version "0.1.5" - resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= dependencies: for-in "^1.0.1" for-own@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= dependencies: for-in "^1.0.1" forever-agent@~0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= form-data@~2.3.2: version "2.3.3" - resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== dependencies: asynckit "^0.4.0" @@ -4777,24 +4785,24 @@ form-data@~2.3.2: forwarded@~0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= fragment-cache@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= dependencies: map-cache "^0.2.2" fresh@0.5.2, fresh@^0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= from2@^2.1.0: version "2.3.0" - resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= dependencies: inherits "^2.0.1" @@ -4802,24 +4810,24 @@ from2@^2.1.0: front-matter@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/front-matter/-/front-matter-3.0.2.tgz#2401cd05fcf22bd0de48a104ffb4efb1ff5c8465" + resolved "https://registry.yarnpkg.com/front-matter/-/front-matter-3.0.2.tgz#2401cd05fcf22bd0de48a104ffb4efb1ff5c8465" integrity sha512-iBGZaWyzqgsrPGsqrXZP6N4hp5FzSKDi18nfAoYpgz3qK5sAwFv/ojmn3VS60SOgLvq6CtojNqy0y6ZNz05IzQ== dependencies: js-yaml "^3.13.1" fs-constants@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-copy-file-sync@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/fs-copy-file-sync/-/fs-copy-file-sync-1.1.1.tgz#11bf32c096c10d126e5f6b36d06eece776062918" + resolved "https://registry.yarnpkg.com/fs-copy-file-sync/-/fs-copy-file-sync-1.1.1.tgz#11bf32c096c10d126e5f6b36d06eece776062918" integrity sha512-2QY5eeqVv4m2PfyMiEuy9adxNP+ajf+8AR05cEi+OAzPcOj90hvFImeZhTmKLBgSd9EvG33jsD7ZRxsx9dThkQ== fs-extra@3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" integrity sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE= dependencies: graceful-fs "^4.1.2" @@ -4828,24 +4836,15 @@ fs-extra@3.0.1: fs-extra@^2.0.0: version "2.1.2" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" integrity sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU= dependencies: graceful-fs "^4.1.2" jsonfile "^2.1.0" -fs-extra@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" - integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-extra@^7.0.0, fs-extra@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== dependencies: graceful-fs "^4.1.2" @@ -4854,7 +4853,7 @@ fs-extra@^7.0.0, fs-extra@^7.0.1: fs-extra@^8.0.1: version "8.0.1" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.0.1.tgz#90294081f978b1f182f347a440a209154344285b" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.0.1.tgz#90294081f978b1f182f347a440a209154344285b" integrity sha512-W+XLrggcDzlle47X/XnS7FXrXu9sDo+Ze9zpndeBxdgv88FHLm1HtmkhEwavruS6koanBjp098rUpHs65EmG7A== dependencies: graceful-fs "^4.1.2" @@ -4863,19 +4862,19 @@ fs-extra@^8.0.1: fs-minipass@^1.2.5: version "1.2.6" - resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== dependencies: minipass "^2.2.1" fs-readdir-recursive@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== fs-write-stream-atomic@^1.0.8: version "1.0.10" - resolved "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= dependencies: graceful-fs "^4.1.2" @@ -4885,12 +4884,12 @@ fs-write-stream-atomic@^1.0.8: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^1.2.7: version "1.2.9" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== dependencies: nan "^2.12.1" @@ -4898,12 +4897,12 @@ fsevents@^1.2.7: fsevents@^2.0.6: version "2.0.7" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a" integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ== fstream@^1.0.0, fstream@^1.0.12: version "1.0.12" - resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== dependencies: graceful-fs "^4.1.2" @@ -4913,17 +4912,17 @@ fstream@^1.0.0, fstream@^1.0.12: function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== functional-red-black-tree@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= gauge@~2.7.3: version "2.7.4" - resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= dependencies: aproba "^1.0.3" @@ -4937,75 +4936,75 @@ gauge@~2.7.3: gaze@^1.0.0: version "1.1.3" - resolved "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== dependencies: globule "^1.0.0" get-caller-file@^1.0.1: version "1.0.3" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== get-caller-file@^2.0.1: version "2.0.5" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-func-name@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= get-own-property-symbols@^0.9.2: version "0.9.2" - resolved "https://registry.npmjs.org/get-own-property-symbols/-/get-own-property-symbols-0.9.2.tgz#64e3b56e7dc11ac3f8cb1eb6ba6fb39a53ad5954" + resolved "https://registry.yarnpkg.com/get-own-property-symbols/-/get-own-property-symbols-0.9.2.tgz#64e3b56e7dc11ac3f8cb1eb6ba6fb39a53ad5954" integrity sha1-ZOO1bn3BGsP4yx62um+zmlOtWVQ= get-stdin@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= get-stream@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= get-stream@^4.0.0, get-stream@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== dependencies: pump "^3.0.0" get-stream@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== dependencies: pump "^3.0.0" get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= getpass@^0.1.1: version "0.1.7" - resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= dependencies: assert-plus "^1.0.0" github-from-package@0.0.0: version "0.0.0" - resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= glob-base@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= dependencies: glob-parent "^2.0.0" @@ -5013,14 +5012,14 @@ glob-base@^0.3.0: glob-parent@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= dependencies: is-glob "^2.0.0" glob-parent@^3.0.0, glob-parent@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= dependencies: is-glob "^3.1.0" @@ -5028,14 +5027,14 @@ glob-parent@^3.0.0, glob-parent@^3.1.0: glob-parent@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954" integrity sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg== dependencies: is-glob "^4.0.1" glob-stream@^5.3.2: version "5.3.5" - resolved "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" + resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" integrity sha1-pVZlqajM3EGRWofHAeMtTgFvrSI= dependencies: extend "^3.0.0" @@ -5049,19 +5048,19 @@ glob-stream@^5.3.2: glob-to-regexp@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= glob2base@0.0.12: version "0.0.12" - resolved "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" + resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" integrity sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY= dependencies: find-index "^0.1.1" glob@7.1.3: version "7.1.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== dependencies: fs.realpath "^1.0.0" @@ -5073,7 +5072,7 @@ glob@7.1.3: glob@^5.0.3: version "5.0.15" - resolved "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E= dependencies: inflight "^1.0.4" @@ -5084,7 +5083,7 @@ glob@^5.0.3: glob@^6.0.1: version "6.0.4" - resolved "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" + resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" integrity sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI= dependencies: inflight "^1.0.4" @@ -5093,9 +5092,9 @@ glob@^6.0.1: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1: +glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1: version "7.1.4" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" @@ -5107,21 +5106,21 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, gl global-dirs@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= dependencies: ini "^1.3.4" global-modules@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== dependencies: global-prefix "^3.0.0" global-modules@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== dependencies: global-prefix "^1.0.1" @@ -5130,7 +5129,7 @@ global-modules@^1.0.0: global-prefix@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= dependencies: expand-tilde "^2.0.2" @@ -5141,7 +5140,7 @@ global-prefix@^1.0.1: global-prefix@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== dependencies: ini "^1.3.5" @@ -5150,12 +5149,12 @@ global-prefix@^3.0.0: globals@^11.1.0, globals@^11.7.0: version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globby@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= dependencies: array-union "^1.0.1" @@ -5166,7 +5165,7 @@ globby@^6.1.0: globby@^7.1.1: version "7.1.1" - resolved "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" + resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= dependencies: array-union "^1.0.1" @@ -5178,7 +5177,7 @@ globby@^7.1.1: globby@^9.2.0: version "9.2.0" - resolved "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" + resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== dependencies: "@types/glob" "^7.1.1" @@ -5192,16 +5191,23 @@ globby@^9.2.0: globule@^1.0.0: version "1.2.1" - resolved "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" integrity sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ== dependencies: glob "~7.1.1" lodash "~4.17.10" minimatch "~3.0.2" +good-listener@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" + integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= + dependencies: + delegate "^3.1.2" + got@^6.7.1: version "6.7.1" - resolved "https://registry.npmjs.org/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= dependencies: create-error-class "^3.0.0" @@ -5218,7 +5224,7 @@ got@^6.7.1: got@^9.6.0: version "9.6.0" - resolved "https://registry.npmjs.org/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== dependencies: "@sindresorhus/is" "^0.14.0" @@ -5234,23 +5240,23 @@ got@^9.6.0: url-parse-lax "^3.0.0" graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6: - version "4.1.15" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" - integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" + integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== growl@1.10.5: version "1.10.5" - resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== growly@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= gulp-sourcemaps@1.6.0: version "1.6.0" - resolved "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" + resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" integrity sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw= dependencies: convert-source-map "^1.1.1" @@ -5261,28 +5267,24 @@ gulp-sourcemaps@1.6.0: gumshoejs@^3.5.0: version "3.5.0" - resolved "https://registry.npmjs.org/gumshoejs/-/gumshoejs-3.5.0.tgz#407f468e760d3817994f8afc107defa5fd4a7d0a" + resolved "https://registry.yarnpkg.com/gumshoejs/-/gumshoejs-3.5.0.tgz#407f468e760d3817994f8afc107defa5fd4a7d0a" integrity sha1-QH9GjnYNOBeZT4r8EH3vpf1KfQo= -handlebars@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" - integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== +handorgel@^0.4.5: + version "0.4.9" + resolved "https://registry.yarnpkg.com/handorgel/-/handorgel-0.4.9.tgz#3a78737e35ddd01fecabb26a8fef9a19161707a1" + integrity sha512-IoM4GKc/6tBe2l9ribiNtzDOuRmJjl4udgO8xXxB1dOjzot1CRciPMeI8g+/Im7D4YkExTi5nXrNw64NbmjCQA== dependencies: - neo-async "^2.6.0" - optimist "^0.6.1" - source-map "^0.6.1" - optionalDependencies: - uglify-js "^3.1.4" + ev-emitter "^1.1.1" har-schema@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= har-validator@~5.1.0: version "5.1.3" - resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== dependencies: ajv "^6.5.5" @@ -5290,7 +5292,7 @@ har-validator@~5.1.0: hard-source-webpack-plugin-patch@^0.13.3: version "0.13.3" - resolved "https://registry.npmjs.org/hard-source-webpack-plugin-patch/-/hard-source-webpack-plugin-patch-0.13.3.tgz#3766df6d64ffd49dda7a48bbf272afe86acc0f04" + resolved "https://registry.yarnpkg.com/hard-source-webpack-plugin-patch/-/hard-source-webpack-plugin-patch-0.13.3.tgz#3766df6d64ffd49dda7a48bbf272afe86acc0f04" integrity sha512-0WTSv5JsSfZxjE3fHoRiGxf++PDoxP5O2nHIxZD/mZe9hmbrmdfplNAgwTVYrqTtV9qXc6Lq5farPPJAD+qHQQ== dependencies: chalk "^2.4.1" @@ -5309,41 +5311,41 @@ hard-source-webpack-plugin-patch@^0.13.3: has-ansi@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= dependencies: ansi-regex "^2.0.0" has-binary2@~1.0.2: version "1.0.3" - resolved "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" + resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== dependencies: isarray "2.0.1" has-cors@1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= has-symbols@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= has-unicode@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= has-value@^0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= dependencies: get-value "^2.0.3" @@ -5352,7 +5354,7 @@ has-value@^0.3.1: has-value@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= dependencies: get-value "^2.0.6" @@ -5361,12 +5363,12 @@ has-value@^1.0.0: has-values@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= has-values@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= dependencies: is-number "^3.0.0" @@ -5374,14 +5376,14 @@ has-values@^1.0.0: has@^1.0.0, has@^1.0.1, has@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" hash-base@^3.0.0: version "3.0.4" - resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= dependencies: inherits "^2.0.1" @@ -5389,7 +5391,7 @@ hash-base@^3.0.0: hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" - resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== dependencies: inherits "^2.0.3" @@ -5397,12 +5399,12 @@ hash.js@^1.0.0, hash.js@^1.0.3: he@1.2.0, he@1.2.x: version "1.2.0" - resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== header-case@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d" integrity sha1-lTWXMZfBRLCWE81l0xfvGZY70C0= dependencies: no-case "^2.2.0" @@ -5410,17 +5412,17 @@ header-case@^1.0.0: hex-color-regex@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" + resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== hex-to-rgba@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/hex-to-rgba/-/hex-to-rgba-1.0.2.tgz#1273dc05a499ddc955b80220ae04dcf542decfec" + resolved "https://registry.yarnpkg.com/hex-to-rgba/-/hex-to-rgba-1.0.2.tgz#1273dc05a499ddc955b80220ae04dcf542decfec" integrity sha512-fL+4NFccs86iOuDnFl1Mhyn471qTPAkpE7k39+JYGPMB3+S9LoUnauQI2nz6BUb3DpYQCx8RqENbaf8IFdKYOg== hmac-drbg@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= dependencies: hash.js "^1.0.3" @@ -5429,53 +5431,46 @@ hmac-drbg@^1.0.0: homedir-polyfill@^1.0.1: version "1.0.3" - resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== dependencies: parse-passwd "^1.0.0" hosted-git-info@^2.1.4: version "2.7.1" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== hsl-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" + resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= hsla-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" + resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= html-comment-regex@^1.1.0: version "1.1.2" - resolved "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== html-element@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/html-element/-/html-element-2.3.0.tgz#0e5c1d979223b0febfbcacdeb56c75d1e9297de9" + resolved "https://registry.yarnpkg.com/html-element/-/html-element-2.3.0.tgz#0e5c1d979223b0febfbcacdeb56c75d1e9297de9" integrity sha512-axsAv89JAxk/zSSOn+jK5dJ1eAUVSkienyIcruAe/kD5skC/E/HxjFfCfNYv8+A9m7BXR9kfL4ZD1ZobUfUWzQ== dependencies: class-list "~0.1.1" -html-encoding-sniffer@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== - dependencies: - whatwg-encoding "^1.0.1" - html-entities@^1.2.0: version "1.2.1" - resolved "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= html-minifier@^3.5.21: version "3.5.21" - resolved "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== dependencies: camel-case "3.0.x" @@ -5488,7 +5483,7 @@ html-minifier@^3.5.21: htmlparser2@^3.9.1: version "3.10.1" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== dependencies: domelementtype "^1.3.1" @@ -5500,12 +5495,12 @@ htmlparser2@^3.9.1: http-cache-semantics@^4.0.0: version "4.0.3" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#495704773277eeef6e43f9ab2c2c7d259dda25c5" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#495704773277eeef6e43f9ab2c2c7d259dda25c5" integrity sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew== http-errors@1.7.2: version "1.7.2" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== dependencies: depd "~1.1.2" @@ -5514,19 +5509,9 @@ http-errors@1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-errors@~1.7.2: +http-errors@1.7.3, http-errors@~1.7.2: version "1.7.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== dependencies: depd "~1.1.2" @@ -5535,9 +5520,19 @@ http-errors@~1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + http-proxy@1.15.2: version "1.15.2" - resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" integrity sha1-ZC/cr/5S00SNK9o7AHnpQJBk2jE= dependencies: eventemitter3 "1.x.x" @@ -5545,7 +5540,7 @@ http-proxy@1.15.2: http-signature@~1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= dependencies: assert-plus "^1.0.0" @@ -5554,77 +5549,77 @@ http-signature@~1.2.0: https-browserify@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" icss-replace-symbols@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= icss-utils@^4.1.0: version "4.1.1" - resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== dependencies: postcss "^7.0.14" ieee754@^1.1.4: version "1.1.13" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== iferr@^0.1.5: version "0.1.5" - resolved "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= ignore-walk@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== dependencies: minimatch "^3.0.4" ignore@^3.3.5: version "3.3.10" - resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== ignore@^4.0.3, ignore@^4.0.6: version "4.0.6" - resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== immutability-helper@^2.7.1: version "2.9.1" - resolved "https://registry.npmjs.org/immutability-helper/-/immutability-helper-2.9.1.tgz#71c423ba387e67b6c6ceba0650572f2a2a6727df" + resolved "https://registry.yarnpkg.com/immutability-helper/-/immutability-helper-2.9.1.tgz#71c423ba387e67b6c6ceba0650572f2a2a6727df" integrity sha512-r/RmRG8xO06s/k+PIaif2r5rGc3j4Yhc01jSBfwPCXDLYZwp/yxralI37Df1mwmuzcCsen/E/ITKcTEvc1PQmQ== dependencies: invariant "^2.2.0" immutable@^3: version "3.8.2" - resolved "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM= import-cwd@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" + resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= dependencies: import-from "^2.1.0" import-fresh@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= dependencies: caller-path "^2.0.0" @@ -5632,7 +5627,7 @@ import-fresh@^2.0.0: import-fresh@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== dependencies: parent-module "^1.0.0" @@ -5640,19 +5635,19 @@ import-fresh@^3.0.0: import-from@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" integrity sha1-M1238qev/VOqpHHUuAId7ja387E= dependencies: resolve-from "^3.0.0" import-lazy@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= -import-local@2.0.0, import-local@^2.0.0: +import-local@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== dependencies: pkg-dir "^3.0.0" @@ -5660,17 +5655,17 @@ import-local@2.0.0, import-local@^2.0.0: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= in-publish@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" integrity sha1-4g/146KvwmkDILbcVSaCqcf631E= incache@^7.2.1: version "7.2.1" - resolved "https://registry.npmjs.org/incache/-/incache-7.2.1.tgz#c0419272c4182269dfc4e7ab39187f6636135838" + resolved "https://registry.yarnpkg.com/incache/-/incache-7.2.1.tgz#c0419272c4182269dfc4e7ab39187f6636135838" integrity sha512-7GM4c4+wDCOvhi7IVAV0ZM+Wouxdivh2uAwgPo362Qq+giOIcwyCnNAXRGVwDcLX5LJt2Ore9SoShhZDTdrygg== dependencies: clone "^2.1.1" @@ -5681,24 +5676,24 @@ incache@^7.2.1: indent-string@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= dependencies: repeating "^2.0.0" indexes-of@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= indexof@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" @@ -5706,27 +5701,27 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inherits@2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= inherits@2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== inquirer@^6.2.2: version "6.4.1" - resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.4.1.tgz#7bd9e5ab0567cd23b41b0180b68e0cfa82fc3c0b" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.4.1.tgz#7bd9e5ab0567cd23b41b0180b68e0cfa82fc3c0b" integrity sha512-/Jw+qPZx4EDYsaT6uz7F4GJRNFMRdKNeUZw3ZnKV8lyuUgz/YWRCSUAJMZSVhSq4Ec0R2oYnyi6b3d4JXcL5Nw== dependencies: ansi-escapes "^3.2.0" @@ -5745,106 +5740,99 @@ inquirer@^6.2.2: interpret@1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== -invariant@^2.2.0, invariant@^2.2.2, invariant@^2.2.4: +invariant@^2.2.0, invariant@^2.2.2: version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" invert-kv@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= invert-kv@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== ipaddr.js@1.9.0: version "1.9.0" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== is-absolute-url@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= is-accessor-descriptor@^0.1.6: version "0.1.6" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= dependencies: kind-of "^3.0.2" is-accessor-descriptor@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== dependencies: kind-of "^6.0.0" is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= is-arrayish@^0.3.1: version "0.3.2" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== is-binary-path@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= dependencies: binary-extensions "^1.0.0" is-binary-path@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-buffer@^1.1.5: version "1.1.6" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-buffer@^2.0.2, is-buffer@~2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== is-callable@^1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== is-ci@^1.0.10: version "1.2.1" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== dependencies: ci-info "^1.5.0" -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - is-color-stop@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" + resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= dependencies: css-color-names "^0.0.4" @@ -5856,26 +5844,26 @@ is-color-stop@^1.0.0: is-data-descriptor@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= dependencies: kind-of "^3.0.2" is-data-descriptor@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== dependencies: kind-of "^6.0.0" is-date-object@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= is-descriptor@^0.1.0: version "0.1.6" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== dependencies: is-accessor-descriptor "^0.1.6" @@ -5884,7 +5872,7 @@ is-descriptor@^0.1.0: is-descriptor@^1.0.0, is-descriptor@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== dependencies: is-accessor-descriptor "^1.0.0" @@ -5893,91 +5881,86 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-directory@^0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= is-dotfile@^1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= is-equal-shallow@^0.1.3: version "0.1.3" - resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= dependencies: is-primitive "^2.0.0" is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= is-extendable@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== dependencies: is-plain-object "^2.0.4" is-extglob@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-finite@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= dependencies: number-is-nan "^1.0.0" is-fullwidth-code-point@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= dependencies: number-is-nan "^1.0.0" is-fullwidth-code-point@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= dependencies: is-extglob "^1.0.0" is-glob@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= dependencies: is-extglob "^2.1.0" is-glob@^4.0.0, is-glob@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== dependencies: is-extglob "^2.1.1" is-installed-globally@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= dependencies: global-dirs "^0.1.0" @@ -5985,185 +5968,185 @@ is-installed-globally@^0.1.0: is-lower-case@^1.1.0: version "1.1.3" - resolved "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393" + resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393" integrity sha1-fhR75HaNxGbbO/shzGCzHmrWk5M= dependencies: lower-case "^1.1.0" is-npm@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= is-number-like@^1.0.3: version "1.0.8" - resolved "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz#2e129620b50891042e44e9bbbb30593e75cfbbe3" + resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.8.tgz#2e129620b50891042e44e9bbbb30593e75cfbbe3" integrity sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA== dependencies: lodash.isfinite "^3.3.2" is-number@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= dependencies: kind-of "^3.0.2" is-number@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= dependencies: kind-of "^3.0.2" is-number@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-obj@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= is-path-cwd@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.1.0.tgz#2e0c7e463ff5b7a0eb60852d851a6809347a124c" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.1.0.tgz#2e0c7e463ff5b7a0eb60852d851a6809347a124c" integrity sha512-Sc5j3/YnM8tDeyCsVeKlm/0p95075DyLmDEIkSgQ7mXkrOX+uTCtmQFm0CYzVyJwcCCmO3k8qfJt17SxQwB5Zw== is-path-in-cwd@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== dependencies: is-path-inside "^2.1.0" is-path-inside@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= dependencies: path-is-inside "^1.0.1" is-path-inside@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== dependencies: path-is-inside "^1.0.2" is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-plain-object@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== dependencies: isobject "^4.0.0" is-posix-bracket@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= is-primitive@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= is-promise@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= is-redirect@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= is-regex@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= dependencies: has "^1.0.1" is-relative-url@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/is-relative-url/-/is-relative-url-2.0.0.tgz#72902d7fe04b3d4792e7db15f9db84b7204c9cef" + resolved "https://registry.yarnpkg.com/is-relative-url/-/is-relative-url-2.0.0.tgz#72902d7fe04b3d4792e7db15f9db84b7204c9cef" integrity sha1-cpAtf+BLPUeS59sV+duEtyBMnO8= dependencies: is-absolute-url "^2.0.0" is-resolvable@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== is-retry-allowed@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-svg@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== dependencies: html-comment-regex "^1.1.0" is-symbol@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== dependencies: has-symbols "^1.0.0" is-typedarray@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= is-upper-case@^1.1.0: version "1.1.2" - resolved "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f" + resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f" integrity sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8= dependencies: upper-case "^1.1.0" is-utf8@^0.2.0: version "0.2.1" - resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= is-valid-glob@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" + resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" integrity sha1-1LVcafUYhvm2XHDWwmItN+KfSP4= is-visible@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/is-visible/-/is-visible-2.2.0.tgz#722b3acff3694a30074927e1156f58ae87db0e9c" + resolved "https://registry.yarnpkg.com/is-visible/-/is-visible-2.2.0.tgz#722b3acff3694a30074927e1156f58ae87db0e9c" integrity sha512-xv9AexiLVUJXQ3hC6lYsAfZZxvggqrMIjIhpvSXdiqgfUsSF8JghojXzstv3sx0xONEhiPQuykOAKPigC1EXeA== dependencies: iselement "^1.1.3" @@ -6171,476 +6154,79 @@ is-visible@^2.2.0: is-windows@^1.0.1, is-windows@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= - -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isarray@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" - integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= - -iselement@^1.1.3: - version "1.1.4" - resolved "https://registry.npmjs.org/iselement/-/iselement-1.1.4.tgz#7e55b52a8ebca50a7e2e80e5b8d2840f32353146" - integrity sha1-flW1Ko68pQp+LoDluNKEDzI1MUY= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isobject@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" - integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" - integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== - -istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" - integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== - dependencies: - "@babel/generator" "^7.4.0" - "@babel/parser" "^7.4.3" - "@babel/template" "^7.4.0" - "@babel/traverse" "^7.4.3" - "@babel/types" "^7.4.0" - istanbul-lib-coverage "^2.0.5" - semver "^6.0.0" - -istanbul-lib-report@^2.0.4: - version "2.0.8" - resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" - integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== - dependencies: - istanbul-lib-coverage "^2.0.5" - make-dir "^2.1.0" - supports-color "^6.1.0" - -istanbul-lib-source-maps@^3.0.1: - version "3.0.6" - resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" - integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^2.0.5" - make-dir "^2.1.0" - rimraf "^2.6.3" - source-map "^0.6.1" - -istanbul-reports@^2.1.1: - version "2.2.6" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" - integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== - dependencies: - handlebars "^4.1.2" - -jest-changed-files@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" - integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug== - dependencies: - "@jest/types" "^24.8.0" - execa "^1.0.0" - throat "^4.0.0" - -jest-cli@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" - integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA== - dependencies: - "@jest/core" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - chalk "^2.0.1" - exit "^0.1.2" - import-local "^2.0.0" - is-ci "^2.0.0" - jest-config "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - prompts "^2.0.1" - realpath-native "^1.1.0" - yargs "^12.0.2" - -jest-config@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" - integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^24.8.0" - "@jest/types" "^24.8.0" - babel-jest "^24.8.0" - chalk "^2.0.1" - glob "^7.1.1" - jest-environment-jsdom "^24.8.0" - jest-environment-node "^24.8.0" - jest-get-type "^24.8.0" - jest-jasmine2 "^24.8.0" - jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - micromatch "^3.1.10" - pretty-format "^24.8.0" - realpath-native "^1.1.0" - -jest-diff@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== - dependencies: - chalk "^2.0.1" - diff-sequences "^24.3.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" - -jest-docblock@^24.3.0: - version "24.3.0" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== - dependencies: - detect-newline "^2.1.0" - -jest-each@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" - integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA== - dependencies: - "@jest/types" "^24.8.0" - chalk "^2.0.1" - jest-get-type "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" - -jest-environment-jsdom@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" - integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" - jsdom "^11.5.1" - -jest-environment-node@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" - integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" - -jest-get-type@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== - -jest-haste-map@^24.8.0: - version "24.8.1" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" - integrity sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g== - dependencies: - "@jest/types" "^24.8.0" - anymatch "^2.0.0" - fb-watchman "^2.0.0" - graceful-fs "^4.1.15" - invariant "^2.2.4" - jest-serializer "^24.4.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" - micromatch "^3.1.10" - sane "^4.0.3" - walker "^1.0.7" - optionalDependencies: - fsevents "^1.2.7" - -jest-jasmine2@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" - integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - chalk "^2.0.1" - co "^4.6.0" - expect "^24.8.0" - is-generator-fn "^2.0.0" - jest-each "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" - throat "^4.0.0" - -jest-leak-detector@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" - integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g== - dependencies: - pretty-format "^24.8.0" - -jest-matcher-utils@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== - dependencies: - chalk "^2.0.1" - jest-diff "^24.8.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" - -jest-message-util@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/stack-utils" "^1.0.1" - chalk "^2.0.1" - micromatch "^3.1.10" - slash "^2.0.0" - stack-utils "^1.0.1" + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -jest-mock@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== - dependencies: - "@jest/types" "^24.8.0" +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= -jest-pnp-resolver@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" - integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== - -jest-regex-util@^24.3.0: - version "24.3.0" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== - -jest-resolve-dependencies@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" - integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw== - dependencies: - "@jest/types" "^24.8.0" - jest-regex-util "^24.3.0" - jest-snapshot "^24.8.0" - -jest-resolve@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== - dependencies: - "@jest/types" "^24.8.0" - browser-resolve "^1.11.3" - chalk "^2.0.1" - jest-pnp-resolver "^1.2.1" - realpath-native "^1.1.0" - -jest-runner@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" - integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow== - dependencies: - "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - chalk "^2.4.2" - exit "^0.1.2" - graceful-fs "^4.1.15" - jest-config "^24.8.0" - jest-docblock "^24.3.0" - jest-haste-map "^24.8.0" - jest-jasmine2 "^24.8.0" - jest-leak-detector "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" - source-map-support "^0.5.6" - throat "^4.0.0" - -jest-runtime@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" - integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA== - dependencies: - "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.2" - chalk "^2.0.1" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.1.15" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - realpath-native "^1.1.0" - slash "^2.0.0" - strip-bom "^3.0.0" - yargs "^12.0.2" +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= -jest-serializer@^24.4.0: - version "24.4.0" - resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== +isarray@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= -jest-snapshot@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^24.8.0" - chalk "^2.0.1" - expect "^24.8.0" - jest-diff "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - pretty-format "^24.8.0" - semver "^5.5.0" +iselement@^1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/iselement/-/iselement-1.1.4.tgz#7e55b52a8ebca50a7e2e80e5b8d2840f32353146" + integrity sha1-flW1Ko68pQp+LoDluNKEDzI1MUY= -jest-util@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== - dependencies: - "@jest/console" "^24.7.1" - "@jest/fake-timers" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - callsites "^3.0.0" - chalk "^2.0.1" - graceful-fs "^4.1.15" - is-ci "^2.0.0" - mkdirp "^0.5.1" - slash "^2.0.0" - source-map "^0.6.0" +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= -jest-validate@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= dependencies: - "@jest/types" "^24.8.0" - camelcase "^5.0.0" - chalk "^2.0.1" - jest-get-type "^24.8.0" - leven "^2.1.0" - pretty-format "^24.8.0" - -jest-watcher@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" - integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw== - dependencies: - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.9" - ansi-escapes "^3.0.0" - chalk "^2.0.1" - jest-util "^24.8.0" - string-length "^2.0.0" + isarray "1.0.0" -jest-worker@^24.6.0: - version "24.6.0" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== - dependencies: - merge-stream "^1.0.1" - supports-color "^6.1.0" +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= -jest@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" - integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg== - dependencies: - import-local "^2.0.0" - jest-cli "^24.8.0" +isobject@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" + integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= js-base64@^2.1.8: version "2.5.1" - resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121" integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw== js-levenshtein@^1.1.3: version "1.1.6" - resolved "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@3.13.1, js-yaml@^3.12.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.5.2, js-yaml@^3.8.3: version "3.13.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== dependencies: argparse "^1.0.7" @@ -6648,103 +6234,71 @@ js-yaml@3.13.1, js-yaml@^3.12.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.5. jsbn@~0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^11.5.1: - version "11.12.0" - resolved "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" - integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== - dependencies: - abab "^2.0.0" - acorn "^5.5.3" - acorn-globals "^4.1.0" - array-equal "^1.0.0" - cssom ">= 0.3.2 < 0.4.0" - cssstyle "^1.0.0" - data-urls "^1.0.0" - domexception "^1.0.1" - escodegen "^1.9.1" - html-encoding-sniffer "^1.0.2" - left-pad "^1.3.0" - nwsapi "^2.0.7" - parse5 "4.0.0" - pn "^1.1.0" - request "^2.87.0" - request-promise-native "^1.0.5" - sax "^1.2.4" - symbol-tree "^3.2.2" - tough-cookie "^2.3.4" - w3c-hr-time "^1.0.1" - webidl-conversions "^4.0.2" - whatwg-encoding "^1.0.3" - whatwg-mimetype "^2.1.0" - whatwg-url "^6.4.1" - ws "^5.2.0" - xml-name-validator "^3.0.0" - jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== jsesc@~0.5.0: version "0.5.0" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= json-buffer@3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= json-loader@^0.5.7: version "0.5.7" - resolved "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema@0.2.3: version "0.2.3" - resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= json-stringify-safe@~5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= json5@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== dependencies: minimist "^1.2.0" json5@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== dependencies: minimist "^1.2.0" jsondiffpatch@^0.3.11: version "0.3.11" - resolved "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz#43f9443a0d081b5f79d413fe20f302079e493201" + resolved "https://registry.yarnpkg.com/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz#43f9443a0d081b5f79d413fe20f302079e493201" integrity sha512-Xi3Iygdt/BGhml6bdUFhgDki1TgOsp3hG3iiH3KtzP+CahtGcdPfKRLlnZbSw+3b1umZkhmKrqXUgUcKenyhtA== dependencies: chalk "^2.3.0" @@ -6752,33 +6306,33 @@ jsondiffpatch@^0.3.11: jsonfile@^2.1.0: version "2.4.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= optionalDependencies: graceful-fs "^4.1.6" jsonfile@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" integrity sha1-pezG9l9T9mLEQVx2daAzHQmS7GY= optionalDependencies: graceful-fs "^4.1.6" jsonfile@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= optionalDependencies: graceful-fs "^4.1.6" jsonschema@^1.2.4: version "1.2.4" - resolved "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.4.tgz#a46bac5d3506a254465bc548876e267c6d0d6464" + resolved "https://registry.yarnpkg.com/jsonschema/-/jsonschema-1.2.4.tgz#a46bac5d3506a254465bc548876e267c6d0d6464" integrity sha512-lz1nOH69GbsVHeVgEdvyavc/33oymY1AZwtePMiMj4HZPMbP5OIKK3zT9INMWjwua/V4Z4yq7wSlBbSG+g4AEw== jsprim@^1.2.2: version "1.4.1" - resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= dependencies: assert-plus "1.0.0" @@ -6788,50 +6342,38 @@ jsprim@^1.2.2: keyv@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== dependencies: json-buffer "3.0.0" kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= dependencies: is-buffer "^1.1.5" kind-of@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= dependencies: is-buffer "^1.1.5" kind-of@^5.0.0, kind-of@^5.0.2: version "5.1.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== -klaw-sync@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" - integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== - dependencies: - graceful-fs "^4.1.11" - -kleur@^3.0.2: - version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - last-call-webpack-plugin@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" + resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== dependencies: lodash "^4.17.5" @@ -6839,45 +6381,40 @@ last-call-webpack-plugin@^3.0.0: latest-version@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= dependencies: package-json "^4.0.0" +lazysizes@^4.1.4: + version "4.1.8" + resolved "https://registry.yarnpkg.com/lazysizes/-/lazysizes-4.1.8.tgz#f1cb1e803f7a8441122ec1be6f7333bc8977f632" + integrity sha512-qxBMQZKdR3cwydyyBOoGVBtN2T1nyrozhnEstV2H3M6UE/mivSh7U+n7N7DtBV2L07Uw442QRwtwf0E2IntJZg== + lazystream@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" + resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" integrity sha1-9plf4PggOS9hOWvolGJAe7dxaOQ= dependencies: readable-stream "^2.0.5" lcid@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= dependencies: invert-kv "^1.0.0" lcid@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== dependencies: invert-kv "^2.0.0" -left-pad@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" - integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== - -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= - levn@^0.3.0, levn@~0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= dependencies: prelude-ls "~1.1.2" @@ -6885,29 +6422,29 @@ levn@^0.3.0, levn@~0.3.0: lightercollective@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/lightercollective/-/lightercollective-0.3.0.tgz#1f07638642ec645d70bdb69ab2777676f35a28f0" + resolved "https://registry.yarnpkg.com/lightercollective/-/lightercollective-0.3.0.tgz#1f07638642ec645d70bdb69ab2777676f35a28f0" integrity sha512-RFOLSUVvwdK3xA0P8o6G7QGXLIyy1L2qv5caEI7zXN5ciaEjbAriRF182kbsoJ1S1TgvpyGcN485fMky6qxOPw== limiter@^1.0.5: version "1.1.4" - resolved "https://registry.npmjs.org/limiter/-/limiter-1.1.4.tgz#87c9c3972d389fdb0ba67a45aadbc5d2f8413bc1" + resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.4.tgz#87c9c3972d389fdb0ba67a45aadbc5d2f8413bc1" integrity sha512-XCpr5bElgDI65vVgstP8TWjv6/QKWm9GU5UG0Pr5sLQ3QLo8NVKsioe+Jed5/3vFOe3IQuqE7DKwTvKQkjTHvg== lit-element@^2.1.0: version "2.2.0" - resolved "https://registry.npmjs.org/lit-element/-/lit-element-2.2.0.tgz#e853be38021f0c7743a10180affdf84b8a02400c" + resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-2.2.0.tgz#e853be38021f0c7743a10180affdf84b8a02400c" integrity sha512-Mzs3H7IO4wAnpzqreHw6dQqp9IG+h/oN8X9pgNbMZbE7x6B0aNOwP5Nveox/5HE+65ZfW2PeULEjoHkrwpTnuQ== dependencies: lit-html "^1.0.0" lit-html@^1.0.0, lit-html@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/lit-html/-/lit-html-1.1.0.tgz#6951fb717fb48fe34d915ae163448a04da321562" + resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-1.1.0.tgz#6951fb717fb48fe34d915ae163448a04da321562" integrity sha512-ZDJHpJi09yknMpjwPI8fuSl5sUG7+pF+eE5WciFtgyX7zebvgMDBgSLq4knXa7grxM00RkQ7PBd7UZQiruA78Q== load-json-file@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= dependencies: graceful-fs "^4.1.2" @@ -6916,19 +6453,9 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - loader-fs-cache@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz#54cedf6b727e1779fd8f01205f05f6e88706f086" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz#54cedf6b727e1779fd8f01205f05f6e88706f086" integrity sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw== dependencies: find-cache-dir "^0.1.1" @@ -6936,12 +6463,12 @@ loader-fs-cache@^1.0.0: loader-runner@^2.3.0: version "2.4.0" - resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: version "1.2.3" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== dependencies: big.js "^5.2.2" @@ -6950,7 +6477,7 @@ loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1. localtunnel@1.9.2: version "1.9.2" - resolved "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.2.tgz#0012fcabc29cf964c130a01858768aa2bb65b5af" + resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.9.2.tgz#0012fcabc29cf964c130a01858768aa2bb65b5af" integrity sha512-NEKF7bDJE9U3xzJu3kbayF0WTvng6Pww7tzqNb/XtEARYwqw7CKEX7BvOMg98FtE9es2CRizl61gkV3hS8dqYg== dependencies: axios "0.19.0" @@ -6960,7 +6487,7 @@ localtunnel@1.9.2: locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: p-locate "^3.0.0" @@ -6968,7 +6495,7 @@ locate-path@^3.0.0: lodash._basebind@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basebind/-/lodash._basebind-2.4.1.tgz#e940b9ebdd27c327e0a8dab1b55916c5341e9575" + resolved "https://registry.yarnpkg.com/lodash._basebind/-/lodash._basebind-2.4.1.tgz#e940b9ebdd27c327e0a8dab1b55916c5341e9575" integrity sha1-6UC5690nwyfgqNqxtVkWxTQelXU= dependencies: lodash._basecreate "~2.4.1" @@ -6978,7 +6505,7 @@ lodash._basebind@~2.4.1: lodash._basecreate@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-2.4.1.tgz#f8e6f5b578a9e34e541179b56b8eeebf4a287e08" + resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-2.4.1.tgz#f8e6f5b578a9e34e541179b56b8eeebf4a287e08" integrity sha1-+Ob1tXip405UEXm1a47uv0oofgg= dependencies: lodash._isnative "~2.4.1" @@ -6987,7 +6514,7 @@ lodash._basecreate@~2.4.1: lodash._basecreatecallback@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreatecallback/-/lodash._basecreatecallback-2.4.1.tgz#7d0b267649cb29e7a139d0103b7c11fae84e4851" + resolved "https://registry.yarnpkg.com/lodash._basecreatecallback/-/lodash._basecreatecallback-2.4.1.tgz#7d0b267649cb29e7a139d0103b7c11fae84e4851" integrity sha1-fQsmdknLKeehOdAQO3wR+uhOSFE= dependencies: lodash._setbinddata "~2.4.1" @@ -6997,7 +6524,7 @@ lodash._basecreatecallback@~2.4.1: lodash._basecreatewrapper@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.4.1.tgz#4d31f2e7de7e134fbf2803762b8150b32519666f" + resolved "https://registry.yarnpkg.com/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.4.1.tgz#4d31f2e7de7e134fbf2803762b8150b32519666f" integrity sha1-TTHy595+E0+/KAN2K4FQsyUZZm8= dependencies: lodash._basecreate "~2.4.1" @@ -7007,7 +6534,7 @@ lodash._basecreatewrapper@~2.4.1: lodash._createwrapper@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._createwrapper/-/lodash._createwrapper-2.4.1.tgz#51d6957973da4ed556e37290d8c1a18c53de1607" + resolved "https://registry.yarnpkg.com/lodash._createwrapper/-/lodash._createwrapper-2.4.1.tgz#51d6957973da4ed556e37290d8c1a18c53de1607" integrity sha1-UdaVeXPaTtVW43KQ2MGhjFPeFgc= dependencies: lodash._basebind "~2.4.1" @@ -7017,17 +6544,17 @@ lodash._createwrapper@~2.4.1: lodash._isnative@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz#3ea6404b784a7be836c7b57580e1cdf79b14832c" + resolved "https://registry.yarnpkg.com/lodash._isnative/-/lodash._isnative-2.4.1.tgz#3ea6404b784a7be836c7b57580e1cdf79b14832c" integrity sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw= lodash._objecttypes@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" + resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" integrity sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE= lodash._setbinddata@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._setbinddata/-/lodash._setbinddata-2.4.1.tgz#f7c200cd1b92ef236b399eecf73c648d17aa94d2" + resolved "https://registry.yarnpkg.com/lodash._setbinddata/-/lodash._setbinddata-2.4.1.tgz#f7c200cd1b92ef236b399eecf73c648d17aa94d2" integrity sha1-98IAzRuS7yNrOZ7s9zxkjReqlNI= dependencies: lodash._isnative "~2.4.1" @@ -7035,19 +6562,19 @@ lodash._setbinddata@~2.4.1: lodash._shimkeys@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz#6e9cc9666ff081f0b5a6c978b83e242e6949d203" + resolved "https://registry.yarnpkg.com/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz#6e9cc9666ff081f0b5a6c978b83e242e6949d203" integrity sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM= dependencies: lodash._objecttypes "~2.4.1" lodash._slice@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash._slice/-/lodash._slice-2.4.1.tgz#745cf41a53597b18f688898544405efa2b06d90f" + resolved "https://registry.yarnpkg.com/lodash._slice/-/lodash._slice-2.4.1.tgz#745cf41a53597b18f688898544405efa2b06d90f" integrity sha1-dFz0GlNZexj2iImFREBe+isG2Q8= lodash.assign@^2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.assign/-/lodash.assign-2.4.1.tgz#84c39596dd71181a97b0652913a7c9675e49b1aa" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-2.4.1.tgz#84c39596dd71181a97b0652913a7c9675e49b1aa" integrity sha1-hMOVlt1xGBqXsGUpE6fJZ15Jsao= dependencies: lodash._basecreatecallback "~2.4.1" @@ -7056,7 +6583,7 @@ lodash.assign@^2.4.1: lodash.bind@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.4.1.tgz#5d19fa005c8c4d236faf4742c7b7a1fcabe29267" + resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-2.4.1.tgz#5d19fa005c8c4d236faf4742c7b7a1fcabe29267" integrity sha1-XRn6AFyMTSNvr0dCx7eh/Kvikmc= dependencies: lodash._createwrapper "~2.4.1" @@ -7064,49 +6591,49 @@ lodash.bind@~2.4.1: lodash.debounce@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= lodash.difference@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" + resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" integrity sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw= lodash.get@^4.4.2: version "4.4.2" - resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= lodash.identity@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.identity/-/lodash.identity-2.4.1.tgz#6694cffa65fef931f7c31ce86c74597cf560f4f1" + resolved "https://registry.yarnpkg.com/lodash.identity/-/lodash.identity-2.4.1.tgz#6694cffa65fef931f7c31ce86c74597cf560f4f1" integrity sha1-ZpTP+mX++TH3wxzobHRZfPVg9PE= -lodash.isequal@^4.0.0: +lodash.isequal@^4.0.0, lodash.isequal@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= lodash.isfinite@^3.3.2: version "3.3.2" - resolved "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" + resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" integrity sha1-+4m2WpqAKBgz8LdHizpRBPiY67M= lodash.isfunction@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1" + resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1" integrity sha1-LP1XXHPkmKtX4xm3f6Aq3vE6lNE= lodash.isobject@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" + resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" integrity sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU= dependencies: lodash._objecttypes "~2.4.1" lodash.keys@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz#48dea46df8ff7632b10d706b8acb26591e2b3727" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-2.4.1.tgz#48dea46df8ff7632b10d706b8acb26591e2b3727" integrity sha1-SN6kbfj/djKxDXBrissmWR4rNyc= dependencies: lodash._isnative "~2.4.1" @@ -7115,68 +6642,63 @@ lodash.keys@~2.4.1: lodash.memoize@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= lodash.merge@^4.6.1: version "4.6.1" - resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ== lodash.noop@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.noop/-/lodash.noop-2.4.1.tgz#4fb54f816652e5ae10e8f72f717a388c7326538a" + resolved "https://registry.yarnpkg.com/lodash.noop/-/lodash.noop-2.4.1.tgz#4fb54f816652e5ae10e8f72f717a388c7326538a" integrity sha1-T7VPgWZS5a4Q6PcvcXo4jHMmU4o= lodash.set@^4.3.2: version "4.3.2" - resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" + resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - lodash.support@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/lodash.support/-/lodash.support-2.4.1.tgz#320e0b67031673c28d7a2bb5d9e0331a45240515" + resolved "https://registry.yarnpkg.com/lodash.support/-/lodash.support-2.4.1.tgz#320e0b67031673c28d7a2bb5d9e0331a45240515" integrity sha1-Mg4LZwMWc8KNeiu12eAzGkUkBRU= dependencies: lodash._isnative "~2.4.1" lodash.tail@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" + resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ= lodash.uniq@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= lodash@4.x, "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.5, lodash@~4.17.10: version "4.17.11" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== log-symbols@2.2.0, log-symbols@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: chalk "^2.0.1" loose-envify@^1.0.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" loud-rejection@^1.0.0: version "1.6.0" - resolved "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= dependencies: currently-unhandled "^0.4.1" @@ -7184,29 +6706,29 @@ loud-rejection@^1.0.0: lower-case-first@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" + resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" integrity sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E= dependencies: lower-case "^1.1.2" lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2: version "1.1.4" - resolved "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== lowercase-keys@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== lru-cache@^4.0.1: version "4.1.5" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== dependencies: pseudomap "^1.0.2" @@ -7214,85 +6736,78 @@ lru-cache@^4.0.1: lru-cache@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: yallist "^3.0.2" macos-release@^2.2.0: version "2.3.0" - resolved "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" + resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA== make-dir@^1.0.0: version "1.3.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== dependencies: pify "^3.0.0" -make-dir@^2.0.0, make-dir@^2.1.0: +make-dir@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" semver "^5.6.0" -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - mamacro@^0.0.3: version "0.0.3" - resolved "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" + resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== map-age-cleaner@^0.1.1: version "0.1.3" - resolved "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== dependencies: p-defer "^1.0.0" map-cache@^0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= map-visit@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= dependencies: object-visit "^1.0.0" marked@^0.3.19: version "0.3.19" - resolved "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" + resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== marked@^0.6.2: version "0.6.2" - resolved "https://registry.npmjs.org/marked/-/marked-0.6.2.tgz#c574be8b545a8b48641456ca1dbe0e37b6dccc1a" + resolved "https://registry.yarnpkg.com/marked/-/marked-0.6.2.tgz#c574be8b545a8b48641456ca1dbe0e37b6dccc1a" integrity sha512-LqxwVH3P/rqKX4EKGz7+c2G9r98WeM/SW34ybhgNGhUQNKtf1GmmSkJ6cDGJ/t6tiyae49qRkpyTw2B9HOrgUA== math-random@^1.0.1: version "1.0.4" - resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" + resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== md5.js@^1.3.4: version "1.3.5" - resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== dependencies: hash-base "^3.0.0" @@ -7301,22 +6816,22 @@ md5.js@^1.3.4: mdn-data@~1.1.0: version "1.1.4" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA== mdn-polyfills@^5.16.3: version "5.17.1" - resolved "https://registry.npmjs.org/mdn-polyfills/-/mdn-polyfills-5.17.1.tgz#50a9d7e4ac22180b47f09e9e90d9c2fa3ad0406c" + resolved "https://registry.yarnpkg.com/mdn-polyfills/-/mdn-polyfills-5.17.1.tgz#50a9d7e4ac22180b47f09e9e90d9c2fa3ad0406c" integrity sha512-CYNEORuYFrHbPxmda0Ex2gLMvr0gVGIk2i38UfBeTZGeQbKCclD8BSxWLY9iqkYtI6H4rRMjs5spnnATicg2SQ== media-typer@0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= mem@^4.0.0: version "4.3.0" - resolved "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== dependencies: map-age-cleaner "^0.1.1" @@ -7325,12 +6840,12 @@ mem@^4.0.0: memoize-decorator@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/memoize-decorator/-/memoize-decorator-1.0.2.tgz#605a41715c4171db192a90098b00ab8d6e1102f5" + resolved "https://registry.yarnpkg.com/memoize-decorator/-/memoize-decorator-1.0.2.tgz#605a41715c4171db192a90098b00ab8d6e1102f5" integrity sha1-YFpBcVxBcdsZKpAJiwCrjW4RAvU= memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= dependencies: errno "^0.1.3" @@ -7338,7 +6853,7 @@ memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1: meow@^3.7.0: version "3.7.0" - resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= dependencies: camelcase-keys "^2.0.0" @@ -7354,34 +6869,34 @@ meow@^3.7.0: merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-stream@^1.0.0, merge-stream@^1.0.1: +merge-stream@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= dependencies: readable-stream "^2.0.1" merge2@^1.2.3: version "1.2.3" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA== merge@^1.2.0: version "1.2.1" - resolved "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== methods@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= micromatch@^2.3.7: version "2.3.11" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= dependencies: arr-diff "^2.0.0" @@ -7400,7 +6915,7 @@ micromatch@^2.3.7: micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: version "3.1.10" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== dependencies: arr-diff "^4.0.0" @@ -7419,7 +6934,7 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: micromatch@^4.0.0: version "4.0.2" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== dependencies: braces "^3.0.1" @@ -7427,57 +6942,69 @@ micromatch@^4.0.0: miller-rabin@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== dependencies: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.40.0: +mime-db@1.40.0, "mime-db@>= 1.40.0 < 2": version "1.40.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== +mime-db@~1.33.0: + version "1.33.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" + integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== + +mime-types@2.1.18: + version "2.1.18" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" + integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== + dependencies: + mime-db "~1.33.0" + mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: version "2.1.24" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== dependencies: mime-db "1.40.0" mime@1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== mime@1.6.0: version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.0.3, mime@^2.4.2: version "2.4.4" - resolved "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== mimic-fn@^1.0.0: version "1.2.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== mimic-fn@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== mimic-response@^1.0.0, mimic-response@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== mini-css-extract-plugin@^0.7.0: version "0.7.0" - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0" integrity sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ== dependencies: loader-utils "^1.1.0" @@ -7487,39 +7014,34 @@ mini-css-extract-plugin@^0.7.0: minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= "minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: version "3.0.4" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" minimist@0.0.8: version "0.0.8" - resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= -minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: +minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= - minipass@^2.2.1, minipass@^2.3.5: version "2.3.5" - resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== dependencies: safe-buffer "^5.1.2" @@ -7527,14 +7049,14 @@ minipass@^2.2.1, minipass@^2.3.5: minizlib@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== dependencies: minipass "^2.2.1" mississippi@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== dependencies: concat-stream "^1.5.0" @@ -7550,12 +7072,12 @@ mississippi@^3.0.0: mitt@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/mitt/-/mitt-1.1.3.tgz#528c506238a05dce11cd914a741ea2cc332da9b8" + resolved "https://registry.yarnpkg.com/mitt/-/mitt-1.1.3.tgz#528c506238a05dce11cd914a741ea2cc332da9b8" integrity sha512-mUDCnVNsAi+eD6qA0HkRkwYczbLHJ49z17BGe2PYRhZL4wpZUFZGJHU7/5tmvohoma+Hdn0Vh/oJTiPEmgSruA== mixin-deep@^1.2.0: version "1.3.2" - resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== dependencies: for-in "^1.0.2" @@ -7563,7 +7085,7 @@ mixin-deep@^1.2.0: mixin-object@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= dependencies: for-in "^0.1.3" @@ -7571,14 +7093,14 @@ mixin-object@^2.0.1: mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: version "0.5.1" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= dependencies: minimist "0.0.8" mocha@^6.1.4: version "6.1.4" - resolved "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz#e35fada242d5434a7e163d555c705f6875951640" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.1.4.tgz#e35fada242d5434a7e163d555c705f6875951640" integrity sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg== dependencies: ansi-colors "3.2.3" @@ -7607,12 +7129,17 @@ mocha@^6.1.4: moment@^2.22.1: version "2.24.0" - resolved "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== +mousetrap@^1.6.1: + version "1.6.3" + resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.3.tgz#80fee49665fd478bccf072c9d46bdf1bfed3558a" + integrity sha512-bd+nzwhhs9ifsUrC2tWaSgm24/oo2c83zaRyZQF06hYA6sANfsXHtnZ19AbbbDXCDzeH5nZBSQ4NvCjgD62tJA== + move-concurrently@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= dependencies: aproba "^1.1.1" @@ -7624,22 +7151,22 @@ move-concurrently@^1.0.1: ms@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= ms@2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== ms@^2.1.1: version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== multipipe@1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz#cc13efd833c9cda99f224f868461b8e1a3fd939d" + resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-1.0.2.tgz#cc13efd833c9cda99f224f868461b8e1a3fd939d" integrity sha1-zBPv2DPJzamfIk+GhGG44aP9k50= dependencies: duplexer2 "^0.1.2" @@ -7647,17 +7174,17 @@ multipipe@1.0.2: mute-stream@0.0.7: version "0.0.7" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= nan@^2.12.1, nan@^2.13.2: version "2.14.0" - resolved "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== nanomatch@^1.2.9: version "1.2.13" - resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== dependencies: arr-diff "^4.0.0" @@ -7674,17 +7201,17 @@ nanomatch@^1.2.9: napi-build-utils@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= needle@^2.2.1: version "2.4.0" - resolved "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== dependencies: debug "^3.2.6" @@ -7693,41 +7220,41 @@ needle@^2.2.1: negotiator@0.6.2: version "0.6.2" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@^2.5.0, neo-async@^2.6.0: +neo-async@^2.5.0: version "2.6.1" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== next-tick@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= nice-try@^1.0.4: version "1.0.5" - resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== no-case@^2.2.0, no-case@^2.3.2: version "2.3.2" - resolved "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== dependencies: lower-case "^1.1.1" node-abi@^2.7.0: version "2.9.0" - resolved "https://registry.npmjs.org/node-abi/-/node-abi-2.9.0.tgz#ae4075b298dab2d92dd1e22c48ccc7ffd7f06200" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.9.0.tgz#ae4075b298dab2d92dd1e22c48ccc7ffd7f06200" integrity sha512-jmEOvv0eanWjhX8dX1pmjb7oJl1U1oR4FOh0b2GnvALwSYoOdU7sj+kLDSAyjo4pfC9aj/IxkloxdLJQhSSQBA== dependencies: semver "^5.4.1" node-cache@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/node-cache/-/node-cache-4.2.0.tgz#48ac796a874e762582692004a376d26dfa875811" + resolved "https://registry.yarnpkg.com/node-cache/-/node-cache-4.2.0.tgz#48ac796a874e762582692004a376d26dfa875811" integrity sha512-obRu6/f7S024ysheAjoYFEEBqqDWv4LOMNJEuO8vMeEw2AT4z+NCzO4hlc2lhI4vATzbCQv6kke9FVdx0RbCOw== dependencies: clone "2.x" @@ -7735,7 +7262,7 @@ node-cache@^4.2.0: node-environment-flags@1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" + resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" integrity sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== dependencies: object.getownpropertydescriptors "^2.0.3" @@ -7743,12 +7270,12 @@ node-environment-flags@1.0.5: node-fetch@^2.1.2, node-fetch@^2.3.0, node-fetch@^2.6.0: version "2.6.0" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== node-gyp@^3.8.0: version "3.8.0" - resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== dependencies: fstream "^1.0.0" @@ -7764,14 +7291,9 @@ node-gyp@^3.8.0: tar "^2.0.0" which "1" -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= - node-libs-browser@^2.0.0: version "2.2.1" - resolved "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== dependencies: assert "^1.1.1" @@ -7798,14 +7320,9 @@ node-libs-browser@^2.0.0: util "^0.11.0" vm-browserify "^1.0.1" -node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -node-notifier@^5.1.2, node-notifier@^5.2.1, node-notifier@^5.4.0: +node-notifier@^5.1.2, node-notifier@^5.4.0: version "5.4.0" - resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== dependencies: growly "^1.3.0" @@ -7816,12 +7333,12 @@ node-notifier@^5.1.2, node-notifier@^5.2.1, node-notifier@^5.4.0: node-object-hash@^1.2.0: version "1.4.2" - resolved "https://registry.npmjs.org/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94" + resolved "https://registry.yarnpkg.com/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94" integrity sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ== node-pre-gyp@^0.12.0: version "0.12.0" - resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== dependencies: detect-libc "^1.0.2" @@ -7836,15 +7353,15 @@ node-pre-gyp@^0.12.0: tar "^4" node-releases@^1.1.23: - version "1.1.23" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.23.tgz#de7409f72de044a2fa59c097f436ba89c39997f0" - integrity sha512-uq1iL79YjfYC0WXoHbC/z28q/9pOl8kSHaXdWmAAc8No+bDwqkZbzIJz55g/MUsPgSGm9LZ7QSUbzTcH5tz47w== + version "1.1.24" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.24.tgz#2fb494562705c01bfb81a7af9f8584c4d56311b4" + integrity sha512-wym2jptfuKowMmkZsfCSTsn8qAVo8zm+UiQA6l5dNqUcpfChZSnS/vbbpOeXczf+VdPhutxh+99lWHhdd6xKzg== dependencies: semver "^5.3.0" node-sass@^4.12.0, node-sass@^4.9.0: version "4.12.0" - resolved "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017" integrity sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ== dependencies: async-foreach "^0.1.3" @@ -7867,19 +7384,19 @@ node-sass@^4.12.0, node-sass@^4.9.0: noop-logger@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" + resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= "nopt@2 || 3": version "3.0.6" - resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= dependencies: abbrev "1" nopt@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= dependencies: abbrev "1" @@ -7887,7 +7404,7 @@ nopt@^4.0.1: normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: version "2.5.0" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== dependencies: hosted-git-info "^2.1.4" @@ -7897,29 +7414,29 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: normalize-path@^2.0.1, normalize-path@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= dependencies: remove-trailing-separator "^1.0.1" normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= normalize-scss@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/normalize-scss/-/normalize-scss-7.0.1.tgz#74485e82bb5d0526371136422a09fdb868ffc1a4" + resolved "https://registry.yarnpkg.com/normalize-scss/-/normalize-scss-7.0.1.tgz#74485e82bb5d0526371136422a09fdb868ffc1a4" integrity sha512-qj16bWnYs+9/ac29IgGjySg4R5qQTp1lXfm7ApFOZNVBYFY8RZ3f8+XQNDDLHeDtI3Ba7Jj4+LuPgz9v/fne2A== normalize-url@1.9.1, normalize-url@^1.9.1: version "1.9.1" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= dependencies: object-assign "^4.0.1" @@ -7929,37 +7446,37 @@ normalize-url@1.9.1, normalize-url@^1.9.1: normalize-url@^3.0.0: version "3.3.0" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== normalize-url@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.3.0.tgz#9c49e10fc1876aeb76dba88bf1b2b5d9fa57b2ee" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.3.0.tgz#9c49e10fc1876aeb76dba88bf1b2b5d9fa57b2ee" integrity sha512-0NLtR71o4k6GLP+mr6Ty34c5GA6CMoEsncKJxvQd8NzPxaHRJNnb5gZE8R1XF4CPIS7QPHLJ74IFszwtNVAHVQ== npm-bundled@^1.0.1: version "1.0.6" - resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== npm-packlist@^1.1.6: - version "1.4.1" - resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" - integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== + version "1.4.2" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.2.tgz#a9d63153d4fb0547e6d4342e4102ba6c3bd2b2c7" + integrity sha512-pyJclkNoBBckB6K/XPcMp8fP60MaqSZBPQVsNY7Yyc9VP1TUnPMYwck5YaBejf0L7xYr8f4l16+IENeZ0by+yw== dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" npm-run-path@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= dependencies: path-key "^2.0.0" npm-sass@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/npm-sass/-/npm-sass-2.3.0.tgz#1e7c4c90e12f36ebbe2f4957b55b6d5f4bdd573c" + resolved "https://registry.yarnpkg.com/npm-sass/-/npm-sass-2.3.0.tgz#1e7c4c90e12f36ebbe2f4957b55b6d5f4bdd573c" integrity sha512-/Msbyq/rsqMJslcxRrRNdxTR2VUTEXETNsYhPWw/lSb+QgpnDdWi4LOocfEpCleDPLzP7FnkM7w9Bc0mKP3xcg== dependencies: argh "^0.1.4" @@ -7971,7 +7488,7 @@ npm-sass@^2.3.0: "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== dependencies: are-we-there-yet "~1.1.2" @@ -7981,24 +7498,24 @@ npm-sass@^2.3.0: nth-check@^1.0.2, nth-check@~1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== dependencies: boolbase "~1.0.0" num2fraction@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= number-is-nan@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/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" integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= nunjucks@^3.1.7: version "3.2.0" - resolved "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.0.tgz#53e95f43c9555e822e8950008a201b1002d49933" + resolved "https://registry.yarnpkg.com/nunjucks/-/nunjucks-3.2.0.tgz#53e95f43c9555e822e8950008a201b1002d49933" integrity sha512-YS/qEQ6N7qCnUdm6EoYRBfJUdWNT0PpKbbRnogV2XyXbBm2STIP1O6yrdZHgwMVK7fIYUx7i8+yatEixnXSB1w== dependencies: a-sync-waterfall "^1.0.0" @@ -8007,34 +7524,29 @@ nunjucks@^3.1.7: optionalDependencies: chokidar "^2.0.0" -nwsapi@^2.0.7: - version "2.1.4" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" - integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== - oauth-sign@~0.9.0: version "0.9.0" - resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== object-assign@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" integrity sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I= object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= object-component@0.0.3: version "0.0.3" - resolved "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= object-copy@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= dependencies: copy-descriptor "^0.1.0" @@ -8043,41 +7555,41 @@ object-copy@^0.1.0: object-hash@^1.1.4: version "1.3.1" - resolved "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== object-keys@^1.0.11, object-keys@^1.0.12: version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-path@0.11.4: version "0.11.4" - resolved "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" + resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk= object-path@^0.9.0: version "0.9.2" - resolved "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" + resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" integrity sha1-D9mnT8X60a45aLWGvaXGMr1sBaU= object-sizeof@^1.2.0: version "1.4.0" - resolved "https://registry.npmjs.org/object-sizeof/-/object-sizeof-1.4.0.tgz#d976dce5bb10274c64eeb142557705a4657631c7" + resolved "https://registry.yarnpkg.com/object-sizeof/-/object-sizeof-1.4.0.tgz#d976dce5bb10274c64eeb142557705a4657631c7" integrity sha512-ehpLH3Jjs3tGVzhkPYC+z0Cczpx5FZnCaCmWS4GkxZnGgGB1jCWSju8WTRdCGmCRNoXidmBurDyzaDiZVlOrVw== dependencies: buffer "^5.2.1" object-visit@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= dependencies: isobject "^3.0.0" object.assign@4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== dependencies: define-properties "^1.1.2" @@ -8087,7 +7599,7 @@ object.assign@4.1.0: object.getownpropertydescriptors@^2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= dependencies: define-properties "^1.1.2" @@ -8095,7 +7607,7 @@ object.getownpropertydescriptors@^2.0.3: object.omit@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= dependencies: for-own "^0.1.4" @@ -8103,14 +7615,14 @@ object.omit@^2.0.0: object.pick@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" object.values@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== dependencies: define-properties "^1.1.3" @@ -8120,61 +7632,58 @@ object.values@^1.1.0: octokit-pagination-methods@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4" + resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4" integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ== on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= dependencies: ee-first "1.1.1" +on-headers@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" onetime@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= dependencies: mimic-fn "^1.0.0" openurl@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387" + resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387" integrity sha1-OHW0sO96UsFW8NtB1GCduw+Us4c= opn@5.3.0: version "5.3.0" - resolved "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" integrity sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g== dependencies: is-wsl "^1.1.0" -optimist@^0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - optimize-css-assets-webpack-plugin@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#9eb500711d35165b45e7fd60ba2df40cb3eb9159" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#9eb500711d35165b45e7fd60ba2df40cb3eb9159" integrity sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A== dependencies: cssnano "^4.1.0" last-call-webpack-plugin "^3.0.0" -optionator@^0.8.1, optionator@^0.8.2: +optionator@^0.8.2: version "0.8.2" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= dependencies: deep-is "~0.1.3" @@ -8186,7 +7695,7 @@ optionator@^0.8.1, optionator@^0.8.2: ora@^3.4.0: version "3.4.0" - resolved "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== dependencies: chalk "^2.4.2" @@ -8198,7 +7707,7 @@ ora@^3.4.0: ordered-read-streams@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" + resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" integrity sha1-cTfmmzKYuzQiR6G77jiByA4v14s= dependencies: is-stream "^1.0.1" @@ -8206,24 +7715,24 @@ ordered-read-streams@^0.3.0: os-browserify@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= os-homedir@^1.0.0, os-homedir@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= os-locale@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= dependencies: lcid "^1.0.0" os-locale@^3.0.0, os-locale@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: execa "^1.0.0" @@ -8232,7 +7741,7 @@ os-locale@^3.0.0, os-locale@^3.1.0: os-name@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" + resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== dependencies: macos-release "^2.2.0" @@ -8240,12 +7749,12 @@ os-name@^3.0.0: os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= osenv@0, osenv@^0.1.4: version "0.1.5" - resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== dependencies: os-homedir "^1.0.0" @@ -8253,7 +7762,7 @@ osenv@0, osenv@^0.1.4: output-file-sync@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" integrity sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ== dependencies: graceful-fs "^4.1.11" @@ -8262,71 +7771,59 @@ output-file-sync@^2.0.0: p-cancelable@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== p-defer@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= -p-each-series@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" - integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= - dependencies: - p-reduce "^1.0.0" - p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= p-is-promise@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== p-limit@^2.0.0, p-limit@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== dependencies: p-try "^2.0.0" p-locate@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== dependencies: p-limit "^2.0.0" p-map@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== p-memoize@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/p-memoize/-/p-memoize-2.1.0.tgz#9ac80c8cf9373c52dfece6aae1fd2e300602898a" + resolved "https://registry.yarnpkg.com/p-memoize/-/p-memoize-2.1.0.tgz#9ac80c8cf9373c52dfece6aae1fd2e300602898a" integrity sha512-c6+a2iV4JyX0r4+i2IBJYO0r6LZAT2fg/tcB6GQbv1uzZsfsmKT7Ej5DRT1G6Wi7XUJSV2ZiP9+YEtluvhCmkg== dependencies: mem "^4.0.0" mimic-fn "^1.0.0" -p-reduce@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" - integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= - p-try@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= dependencies: got "^6.7.1" @@ -8336,12 +7833,12 @@ package-json@^4.0.0: pako@~1.0.5: version "1.0.10" - resolved "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== parallel-transform@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= dependencies: cyclist "~0.2.2" @@ -8350,21 +7847,21 @@ parallel-transform@^1.1.0: param-case@2.1.x, param-case@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= dependencies: no-case "^2.2.0" parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-asn1@^5.0.0: version "5.1.4" - resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== dependencies: asn1.js "^4.0.0" @@ -8376,7 +7873,7 @@ parse-asn1@^5.0.0: parse-glob@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= dependencies: glob-base "^0.3.0" @@ -8386,14 +7883,14 @@ parse-glob@^3.0.4: parse-json@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= dependencies: error-ex "^1.2.0" parse-json@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= dependencies: error-ex "^1.3.1" @@ -8401,48 +7898,43 @@ parse-json@^4.0.0: parse-ms@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" + resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA== parse-passwd@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= -parse5@4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== - parse5@^3.0.1: version "3.0.3" - resolved "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== dependencies: "@types/node" "*" parseqs@0.0.5: version "0.0.5" - resolved "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= dependencies: better-assert "~1.0.0" parseuri@0.0.5: version "0.0.5" - resolved "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= dependencies: better-assert "~1.0.0" parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== pascal-case@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e" integrity sha1-LVeNNFX2YNpl7KGO+VtODekSdh4= dependencies: camel-case "^3.0.0" @@ -8450,85 +7942,71 @@ pascal-case@^2.0.0: pascalcase@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= -patch-package@^6.1.2: - version "6.1.2" - resolved "https://registry.npmjs.org/patch-package/-/patch-package-6.1.2.tgz#9ed0b3defb5c34ecbef3f334ddfb13e01b3d3ff6" - integrity sha512-5GnzR8lEyeleeariG+hGabUnD2b1yL7AIGFjlLo95zMGRWhZCel58IpeKD46wwPb7i+uNhUI8unV56ogk8Bgqg== - dependencies: - "@yarnpkg/lockfile" "^1.1.0" - chalk "^2.4.2" - cross-spawn "^6.0.5" - find-yarn-workspace-root "^1.2.1" - fs-extra "^7.0.1" - is-ci "^2.0.0" - klaw-sync "^6.0.0" - minimist "^1.2.0" - rimraf "^2.6.3" - semver "^5.6.0" - slash "^2.0.0" - tmp "^0.0.33" - update-notifier "^2.5.0" - path-browserify@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== path-case@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" integrity sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU= dependencies: no-case "^2.2.0" path-dirname@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= path-exists@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= dependencies: pinkie-promise "^2.0.0" path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-is-inside@^1.0.1, path-is-inside@^1.0.2: +path-is-inside@1.0.2, path-is-inside@^1.0.1, path-is-inside@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= path-parse@^1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= +path-to-regexp@2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" + integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== + path-type@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= dependencies: graceful-fs "^4.1.2" @@ -8537,19 +8015,19 @@ path-type@^1.0.0: path-type@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== dependencies: pify "^3.0.0" pathval@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= pbkdf2@^3.0.3: version "3.0.17" - resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== dependencies: create-hash "^1.1.2" @@ -8560,70 +8038,58 @@ pbkdf2@^3.0.3: performance-now@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= picomatch@^2.0.4, picomatch@^2.0.5: version "2.0.7" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== pify@^2.0.0: version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= pify@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= pify@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== pinkie-promise@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= dependencies: pinkie "^2.0.0" pinkie@^2.0.0: version "2.0.4" - resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= -pirates@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" - pkg-dir@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= dependencies: find-up "^1.0.0" pkg-dir@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== dependencies: find-up "^3.0.0" -pn@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== - portfinder@^1.0.20: version "1.0.20" - resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz#bea68632e54b2e13ab7b0c4775e9b41bf270e44a" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.20.tgz#bea68632e54b2e13ab7b0c4775e9b41bf270e44a" integrity sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw== dependencies: async "^1.5.2" @@ -8632,7 +8098,7 @@ portfinder@^1.0.20: portscanner@2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" + resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" integrity sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y= dependencies: async "1.5.2" @@ -8640,12 +8106,12 @@ portscanner@2.1.1: posix-character-classes@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= postcss-calc@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" integrity sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== dependencies: css-unit-converter "^1.1.1" @@ -8655,7 +8121,7 @@ postcss-calc@^7.0.1: postcss-colormin@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== dependencies: browserslist "^4.0.0" @@ -8666,7 +8132,7 @@ postcss-colormin@^4.0.3: postcss-convert-values@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== dependencies: postcss "^7.0.0" @@ -8674,35 +8140,35 @@ postcss-convert-values@^4.0.1: postcss-discard-comments@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== dependencies: postcss "^7.0.0" postcss-discard-duplicates@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== dependencies: postcss "^7.0.0" postcss-discard-empty@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== dependencies: postcss "^7.0.0" postcss-discard-overridden@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== dependencies: postcss "^7.0.0" postcss-load-config@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== dependencies: cosmiconfig "^5.0.0" @@ -8710,7 +8176,7 @@ postcss-load-config@^2.0.0: postcss-loader@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== dependencies: loader-utils "^1.1.0" @@ -8720,7 +8186,7 @@ postcss-loader@^3.0.0: postcss-merge-longhand@^4.0.11: version "4.0.11" - resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== dependencies: css-color-names "0.0.4" @@ -8730,7 +8196,7 @@ postcss-merge-longhand@^4.0.11: postcss-merge-rules@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== dependencies: browserslist "^4.0.0" @@ -8742,7 +8208,7 @@ postcss-merge-rules@^4.0.3: postcss-minify-font-values@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== dependencies: postcss "^7.0.0" @@ -8750,7 +8216,7 @@ postcss-minify-font-values@^4.0.2: postcss-minify-gradients@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== dependencies: cssnano-util-get-arguments "^4.0.0" @@ -8760,7 +8226,7 @@ postcss-minify-gradients@^4.0.2: postcss-minify-params@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== dependencies: alphanum-sort "^1.0.0" @@ -8772,7 +8238,7 @@ postcss-minify-params@^4.0.2: postcss-minify-selectors@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== dependencies: alphanum-sort "^1.0.0" @@ -8782,14 +8248,14 @@ postcss-minify-selectors@^4.0.2: postcss-modules-extract-imports@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== dependencies: postcss "^7.0.5" postcss-modules-local-by-default@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA== dependencies: postcss "^7.0.6" @@ -8798,7 +8264,7 @@ postcss-modules-local-by-default@^2.0.6: postcss-modules-scope@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A== dependencies: postcss "^7.0.6" @@ -8806,7 +8272,7 @@ postcss-modules-scope@^2.1.0: postcss-modules-values@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w== dependencies: icss-replace-symbols "^1.1.0" @@ -8814,14 +8280,14 @@ postcss-modules-values@^2.0.0: postcss-normalize-charset@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== dependencies: postcss "^7.0.0" postcss-normalize-display-values@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== dependencies: cssnano-util-get-match "^4.0.0" @@ -8830,7 +8296,7 @@ postcss-normalize-display-values@^4.0.2: postcss-normalize-positions@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== dependencies: cssnano-util-get-arguments "^4.0.0" @@ -8840,7 +8306,7 @@ postcss-normalize-positions@^4.0.2: postcss-normalize-repeat-style@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== dependencies: cssnano-util-get-arguments "^4.0.0" @@ -8850,7 +8316,7 @@ postcss-normalize-repeat-style@^4.0.2: postcss-normalize-string@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== dependencies: has "^1.0.0" @@ -8859,7 +8325,7 @@ postcss-normalize-string@^4.0.2: postcss-normalize-timing-functions@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== dependencies: cssnano-util-get-match "^4.0.0" @@ -8868,7 +8334,7 @@ postcss-normalize-timing-functions@^4.0.2: postcss-normalize-unicode@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== dependencies: browserslist "^4.0.0" @@ -8877,7 +8343,7 @@ postcss-normalize-unicode@^4.0.1: postcss-normalize-url@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== dependencies: is-absolute-url "^2.0.0" @@ -8887,7 +8353,7 @@ postcss-normalize-url@^4.0.1: postcss-normalize-whitespace@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== dependencies: postcss "^7.0.0" @@ -8895,7 +8361,7 @@ postcss-normalize-whitespace@^4.0.2: postcss-ordered-values@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== dependencies: cssnano-util-get-arguments "^4.0.0" @@ -8904,7 +8370,7 @@ postcss-ordered-values@^4.1.2: postcss-reduce-initial@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== dependencies: browserslist "^4.0.0" @@ -8914,7 +8380,7 @@ postcss-reduce-initial@^4.0.3: postcss-reduce-transforms@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== dependencies: cssnano-util-get-match "^4.0.0" @@ -8924,14 +8390,14 @@ postcss-reduce-transforms@^4.0.2: postcss-scss@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.0.0.tgz#248b0a28af77ea7b32b1011aba0f738bda27dea1" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.0.0.tgz#248b0a28af77ea7b32b1011aba0f738bda27dea1" integrity sha512-um9zdGKaDZirMm+kZFKKVsnKPF7zF7qBAtIfTSnZXD1jZ0JNZIxdB6TxQOjCnlSzLRInVl2v3YdBh/M881C4ug== dependencies: postcss "^7.0.0" postcss-selector-parser@^3.0.0: version "3.1.1" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= dependencies: dot-prop "^4.1.1" @@ -8940,7 +8406,7 @@ postcss-selector-parser@^3.0.0: postcss-selector-parser@^5.0.0-rc.4: version "5.0.0" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== dependencies: cssesc "^2.0.0" @@ -8949,7 +8415,7 @@ postcss-selector-parser@^5.0.0-rc.4: postcss-selector-parser@^6.0.0: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== dependencies: cssesc "^3.0.0" @@ -8958,7 +8424,7 @@ postcss-selector-parser@^6.0.0: postcss-svgo@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== dependencies: is-svg "^3.0.0" @@ -8968,7 +8434,7 @@ postcss-svgo@^4.0.2: postcss-unique-selectors@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== dependencies: alphanum-sort "^1.0.0" @@ -8977,12 +8443,12 @@ postcss-unique-selectors@^4.0.1: postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: version "3.3.1" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== postcss@7.0.14: version "7.0.14" - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== dependencies: chalk "^2.4.2" @@ -8991,21 +8457,16 @@ postcss@7.0.14: postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.5, postcss@^7.0.6: version "7.0.17" - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" integrity sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ== dependencies: chalk "^2.4.2" source-map "^0.6.1" supports-color "^6.1.0" -postinstall-postinstall@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/postinstall-postinstall/-/postinstall-postinstall-2.0.0.tgz#7ba6711b4420575c4f561638836a81faad47f43f" - integrity sha512-3f6qWexsHiT4WKtZc5DRb0FPLilHtARi5KpY4fqban/DJNn8/YhZH8U7dVKVz51WbOxEnR31gV+qYQhvEdHtdQ== - preact-compat@^3.18.5: version "3.19.0" - resolved "https://registry.npmjs.org/preact-compat/-/preact-compat-3.19.0.tgz#a71457b6a3bf051690a4411603bc2085aa061c2f" + resolved "https://registry.yarnpkg.com/preact-compat/-/preact-compat-3.19.0.tgz#a71457b6a3bf051690a4411603bc2085aa061c2f" integrity sha512-f83A4hIhH8Uzhb9GbIcGk8SM19ffWlwP9mDaYwQdRnMdekZwcCA7eIAbeV4EMQaV9C0Yuy8iKgBAtyTKPZQt/Q== dependencies: immutability-helper "^2.7.1" @@ -9017,29 +8478,37 @@ preact-compat@^3.18.5: preact-context@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/preact-context/-/preact-context-1.1.3.tgz#26d06db0f39d8d9c890df5ada9a99a943586ec68" + resolved "https://registry.yarnpkg.com/preact-context/-/preact-context-1.1.3.tgz#26d06db0f39d8d9c890df5ada9a99a943586ec68" integrity sha512-2LcpjZG6JUhBgqziVH+nJtmu9PS5KzWoFx6wX2svXw0oBHhU6e8tQZhEkKLMOAxdmj7gVzApfS/B6V+fjJ/llA== +preact-html@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/preact-html/-/preact-html-2.0.3.tgz#f54874b888084ed2086bbeec89c31f7c3473216d" + integrity sha512-Kkcle3m7SApPHUqE13vF6we6ViOM1feIIetUdVwP+GA7NMN7caRgLjs4Sx9GzSXkylWNAzCRn8B7IQDX9M3YXg== + dependencies: + preact "^8.2.7" + xmldom "0.1.22" + preact-render-to-string@^3.8.2: version "3.8.2" - resolved "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-3.8.2.tgz#bd72964d705a57da3a9e72098acaa073dd3ceff9" + resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-3.8.2.tgz#bd72964d705a57da3a9e72098acaa073dd3ceff9" integrity sha512-przuZPajiurStGgxMoJP0EJeC4xj5CgHv+M7GfF3YxAdhGgEWAkhOSE0xympAFN20uMayntBZpttIZqqLl77fw== dependencies: pretty-format "^3.5.1" preact-transition-group@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/preact-transition-group/-/preact-transition-group-1.1.1.tgz#f0a49327ea515ece34ea2be864c4a7d29e5d6e10" + resolved "https://registry.yarnpkg.com/preact-transition-group/-/preact-transition-group-1.1.1.tgz#f0a49327ea515ece34ea2be864c4a7d29e5d6e10" integrity sha1-8KSTJ+pRXs406ivoZMSn0p5dbhA= -preact@8.4.2: +preact@8.4.2, preact@^8.2.7, preact@^8.4.2: version "8.4.2" - resolved "https://registry.npmjs.org/preact/-/preact-8.4.2.tgz#1263b974a17d1ea80b66590e41ef786ced5d6a23" + resolved "https://registry.yarnpkg.com/preact/-/preact-8.4.2.tgz#1263b974a17d1ea80b66590e41ef786ced5d6a23" integrity sha512-TsINETWiisfB6RTk0wh3/mvxbGRvx+ljeBccZ4Z6MPFKgu/KFGyf2Bmw3Z/jlXhL5JlNKY6QAbA9PVyzIy9//A== prebuild-install@^5.3.0: version "5.3.0" - resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== dependencies: detect-libc "^1.0.3" @@ -9061,87 +8530,76 @@ prebuild-install@^5.3.0: prelude-ls@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= prepend-http@^1.0.0, prepend-http@^1.0.1: version "1.0.4" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= prepend-http@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= preserve@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= prettier@^1.17.1: version "1.18.2" - resolved "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== -pretty-format@^24.8.0: - version "24.8.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== - dependencies: - "@jest/types" "^24.8.0" - ansi-regex "^4.0.0" - ansi-styles "^3.2.0" - react-is "^16.8.4" - pretty-format@^3.5.1: version "3.8.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" integrity sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U= pretty-ms@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/pretty-ms/-/pretty-ms-5.0.0.tgz#6133a8f55804b208e4728f6aa7bf01085e951e24" + resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-5.0.0.tgz#6133a8f55804b208e4728f6aa7bf01085e951e24" integrity sha512-94VRYjL9k33RzfKiGokPBPpsmloBYSf5Ri+Pq19zlsEcUKFob+admeXr5eFDRuPjFmEOcjJvPGdillYOJyvZ7Q== dependencies: parse-ms "^2.1.0" +prismjs@^1.15.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.16.0.tgz#406eb2c8aacb0f5f0f1167930cb83835d10a4308" + integrity sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA== + optionalDependencies: + clipboard "^2.0.0" + private@^0.1.6: version "0.1.8" - resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== process@^0.11.10: version "0.11.10" - resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= progress@^2.0.0: version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise-inflight@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= -prompts@^2.0.1: - version "2.1.0" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== - dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" - prop-types@^15.6.2: version "15.7.2" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== dependencies: loose-envify "^1.4.0" @@ -9150,7 +8608,7 @@ prop-types@^15.6.2: proxy-addr@~2.0.5: version "2.0.5" - resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== dependencies: forwarded "~0.1.2" @@ -9158,22 +8616,22 @@ proxy-addr@~2.0.5: prr@~1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= pseudomap@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= -psl@^1.1.24, psl@^1.1.28: +psl@^1.1.24: version "1.1.33" - resolved "https://registry.npmjs.org/psl/-/psl-1.1.33.tgz#5533d9384ca7aab86425198e10e8053ebfeab661" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.33.tgz#5533d9384ca7aab86425198e10e8053ebfeab661" integrity sha512-LTDP2uSrsc7XCb5lO7A8BI1qYxRe/8EqlRvMeEl6rsnYAqDOl8xHR+8lSAIVfrNaSAlTPTNOCgNjWcoUL3AZsw== public-encrypt@^4.0.0: version "4.0.3" - resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== dependencies: bn.js "^4.1.0" @@ -9185,12 +8643,12 @@ public-encrypt@^4.0.0: pubsub-js@^1.6.0: version "1.7.0" - resolved "https://registry.npmjs.org/pubsub-js/-/pubsub-js-1.7.0.tgz#eca97f9a4217bef62b2d3aaa1552005260cc2e49" + resolved "https://registry.yarnpkg.com/pubsub-js/-/pubsub-js-1.7.0.tgz#eca97f9a4217bef62b2d3aaa1552005260cc2e49" integrity sha512-Pb68P9qFZxnvDipHMuj9oT1FoIgBcXJ9C9eWdHCLZAnulaUoJ3+Y87RhGMYilWpun6DMWVmvK70T4RP4drZMSA== pump@^1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" + resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== dependencies: end-of-stream "^1.1.0" @@ -9198,7 +8656,7 @@ pump@^1.0.0: pump@^2.0.0, pump@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== dependencies: end-of-stream "^1.1.0" @@ -9206,7 +8664,7 @@ pump@^2.0.0, pump@^2.0.1: pump@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== dependencies: end-of-stream "^1.1.0" @@ -9214,7 +8672,7 @@ pump@^3.0.0: pumpify@^1.3.3: version "1.5.1" - resolved "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== dependencies: duplexify "^3.6.0" @@ -9223,47 +8681,47 @@ pumpify@^1.3.3: punycode@1.3.2: version "1.3.2" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= -punycode@^1.2.4, punycode@^1.4.1: +punycode@^1.2.4, punycode@^1.3.2, punycode@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= -punycode@^2.1.0, punycode@^2.1.1: +punycode@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== pwa-helpers@^0.9.1: version "0.9.1" - resolved "https://registry.npmjs.org/pwa-helpers/-/pwa-helpers-0.9.1.tgz#9ea22fa1996ab97df73b276cae962621c3fd2532" + resolved "https://registry.yarnpkg.com/pwa-helpers/-/pwa-helpers-0.9.1.tgz#9ea22fa1996ab97df73b276cae962621c3fd2532" integrity sha512-4sP/C9sSxQ3w80AATmvCEI3R+MHzCwr2RSZEbLyMkeJgV3cRk7ySZRUrQnBDSA7A0/z6dkYtjuXlkhN1ZFw3iA== q@1.*, q@^1.1.2: version "1.5.1" - resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= qs@6.2.3: version "6.2.3" - resolved "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" integrity sha1-HPyyXBCpsrSDBT/zn138kjOQjP4= qs@6.7.0: version "6.7.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== qs@~6.5.2: version "6.5.2" - resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== query-string@^4.1.0: version "4.3.4" - resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= dependencies: object-assign "^4.1.0" @@ -9271,24 +8729,24 @@ query-string@^4.1.0: querystring-es3@^0.2.0: version "0.2.1" - resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= querystring@0.2.0, querystring@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= raf@^3.4.1: version "3.4.1" - resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" + resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== dependencies: performance-now "^2.1.0" randomatic@^3.0.0: version "3.1.1" - resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== dependencies: is-number "^4.0.0" @@ -9297,27 +8755,32 @@ randomatic@^3.0.0: randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" randomfill@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== dependencies: randombytes "^2.0.5" safe-buffer "^5.1.0" +range-parser@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= + range-parser@^1.2.1, range-parser@~1.2.0, range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.4.0, raw-body@^2.3.2: +raw-body@2.4.0: version "2.4.0" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== dependencies: bytes "3.1.0" @@ -9325,9 +8788,19 @@ raw-body@2.4.0, raw-body@^2.3.2: iconv-lite "0.4.24" unpipe "1.0.0" +raw-body@^2.3.2: + version "2.4.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" + integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== + dependencies: + bytes "3.1.0" + http-errors "1.7.3" + iconv-lite "0.4.24" + unpipe "1.0.0" + rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: version "1.2.8" - resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" @@ -9335,48 +8808,31 @@ rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-is@^16.8.1, react-is@^16.8.4: +react-is@^16.8.1: version "16.8.6" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== read-pkg-up@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= dependencies: find-up "^1.0.0" read-pkg "^1.0.0" -read-pkg-up@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" - integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== - dependencies: - find-up "^3.0.0" - read-pkg "^3.0.0" - read-pkg@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= dependencies: load-json-file "^1.0.0" normalize-package-data "^2.3.2" path-type "^1.0.0" -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.6" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== dependencies: core-util-is "~1.0.0" @@ -9389,7 +8845,7 @@ read-pkg@^3.0.0: "readable-stream@>=1.0.33-1 <1.1.0-0": version "1.0.34" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= dependencies: core-util-is "~1.0.0" @@ -9399,7 +8855,7 @@ read-pkg@^3.0.0: "readable-stream@>=1.1.13-1 <1.2.0-0": version "1.1.14" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= dependencies: core-util-is "~1.0.0" @@ -9409,7 +8865,7 @@ read-pkg@^3.0.0: readable-stream@^3.1.1: version "3.4.0" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== dependencies: inherits "^2.0.3" @@ -9418,7 +8874,7 @@ readable-stream@^3.1.1: readdir-enhanced@^1.4.0: version "1.5.2" - resolved "https://registry.npmjs.org/readdir-enhanced/-/readdir-enhanced-1.5.2.tgz#61463048690ac6a455b75b62fa78a88f8dc85e53" + resolved "https://registry.yarnpkg.com/readdir-enhanced/-/readdir-enhanced-1.5.2.tgz#61463048690ac6a455b75b62fa78a88f8dc85e53" integrity sha1-YUYwSGkKxqRVt1ti+nioj43IXlM= dependencies: call-me-maybe "^1.0.1" @@ -9427,7 +8883,7 @@ readdir-enhanced@^1.4.0: readdirp@^2.2.1: version "2.2.1" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== dependencies: graceful-fs "^4.1.11" @@ -9436,26 +8892,19 @@ readdirp@^2.2.1: readdirp@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.0.2.tgz#cba63348e9e42fc1bd334b1d2ef895b6a043cbd6" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.0.2.tgz#cba63348e9e42fc1bd334b1d2ef895b6a043cbd6" integrity sha512-LbyJYv48eywrhOlScq16H/VkCiGKGPC2TpOdZCJ7QXnYEjn3NN/Oblh8QEU3vqfSRBB7OGvh5x45NKiVeNujIQ== dependencies: picomatch "^2.0.4" really-relaxed-json@^0.2.24: version "0.2.24" - resolved "https://registry.npmjs.org/really-relaxed-json/-/really-relaxed-json-0.2.24.tgz#03122087b1807d450b20366a7b3ae43c55077607" + resolved "https://registry.yarnpkg.com/really-relaxed-json/-/really-relaxed-json-0.2.24.tgz#03122087b1807d450b20366a7b3ae43c55077607" integrity sha512-YaY9fR3c+wKOJFSv5dXsPQGtp7zvuOKlmdzUvQvNI/+Hk1/S0eiH+/Pwj9eMRpxlC59lt/szUAG3BLoJaz8JnQ== -realpath-native@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" - integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== - dependencies: - util.promisify "^1.0.0" - redent@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= dependencies: indent-string "^2.1.0" @@ -9463,12 +8912,12 @@ redent@^1.0.0: redux-thunk@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622" integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw== redux@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/redux/-/redux-4.0.1.tgz#436cae6cc40fbe4727689d7c8fae44808f1bfef5" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.1.tgz#436cae6cc40fbe4727689d7c8fae44808f1bfef5" integrity sha512-R7bAtSkk7nY6O/OYMVR9RiBI+XghjF9rlbl5806HJbQph0LJVHZrU5oaO4q70eUKiqMRqm4y07KLTlMZ2BlVmg== dependencies: loose-envify "^1.4.0" @@ -9476,43 +8925,43 @@ redux@^4.0.1: regenerate-unicode-properties@^8.0.2: version "8.1.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== dependencies: regenerate "^1.4.0" regenerate@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== regenerator-runtime@^0.11.0: version "0.11.1" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regenerator-runtime@^0.13.2: version "0.13.2" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447" integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA== regenerator-transform@^0.14.0: version "0.14.0" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w== dependencies: private "^0.1.6" regex-cache@^0.4.2: version "0.4.4" - resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== dependencies: is-equal-shallow "^0.1.3" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== dependencies: extend-shallow "^3.0.2" @@ -9520,22 +8969,22 @@ regex-not@^1.0.0, regex-not@^1.0.2: regex-parser@2.2.10: version "2.2.10" - resolved "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== regexp-tree@^0.1.6: version "0.1.10" - resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ== regexpp@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== regexpu-core@^4.5.4: version "4.5.4" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== dependencies: regenerate "^1.4.0" @@ -9545,84 +8994,76 @@ regexpu-core@^4.5.4: unicode-match-property-ecmascript "^1.0.4" unicode-match-property-value-ecmascript "^1.1.0" +registry-auth-token@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" + integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + registry-auth-token@^3.0.1: version "3.4.0" - resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== dependencies: rc "^1.1.6" safe-buffer "^5.0.1" -registry-url@^3.0.3: +registry-url@3.1.0, registry-url@^3.0.3: version "3.1.0" - resolved "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= dependencies: rc "^1.0.1" regjsgen@^0.5.0: version "0.5.0" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== regjsparser@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== dependencies: jsesc "~0.5.0" relateurl@0.2.x: version "0.2.7" - resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= remove-trailing-separator@^1.0.1: version "1.1.0" - resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= repeat-element@^1.1.2: version "1.1.3" - resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= repeating@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= dependencies: is-finite "^1.0.0" replace-ext@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= -request-promise-core@1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" - integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== - dependencies: - lodash "^4.17.11" - -request-promise-native@^1.0.5: - version "1.0.7" - resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" - integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== - dependencies: - request-promise-core "1.1.2" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - request@^2.87.0, request@^2.88.0: version "2.88.0" - resolved "https://registry.npmjs.org/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" @@ -9648,34 +9089,34 @@ request@^2.87.0, request@^2.88.0: require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= require-main-filename@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== requires-port@1.x.x: version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= resolve-cwd@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= dependencies: resolve-from "^3.0.0" resolve-dir@^1.0.0, resolve-dir@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= dependencies: expand-tilde "^2.0.0" @@ -9683,17 +9124,17 @@ resolve-dir@^1.0.0, resolve-dir@^1.0.1: resolve-from@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" integrity sha1-six699nWiBvItuZTM17rywoYh0g= resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve-url-loader@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.0.tgz#54d8181d33cd1b66a59544d05cadf8e4aa7d37cc" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.0.tgz#54d8181d33cd1b66a59544d05cadf8e4aa7d37cc" integrity sha512-2QcrA+2QgVqsMJ1Hn5NnJXIGCX1clQ1F6QJTqOeiaDw9ACo1G2k+8/shq3mtqne03HOFyskAClqfxKyFBriXZg== dependencies: adjust-sourcemap-loader "2.0.0" @@ -9709,24 +9150,19 @@ resolve-url-loader@^3.1.0: resolve-url@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= - resolve@^1.10.0, resolve@^1.11.0, resolve@^1.3.2, resolve@^1.8.1: version "1.11.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== dependencies: path-parse "^1.0.6" resp-modifier@6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" + resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" integrity sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08= dependencies: debug "^2.2.0" @@ -9734,14 +9170,14 @@ resp-modifier@6.0.2: responselike@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= dependencies: lowercase-keys "^1.0.0" restore-cursor@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= dependencies: onetime "^2.0.0" @@ -9749,17 +9185,17 @@ restore-cursor@^2.0.0: ret@~0.1.10: version "0.1.15" - resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== rework-visit@1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" + resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= rework@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" + resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= dependencies: convert-source-map "^0.3.3" @@ -9767,87 +9203,82 @@ rework@1.0.1: rgb-regex@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" + resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= rgb2hex@^0.1.9: version "0.1.9" - resolved "https://registry.npmjs.org/rgb2hex/-/rgb2hex-0.1.9.tgz#5d3e0e14b0177b568e6f0d5b43e34fbfdb670346" + resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.9.tgz#5d3e0e14b0177b568e6f0d5b43e34fbfdb670346" integrity sha512-32iuQzhOjyT+cv9aAFRBJ19JgHwzQwbjUhH3Fj2sWW2EEGAW8fpFrDFP5ndoKDxJaLO06x1hE3kyuIFrUQtybQ== rgba-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" + resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= rimraf@2, rimraf@2.*, rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3: version "2.6.3" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== dependencies: hash-base "^3.0.0" inherits "^2.0.1" -rsvp@^4.8.4: - version "4.8.5" - resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== - run-async@^2.2.0: version "2.3.0" - resolved "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= dependencies: is-promise "^2.1.0" run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= dependencies: aproba "^1.1.1" rx@4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" + resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I= rxjs@^5.5.6: version "5.5.12" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== dependencies: symbol-observable "1.0.1" rxjs@^6.4.0: version "6.5.2" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== dependencies: tslib "^1.9.0" safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-regex@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= dependencies: ret "~0.1.10" safe-wipe@0.2.4: version "0.2.4" - resolved "https://registry.npmjs.org/safe-wipe/-/safe-wipe-0.2.4.tgz#53b935d7775b739a924b516c95bb2417fa9a451e" + resolved "https://registry.yarnpkg.com/safe-wipe/-/safe-wipe-0.2.4.tgz#53b935d7775b739a924b516c95bb2417fa9a451e" integrity sha1-U7k113dbc5qSS1FslbskF/qaRR4= dependencies: extend "2.*" @@ -9856,27 +9287,12 @@ safe-wipe@0.2.4: "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sane@^4.0.3: - version "4.1.0" - resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== - dependencies: - "@cnakazawa/watch" "^1.0.3" - anymatch "^2.0.0" - capture-exit "^2.0.0" - exec-sh "^0.3.2" - execa "^1.0.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" - sass-convert@^0.5.0: version "0.5.2" - resolved "https://registry.npmjs.org/sass-convert/-/sass-convert-0.5.2.tgz#b1ed42b0e8d6fe98ec7ed6e78a38e26564860f06" + resolved "https://registry.yarnpkg.com/sass-convert/-/sass-convert-0.5.2.tgz#b1ed42b0e8d6fe98ec7ed6e78a38e26564860f06" integrity sha1-se1CsOjW/pjsftbnijjiZWSGDwY= dependencies: concat-stream "^1.4.7" @@ -9893,7 +9309,7 @@ sass-convert@^0.5.0: sass-graph@^2.2.4: version "2.2.4" - resolved "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" integrity sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k= dependencies: glob "^7.0.0" @@ -9903,7 +9319,7 @@ sass-graph@^2.2.4: sass-loader@^7.1.0: version "7.1.0" - resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d" integrity sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w== dependencies: clone-deep "^2.0.1" @@ -9919,14 +9335,14 @@ sass-loader@^7.1.0: sassdoc-extras@^2.5.0: version "2.5.0" - resolved "https://registry.npmjs.org/sassdoc-extras/-/sassdoc-extras-2.5.0.tgz#ebea981584f8264ba787d9ffe7719a690bb090f3" + resolved "https://registry.yarnpkg.com/sassdoc-extras/-/sassdoc-extras-2.5.0.tgz#ebea981584f8264ba787d9ffe7719a690bb090f3" integrity sha512-xUE3b6aQvTtAD1amW7qLU2xYgH8AgnvTvW8ljCOW07ag5pcY3KpyvwyvB5+cV5eTb5kMGrqw/JD6a5lc0+0+ug== dependencies: marked "^0.3.19" sassdoc-theme-default@^2.8.1, sassdoc-theme-default@^2.8.2: version "2.8.2" - resolved "https://registry.npmjs.org/sassdoc-theme-default/-/sassdoc-theme-default-2.8.2.tgz#470d5cfbc1e867b5c84e7791d1a9c5af07bc9435" + resolved "https://registry.yarnpkg.com/sassdoc-theme-default/-/sassdoc-theme-default-2.8.2.tgz#470d5cfbc1e867b5c84e7791d1a9c5af07bc9435" integrity sha512-u+LsyJEBUUvMnYaDuUq/HQT2hBcA/o6ENpni2Fvcfn7h1Nyj7NlKExUm2lJQwUTqM3Xe3E5XxzKjmURzzLmpRw== dependencies: babel-runtime "^6.22.0" @@ -9941,7 +9357,7 @@ sassdoc-theme-default@^2.8.1, sassdoc-theme-default@^2.8.2: sassdoc@^2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/sassdoc/-/sassdoc-2.7.0.tgz#41504feb9ae9b0ffaa45520ed247093c376ef0fc" + resolved "https://registry.yarnpkg.com/sassdoc/-/sassdoc-2.7.0.tgz#41504feb9ae9b0ffaa45520ed247093c376ef0fc" integrity sha512-mj+kJJdZwgg2Jw41rR9owLZbrphEoSH+p2V3xV9YWZOy15cL7O25OcWFPZ2Cqcc0ETP+VybN9ZWe+GXSFq00Xw== dependencies: ansi-styles "^3.2.1" @@ -9975,12 +9391,12 @@ sassdoc@^2.7.0: sax@^1.2.4, sax@~1.2.4: version "1.2.4" - resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== schema-utils@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== dependencies: ajv "^6.1.0" @@ -9989,49 +9405,54 @@ schema-utils@^1.0.0: scss-comment-parser@^0.8.4: version "0.8.4" - resolved "https://registry.npmjs.org/scss-comment-parser/-/scss-comment-parser-0.8.4.tgz#8e82c3fcf7fdbbb7f172f8955e2aa88b685f86d8" + resolved "https://registry.yarnpkg.com/scss-comment-parser/-/scss-comment-parser-0.8.4.tgz#8e82c3fcf7fdbbb7f172f8955e2aa88b685f86d8" integrity sha512-ERw4BODvM22n8Ke8hJxuH3fKXLm0Q4chfUNHwDSOAExCths2ZXq8PT32vms4R9Om6dffRSXzzGZS1p38UU4EAg== dependencies: cdocparser "^0.13.0" scss-tokenizer@^0.2.3: version "0.2.3" - resolved "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" + resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= dependencies: js-base64 "^2.1.8" source-map "^0.4.2" +select@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" + integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= + semver-diff@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= dependencies: semver "^5.0.3" semver-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" + resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" integrity sha1-kqSWkGX5xwxpR1PVUkj8aPj2Usk= "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: version "5.7.0" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== semver@^6.0.0, semver@^6.1.1: version "6.1.2" - resolved "https://registry.npmjs.org/semver/-/semver-6.1.2.tgz#079960381376a3db62eb2edc8a3bfb10c7cfe318" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.2.tgz#079960381376a3db62eb2edc8a3bfb10c7cfe318" integrity sha512-z4PqiCpomGtWj8633oeAdXm1Kn1W++3T8epkZYnwiVgIYIJ0QHszhInYSJTYxebByQH7KVCEAn8R9duzZW2PhQ== semver@~5.3.0: version "5.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= send@0.16.2: version "0.16.2" - resolved "https://registry.npmjs.org/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" + resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw== dependencies: debug "2.6.9" @@ -10050,7 +9471,7 @@ send@0.16.2: send@0.17.1: version "0.17.1" - resolved "https://registry.npmjs.org/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== dependencies: debug "2.6.9" @@ -10069,7 +9490,7 @@ send@0.17.1: sentence-case@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4" integrity sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ= dependencies: no-case "^2.2.0" @@ -10077,12 +9498,26 @@ sentence-case@^2.1.0: serialize-javascript@^1.7.0: version "1.7.0" - resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== +serve-handler@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.0.2.tgz#c5afbace1a4aa28645f26483d64725b45f285048" + integrity sha512-D1zgDpvx9Rgjip6rzY2QBjlZwfr/oiDSg66HipOWkEw1appHn7/mXdVRL6F8+bd1KD117Wch4+4x78OTXQVwDg== + dependencies: + bytes "3.0.0" + content-disposition "0.5.2" + fast-url-parser "1.1.3" + mime-types "2.1.18" + minimatch "3.0.4" + path-is-inside "1.0.2" + path-to-regexp "2.2.1" + range-parser "1.2.0" + serve-index@1.9.1: version "1.9.1" - resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= dependencies: accepts "~1.3.4" @@ -10095,7 +9530,7 @@ serve-index@1.9.1: serve-static@1.13.2: version "1.13.2" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw== dependencies: encodeurl "~1.0.2" @@ -10105,7 +9540,7 @@ serve-static@1.13.2: serve-static@1.14.1: version "1.14.1" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== dependencies: encodeurl "~1.0.2" @@ -10113,19 +9548,34 @@ serve-static@1.14.1: parseurl "~1.3.3" send "0.17.1" +serve@^11.0.0: + version "11.0.2" + resolved "https://registry.yarnpkg.com/serve/-/serve-11.0.2.tgz#b8ac227d3005238d9aa3946313c191d6c2b16dd9" + integrity sha512-TjjjwUdPU+STkUyxvZFtkWOTRXdNDNMfot9Z/f97eEeyjPAV69o1TmJrNAlDbvpPu1JEjCoWiGCjkel7kWNF4A== + dependencies: + "@zeit/schemas" "2.6.0" + ajv "6.5.3" + arg "2.0.0" + boxen "1.3.0" + chalk "2.4.1" + clipboardy "1.2.3" + compression "1.7.3" + serve-handler "6.0.2" + update-check "1.5.2" + server-destroy@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" + resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" integrity sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0= set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== dependencies: extend-shallow "^2.0.1" @@ -10135,22 +9585,22 @@ set-value@^2.0.0, set-value@^2.0.1: setimmediate@^1.0.4: version "1.0.5" - resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= setprototypeof@1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== setprototypeof@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== sha.js@^2.4.0, sha.js@^2.4.8: version "2.4.11" - resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== dependencies: inherits "^2.0.1" @@ -10158,7 +9608,7 @@ sha.js@^2.4.0, sha.js@^2.4.8: shallow-clone@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA== dependencies: is-extendable "^0.1.1" @@ -10167,7 +9617,7 @@ shallow-clone@^1.0.0: sharp@^0.22.1: version "0.22.1" - resolved "https://registry.npmjs.org/sharp/-/sharp-0.22.1.tgz#a67c0e75567f03dd5a7861b901fec04072c5b0f4" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.22.1.tgz#a67c0e75567f03dd5a7861b901fec04072c5b0f4" integrity sha512-lXzSk/FL5b/MpWrT1pQZneKe25stVjEbl6uhhJcTULm7PhmJgKKRbTDM/vtjyUuC/RLqL2PRyC4rpKwbv3soEw== dependencies: color "^3.1.1" @@ -10183,39 +9633,39 @@ sharp@^0.22.1: shebang-command@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= dependencies: shebang-regex "^1.0.0" shebang-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= shellwords@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== sift@*: version "8.5.0" - resolved "https://registry.npmjs.org/sift/-/sift-8.5.0.tgz#6ab3cb7465cecb58296778ecc3fa22245f3da166" + resolved "https://registry.yarnpkg.com/sift/-/sift-8.5.0.tgz#6ab3cb7465cecb58296778ecc3fa22245f3da166" integrity sha512-IdHwlvlDbHYmcPYOfkU89Qo29cPR7fLM0htfeUP9YxeU213oKYH/6d416z+vFj6ArCsH+AzQQ8/rd1TIzRE7LQ== signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= simple-concat@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= simple-get@^2.7.0: version "2.8.1" - resolved "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== dependencies: decompress-response "^3.3.0" @@ -10224,7 +9674,7 @@ simple-get@^2.7.0: simple-get@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/simple-get/-/simple-get-3.0.3.tgz#924528ac3f9d7718ce5e9ec1b1a69c0be4d62efa" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.0.3.tgz#924528ac3f9d7718ce5e9ec1b1a69c0be4d62efa" integrity sha512-Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw== dependencies: decompress-response "^3.3.0" @@ -10233,39 +9683,34 @@ simple-get@^3.0.3: simple-swizzle@^0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= dependencies: is-arrayish "^0.3.1" -sisteransi@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" - integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ== - skatejs@^5.2.4: version "5.2.4" - resolved "https://registry.npmjs.org/skatejs/-/skatejs-5.2.4.tgz#945f1451ffb2ed801d19e9baa03f0a259eb84e9e" + resolved "https://registry.yarnpkg.com/skatejs/-/skatejs-5.2.4.tgz#945f1451ffb2ed801d19e9baa03f0a259eb84e9e" integrity sha512-Ygd4bB6VTiSFeVpry9R/EWej+/PGrYhO1eMMwsxDaBLMkzXfZRm0CHvggb7RAMEr0VCMc5cBt58I6IU0q6GLvw== slash@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= slash@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== sleep-promise@^8.0.1: version "8.0.1" - resolved "https://registry.npmjs.org/sleep-promise/-/sleep-promise-8.0.1.tgz#8d795a27ea23953df6b52b91081e5e22665993c5" + resolved "https://registry.yarnpkg.com/sleep-promise/-/sleep-promise-8.0.1.tgz#8d795a27ea23953df6b52b91081e5e22665993c5" integrity sha1-jXlaJ+ojlT32tSuRCB5eImZZk8U= slice-ansi@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: ansi-styles "^3.2.0" @@ -10278,19 +9723,19 @@ slice-ansi@^2.1.0: smoothscroll-polyfill@^0.4.4: version "0.4.4" - resolved "https://registry.npmjs.org/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz#3a259131dc6930e6ca80003e1cb03b603b69abf8" + resolved "https://registry.yarnpkg.com/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz#3a259131dc6930e6ca80003e1cb03b603b69abf8" integrity sha512-TK5ZA9U5RqCwMpfoMq/l1mrH0JAR7y7KRvOBx0n2869aLxch+gT9GhN3yUfjiw+d/DiF1mKo14+hd62JyMmoBg== snake-case@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" integrity sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8= dependencies: no-case "^2.2.0" snapdragon-node@^2.0.1: version "2.1.1" - resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== dependencies: define-property "^1.0.0" @@ -10299,14 +9744,14 @@ snapdragon-node@^2.0.1: snapdragon-util@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== dependencies: kind-of "^3.2.0" snapdragon@^0.8.1: version "0.8.2" - resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== dependencies: base "^0.11.1" @@ -10320,12 +9765,12 @@ snapdragon@^0.8.1: socket.io-adapter@~1.1.0: version "1.1.1" - resolved "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" integrity sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs= socket.io-client@2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" integrity sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ== dependencies: backo2 "1.0.2" @@ -10345,7 +9790,7 @@ socket.io-client@2.1.1: socket.io-client@^2.0.4: version "2.2.0" - resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.2.0.tgz#84e73ee3c43d5020ccc1a258faeeb9aec2723af7" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.2.0.tgz#84e73ee3c43d5020ccc1a258faeeb9aec2723af7" integrity sha512-56ZrkTDbdTLmBIyfFYesgOxsjcLnwAKoN4CiPyTVkMQj3zTUh0QAx3GbvIvLpFEOvQWu92yyWICxB0u7wkVbYA== dependencies: backo2 "1.0.2" @@ -10365,7 +9810,7 @@ socket.io-client@^2.0.4: socket.io-parser@~3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" integrity sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA== dependencies: component-emitter "1.2.1" @@ -10374,7 +9819,7 @@ socket.io-parser@~3.2.0: socket.io-parser@~3.3.0: version "3.3.0" - resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" integrity sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng== dependencies: component-emitter "1.2.1" @@ -10383,7 +9828,7 @@ socket.io-parser@~3.3.0: socket.io@2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" integrity sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA== dependencies: debug "~3.1.0" @@ -10395,26 +9840,26 @@ socket.io@2.1.1: sort-keys@^1.0.0: version "1.1.2" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= dependencies: is-plain-obj "^1.0.0" sort-keys@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= dependencies: is-plain-obj "^1.0.0" source-list-map@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== dependencies: atob "^2.1.1" @@ -10423,9 +9868,9 @@ source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@^0.5.6, source-map-support@~0.5.10: +source-map-support@~0.5.10: version "0.5.12" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== dependencies: buffer-from "^1.0.0" @@ -10433,29 +9878,29 @@ source-map-support@^0.5.6, source-map-support@~0.5.10: source-map-url@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@^0.4.2: version "0.4.4" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" integrity sha1-66T12pwNyZneaAMti092FzZSA2s= dependencies: amdefine ">=0.0.4" source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= spdx-correct@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== dependencies: spdx-expression-parse "^3.0.0" @@ -10463,12 +9908,12 @@ spdx-correct@^3.0.0: spdx-exceptions@^2.1.0: version "2.2.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== spdx-expression-parse@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== dependencies: spdx-exceptions "^2.1.0" @@ -10476,24 +9921,24 @@ spdx-expression-parse@^3.0.0: spdx-license-ids@^3.0.0: version "3.0.4" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" - resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== dependencies: extend-shallow "^3.0.0" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= sshpk@^1.7.0: version "1.16.1" - resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== dependencies: asn1 "~0.2.3" @@ -10508,29 +9953,24 @@ sshpk@^1.7.0: ssri@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== dependencies: figgy-pudding "^3.5.1" stable@^0.1.8: version "0.1.8" - resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== -stack-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" - integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== - standalone-react-addons-pure-render-mixin@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/standalone-react-addons-pure-render-mixin/-/standalone-react-addons-pure-render-mixin-0.1.1.tgz#3c7409f4c79c40de9ac72c616cf679a994f37551" + resolved "https://registry.yarnpkg.com/standalone-react-addons-pure-render-mixin/-/standalone-react-addons-pure-render-mixin-0.1.1.tgz#3c7409f4c79c40de9ac72c616cf679a994f37551" integrity sha1-PHQJ9MecQN6axyxhbPZ5qZTzdVE= static-extend@^0.1.1: version "0.1.2" - resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= dependencies: define-property "^0.2.5" @@ -10538,39 +9978,34 @@ static-extend@^0.1.1: "statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= statuses@~1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= statuses@~1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew== stdout-stream@^1.4.0: version "1.4.1" - resolved "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" + resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== dependencies: readable-stream "^2.0.1" -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - stickyfilljs@^2.0.3: version "2.1.0" - resolved "https://registry.npmjs.org/stickyfilljs/-/stickyfilljs-2.1.0.tgz#46dabb599d8275d185bdb97db597f86a2e3afa7b" + resolved "https://registry.yarnpkg.com/stickyfilljs/-/stickyfilljs-2.1.0.tgz#46dabb599d8275d185bdb97db597f86a2e3afa7b" integrity sha512-LkG0BXArL5HbW2O09IAXfnBQfpScgGqJuUDUrI3Ire5YKjRz/EhakIZEJogHwgXeQ4qnTicM9sK9uYfWN11qKg== stream-browserify@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== dependencies: inherits "~2.0.1" @@ -10578,7 +10013,7 @@ stream-browserify@^2.0.1: stream-each@^1.1.0: version "1.2.3" - resolved "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== dependencies: end-of-stream "^1.1.0" @@ -10586,7 +10021,7 @@ stream-each@^1.1.0: stream-http@^2.7.2: version "2.8.3" - resolved "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== dependencies: builtin-status-codes "^3.0.0" @@ -10597,12 +10032,12 @@ stream-http@^2.7.2: stream-shift@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= stream-throttle@^0.1.3: version "0.1.3" - resolved "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" + resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" integrity sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM= dependencies: commander "^2.2.0" @@ -10610,20 +10045,12 @@ stream-throttle@^0.1.3: strict-uri-encode@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= -string-length@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" - integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= - dependencies: - astral-regex "^1.0.0" - strip-ansi "^4.0.0" - string-replace-loader@^2.1.1: version "2.2.0" - resolved "https://registry.npmjs.org/string-replace-loader/-/string-replace-loader-2.2.0.tgz#0a0e6543fcec783d85c353a3e96a23872d45a94f" + resolved "https://registry.yarnpkg.com/string-replace-loader/-/string-replace-loader-2.2.0.tgz#0a0e6543fcec783d85c353a3e96a23872d45a94f" integrity sha512-Ukt4ZC8+xVWdBRut3/iwnPJCNL1yV8AbVKXn8UcWdYrHgtuW4UDDAbBSi/J/CQDEWQBt824AJvPYahF23eJLRg== dependencies: loader-utils "^1.2.3" @@ -10631,7 +10058,7 @@ string-replace-loader@^2.1.1: string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= dependencies: code-point-at "^1.0.0" @@ -10640,7 +10067,7 @@ string-width@^1.0.1, string-width@^1.0.2: "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== dependencies: is-fullwidth-code-point "^2.0.0" @@ -10648,7 +10075,7 @@ string-width@^1.0.1, string-width@^1.0.2: string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== dependencies: emoji-regex "^7.0.1" @@ -10657,47 +10084,47 @@ string-width@^3.0.0, string-width@^3.1.0: string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.2.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== dependencies: safe-buffer "~5.1.0" string_decoder@~0.10.x: version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= dependencies: ansi-regex "^2.0.0" strip-ansi@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= dependencies: ansi-regex "^3.0.0" strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" strip-bom-stream@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" + resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" integrity sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4= dependencies: first-chunk-stream "^1.0.0" @@ -10705,41 +10132,36 @@ strip-bom-stream@^1.0.0: strip-bom@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= dependencies: is-utf8 "^0.2.0" -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= - strip-eof@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= strip-indent@^1.0.0, strip-indent@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= dependencies: get-stdin "^4.0.1" strip-indent@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= strip-json-comments@2.0.1, strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= style-loader@^0.23.1: version "0.23.1" - resolved "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== dependencies: loader-utils "^1.1.0" @@ -10747,12 +10169,12 @@ style-loader@^0.23.1: style-properties@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/style-properties/-/style-properties-1.3.1.tgz#7f8617421f2959157f08d09eecba8688a15854c5" + resolved "https://registry.yarnpkg.com/style-properties/-/style-properties-1.3.1.tgz#7f8617421f2959157f08d09eecba8688a15854c5" integrity sha1-f4YXQh8pWRV/CNCe7LqGiKFYVMU= stylehacks@^4.0.0: version "4.0.3" - resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== dependencies: browserslist "^4.0.0" @@ -10761,33 +10183,33 @@ stylehacks@^4.0.0: supports-color@6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== dependencies: has-flag "^3.0.0" supports-color@6.1.0, supports-color@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== dependencies: has-flag "^3.0.0" supports-color@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" svgo@^1.0.0, svgo@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316" integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA== dependencies: chalk "^2.4.1" @@ -10807,7 +10229,7 @@ svgo@^1.0.0, svgo@^1.2.2: swap-case@^1.1.0: version "1.1.2" - resolved "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3" + resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3" integrity sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM= dependencies: lower-case "^1.1.1" @@ -10815,22 +10237,17 @@ swap-case@^1.1.0: symbol-observable@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ= symbol-observable@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== -symbol-tree@^3.2.2: - version "3.2.4" - resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - table@^5.2.3: version "5.4.1" - resolved "https://registry.npmjs.org/table/-/table-5.4.1.tgz#0691ae2ebe8259858efb63e550b6d5f9300171e8" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.1.tgz#0691ae2ebe8259858efb63e550b6d5f9300171e8" integrity sha512-E6CK1/pZe2N75rGZQotFOdmzWQ1AILtgYbMAbAjvms0S1l5IDB47zG3nCnFGB/w+7nB3vKofbLXCH7HPBo864w== dependencies: ajv "^6.9.1" @@ -10840,12 +10257,12 @@ table@^5.2.3: tapable@^1.0.0, tapable@^1.0.0-beta.5, tapable@^1.1.0: version "1.1.3" - resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== tar-fs@^1.13.0: version "1.16.3" - resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== dependencies: chownr "^1.0.1" @@ -10855,7 +10272,7 @@ tar-fs@^1.13.0: tar-stream@^1.1.2: version "1.6.2" - resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== dependencies: bl "^1.0.0" @@ -10868,7 +10285,7 @@ tar-stream@^1.1.2: tar@^2.0.0: version "2.2.2" - resolved "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== dependencies: block-stream "*" @@ -10877,7 +10294,7 @@ tar@^2.0.0: tar@^4, tar@^4.4.8: version "4.4.10" - resolved "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== dependencies: chownr "^1.1.1" @@ -10890,14 +10307,14 @@ tar@^4, tar@^4.4.8: term-size@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= dependencies: execa "^0.7.0" terser-webpack-plugin@^1.1.0: version "1.3.0" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4" integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg== dependencies: cacache "^11.3.2" @@ -10913,44 +10330,29 @@ terser-webpack-plugin@^1.1.0: terser@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374" integrity sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA== dependencies: commander "^2.19.0" source-map "~0.6.1" source-map-support "~0.5.10" -test-exclude@^5.2.3: - version "5.2.3" - resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" - integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== - dependencies: - glob "^7.1.3" - minimatch "^3.0.4" - read-pkg-up "^4.0.0" - require-main-filename "^2.0.0" - text-table@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= tfunk@^3.0.1: version "3.1.0" - resolved "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b" + resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b" integrity sha1-OORBT8ZJd9h6/apy+sttKfgve1s= dependencies: chalk "^1.1.1" object-path "^0.9.0" -throat@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" - integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= - through2-filter@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" + resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" integrity sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw= dependencies: through2 "~2.0.0" @@ -10958,7 +10360,7 @@ through2-filter@^2.0.0: through2-filter@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz#700e786df2367c2c88cd8aa5be4cf9c1e7831254" + resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-3.0.0.tgz#700e786df2367c2c88cd8aa5be4cf9c1e7831254" integrity sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA== dependencies: through2 "~2.0.0" @@ -10966,7 +10368,7 @@ through2-filter@^3.0.0: through2@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/through2/-/through2-1.1.1.tgz#0847cbc4449f3405574dbdccd9bb841b83ac3545" + resolved "https://registry.yarnpkg.com/through2/-/through2-1.1.1.tgz#0847cbc4449f3405574dbdccd9bb841b83ac3545" integrity sha1-CEfLxESfNAVXTb3M2buEG4OsNUU= dependencies: readable-stream ">=1.1.13-1 <1.2.0-0" @@ -10974,7 +10376,7 @@ through2@1.1.1: through2@^0.6.0: version "0.6.5" - resolved "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= dependencies: readable-stream ">=1.0.33-1 <1.1.0-0" @@ -10982,7 +10384,7 @@ through2@^0.6.0: through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: version "2.0.5" - resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" @@ -10990,29 +10392,34 @@ through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: through@^2.3.6: version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= timed-out@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= timers-browserify@^2.0.4: version "2.0.10" - resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== dependencies: setimmediate "^1.0.4" timsort@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" + resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= +tiny-emitter@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" + integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== + title-case@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" + resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" integrity sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o= dependencies: no-case "^2.2.0" @@ -11020,58 +10427,53 @@ title-case@^2.1.0: tmp@^0.0.33: version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= - to-absolute-glob@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" + resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" integrity sha1-HN+kcqnvUMI57maZm2YsoOs5k38= dependencies: extend-shallow "^2.0.1" to-array@0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= to-arraybuffer@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= to-buffer@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" + resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-object-path@^0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= dependencies: kind-of "^3.0.2" to-readable-stream@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== to-regex-range@^2.1.0: version "2.1.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= dependencies: is-number "^3.0.0" @@ -11079,14 +10481,14 @@ to-regex-range@^2.1.0: to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" to-regex@^3.0.1, to-regex@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== dependencies: define-property "^2.0.2" @@ -11096,52 +10498,37 @@ to-regex@^3.0.1, to-regex@^3.0.2: toidentifier@1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== -tough-cookie@^2.3.3, tough-cookie@^2.3.4: - version "2.5.0" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - tough-cookie@~2.4.3: version "2.4.3" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== dependencies: psl "^1.1.24" punycode "^1.4.1" -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - trim-newlines@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= trim-right@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= "true-case-path@^1.0.2": version "1.0.3" - resolved "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" + resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== dependencies: glob "^7.1.2" ts-loader@^6.0.2: version "6.0.4" - resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-6.0.4.tgz#bc331ad91a887a60632d94c9f79448666f2c4b63" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-6.0.4.tgz#bc331ad91a887a60632d94c9f79448666f2c4b63" integrity sha512-p2zJYe7OtwR+49kv4gs7v4dMrfYD1IPpOtqiSPCbe8oR+4zEBtdHwzM7A7M91F+suReqgzZrlClk4LRSSp882g== dependencies: chalk "^2.3.0" @@ -11152,41 +10539,41 @@ ts-loader@^6.0.2: tslib@^1.9.0: version "1.10.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== tty-browserify@0.0.0: version "0.0.0" - resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= tunnel-agent@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" - resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= type-check@~0.3.2: version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= dependencies: prelude-ls "~1.1.2" type-detect@^4.0.0, type-detect@^4.0.5: version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-is@~1.6.17, type-is@~1.6.18: version "1.6.18" - resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" @@ -11194,35 +10581,35 @@ type-is@~1.6.17, type-is@~1.6.18: type@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/type/-/type-1.0.1.tgz#084c9a17fcc9151a2cdb1459905c2e45e4bb7d61" + resolved "https://registry.yarnpkg.com/type/-/type-1.0.1.tgz#084c9a17fcc9151a2cdb1459905c2e45e4bb7d61" integrity sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw== typedarray@^0.0.6: version "0.0.6" - resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@^3.5.1: version "3.5.2" - resolved "https://registry.npmjs.org/typescript/-/typescript-3.5.2.tgz#a09e1dc69bc9551cadf17dba10ee42cf55e5d56c" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.5.2.tgz#a09e1dc69bc9551cadf17dba10ee42cf55e5d56c" integrity sha512-7KxJovlYhTX5RaRbUdkAXN1KUZ8PwWlTzQdHV6xNqvuFOs7+WBo10TQUqT19Q/Jz2hk5v9TQDIhyLhhJY4p5AA== ua-parser-js@0.7.17: version "0.7.17" - resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" integrity sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g== uglify-js@3.4.x: version "3.4.10" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== dependencies: commander "~2.19.0" source-map "~0.6.1" -uglify-js@^3.1.4, uglify-js@^3.5.12: +uglify-js@^3.5.12: version "3.6.0" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg== dependencies: commander "~2.20.0" @@ -11230,7 +10617,7 @@ uglify-js@^3.1.4, uglify-js@^3.5.12: uglifyjs-webpack-plugin@^2.1.3: version "2.1.3" - resolved "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.3.tgz#b00a18d1acda271deb755c99ba0d93568156eb76" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.3.tgz#b00a18d1acda271deb755c99ba0d93568156eb76" integrity sha512-/lRkCaFbI6pT3CxsQHDhBcqB6tocOnqba0vJqJ2DzSWFLRgOIiip8q0nVFydyXk+n8UtF7ZuS6hvWopcYH5FuA== dependencies: cacache "^11.3.2" @@ -11245,17 +10632,17 @@ uglifyjs-webpack-plugin@^2.1.3: ultron@~1.1.0: version "1.1.1" - resolved "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== unicode-match-property-ecmascript@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== dependencies: unicode-canonical-property-names-ecmascript "^1.0.4" @@ -11263,17 +10650,17 @@ unicode-match-property-ecmascript@^1.0.4: unicode-match-property-value-ecmascript@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== unicode-property-aliases-ecmascript@^1.0.4: version "1.0.5" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== union-value@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== dependencies: arr-union "^3.1.0" @@ -11283,31 +10670,31 @@ union-value@^1.0.0: uniq@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= uniqs@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= unique-filename@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== dependencies: unique-slug "^2.0.0" unique-slug@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== dependencies: imurmurhash "^0.1.4" unique-stream@^2.0.2: version "2.3.1" - resolved "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz#c65d110e9a4adf9a6c5948b28053d9a8d04cbeac" + resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.3.1.tgz#c65d110e9a4adf9a6c5948b28053d9a8d04cbeac" integrity sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A== dependencies: json-stable-stringify-without-jsonify "^1.0.1" @@ -11315,36 +10702,36 @@ unique-stream@^2.0.2: unique-string@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= dependencies: crypto-random-string "^1.0.0" universal-user-agent@^2.0.0, universal-user-agent@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz#5abfbcc036a1ba490cb941f8fd68c46d3669e8e4" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-2.1.0.tgz#5abfbcc036a1ba490cb941f8fd68c46d3669e8e4" integrity sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q== dependencies: os-name "^3.0.0" universalify@^0.1.0: version "0.1.2" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= unquote@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= unset-value@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= dependencies: has-value "^0.3.1" @@ -11352,17 +10739,25 @@ unset-value@^1.0.0: unzip-response@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= upath@^1.1.1: version "1.1.2" - resolved "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== +update-check@1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.2.tgz#2fe09f725c543440b3d7dabe8971f2d5caaedc28" + integrity sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ== + dependencies: + registry-auth-token "3.3.2" + registry-url "3.1.0" + update-notifier@^2.5.0: version "2.5.0" - resolved "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== dependencies: boxen "^1.2.1" @@ -11378,38 +10773,38 @@ update-notifier@^2.5.0: upper-case-first@^1.1.0, upper-case-first@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" integrity sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU= dependencies: upper-case "^1.1.1" upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= uppercamelcase@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/uppercamelcase/-/uppercamelcase-3.0.0.tgz#380b321b8d73cba16fec4d752a575152d1ef7317" + resolved "https://registry.yarnpkg.com/uppercamelcase/-/uppercamelcase-3.0.0.tgz#380b321b8d73cba16fec4d752a575152d1ef7317" integrity sha1-OAsyG41zy6Fv7E11KldRUtHvcxc= dependencies: camelcase "^4.1.0" uri-js@^4.2.2: version "4.2.2" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== dependencies: punycode "^2.1.0" urix@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= url-loader@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg== dependencies: loader-utils "^1.1.0" @@ -11418,26 +10813,26 @@ url-loader@^1.1.2: url-parse-lax@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= dependencies: prepend-http "^1.0.1" url-parse-lax@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= dependencies: prepend-http "^2.0.0" url-template@^2.0.8: version "2.0.8" - resolved "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" + resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= url@^0.11.0: version "0.11.0" - resolved "https://registry.npmjs.org/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= dependencies: punycode "1.3.2" @@ -11445,17 +10840,17 @@ url@^0.11.0: use@^3.1.0: version "3.1.1" - resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= -util.promisify@^1.0.0, util.promisify@~1.0.0: +util.promisify@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== dependencies: define-properties "^1.1.2" @@ -11463,41 +10858,41 @@ util.promisify@^1.0.0, util.promisify@~1.0.0: util@0.10.3: version "0.10.3" - resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= dependencies: inherits "2.0.1" util@^0.11.0: version "0.11.1" - resolved "https://registry.npmjs.org/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== dependencies: inherits "2.0.3" utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= uuid@^3.1.0, uuid@^3.3.2: version "3.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== v8-compile-cache@2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== vali-date@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" + resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" integrity sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY= validate-npm-package-license@^3.0.1: version "3.0.4" - resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== dependencies: spdx-correct "^3.0.0" @@ -11505,17 +10900,17 @@ validate-npm-package-license@^3.0.1: vary@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= vendors@^1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== verror@1.10.0: version "1.10.0" - resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= dependencies: assert-plus "^1.0.0" @@ -11524,7 +10919,7 @@ verror@1.10.0: vinyl-fs@^2.4.4: version "2.4.4" - resolved "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" + resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" integrity sha1-vm/zJwy1Xf19MGNkDegfJddTIjk= dependencies: duplexify "^3.2.0" @@ -11547,7 +10942,7 @@ vinyl-fs@^2.4.4: vinyl-source-stream@^1.0.0: version "1.1.2" - resolved "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz#62b53a135610a896e98ca96bee3a87f008a8e780" + resolved "https://registry.yarnpkg.com/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz#62b53a135610a896e98ca96bee3a87f008a8e780" integrity sha1-YrU6E1YQqJbpjKlr7jqH8Aio54A= dependencies: through2 "^2.0.3" @@ -11555,14 +10950,14 @@ vinyl-source-stream@^1.0.0: vinyl-string@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/vinyl-string/-/vinyl-string-1.0.2.tgz#3a249efeb0d36c4cb0a5e59e30d68e54f739d8e3" + resolved "https://registry.yarnpkg.com/vinyl-string/-/vinyl-string-1.0.2.tgz#3a249efeb0d36c4cb0a5e59e30d68e54f739d8e3" integrity sha1-OiSe/rDTbEywpeWeMNaOVPc52OM= dependencies: vinyl "^1.1.1" vinyl@^0.4.3: version "0.4.6" - resolved "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" integrity sha1-LzVsh6VQolVGHza76ypbqL94SEc= dependencies: clone "^0.2.0" @@ -11570,7 +10965,7 @@ vinyl@^0.4.3: vinyl@^1.0.0, vinyl@^1.1.1: version "1.2.0" - resolved "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" integrity sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ= dependencies: clone "^1.0.0" @@ -11579,26 +10974,12 @@ vinyl@^1.0.0, vinyl@^1.1.1: vm-browserify@^1.0.1: version "1.1.0" - resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== -w3c-hr-time@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= - dependencies: - browser-process-hrtime "^0.1.2" - -walker@^1.0.7, walker@~1.0.5: - version "1.0.7" - resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= - dependencies: - makeerror "1.0.x" - watchpack@^1.5.0: version "1.6.0" - resolved "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== dependencies: chokidar "^2.0.2" @@ -11607,19 +10988,14 @@ watchpack@^1.5.0: wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= dependencies: defaults "^1.0.3" -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - webpack-cli@^3.3.2: version "3.3.5" - resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.5.tgz#f4d1238a66a2843d9cebf189835ea22142e72767" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.5.tgz#f4d1238a66a2843d9cebf189835ea22142e72767" integrity sha512-w0j/s42c5UhchwTmV/45MLQnTVwRoaUTu9fM5LuyOd/8lFoCNCELDogFoecx5NzRUndO0yD/gF2b02XKMnmAWQ== dependencies: chalk "2.4.2" @@ -11636,7 +11012,7 @@ webpack-cli@^3.3.2: webpack-dev-middleware@^3.7.0: version "3.7.0" - resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz#ef751d25f4e9a5c8a35da600c5fda3582b5c6cff" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz#ef751d25f4e9a5c8a35da600c5fda3582b5c6cff" integrity sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA== dependencies: memory-fs "^0.4.1" @@ -11646,7 +11022,7 @@ webpack-dev-middleware@^3.7.0: webpack-hot-middleware@^2.25.0: version "2.25.0" - resolved "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706" + resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706" integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA== dependencies: ansi-html "0.0.7" @@ -11656,7 +11032,7 @@ webpack-hot-middleware@^2.25.0: webpack-log@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== dependencies: ansi-colors "^3.0.0" @@ -11664,7 +11040,7 @@ webpack-log@^2.0.0: webpack-manifest-plugin@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz#e4ca2999b09557716b8ba4475fb79fab5986f0cd" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz#e4ca2999b09557716b8ba4475fb79fab5986f0cd" integrity sha512-nejhOHexXDBKQOj/5v5IZSfCeTO3x1Dt1RZEcGfBSul891X/eLIcIVH31gwxPDdsi2Z8LKKFGpM4w9+oTBOSCg== dependencies: fs-extra "^7.0.0" @@ -11673,14 +11049,14 @@ webpack-manifest-plugin@^2.0.4: webpack-merge@^4.2.1: version "4.2.1" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" integrity sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw== dependencies: lodash "^4.17.5" webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== dependencies: source-list-map "^2.0.0" @@ -11688,7 +11064,7 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.3.0: webpack@4.32.2: version "4.32.2" - resolved "https://registry.npmjs.org/webpack/-/webpack-4.32.2.tgz#3639375364a617e84b914ddb2c770aed511e5bc8" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.32.2.tgz#3639375364a617e84b914ddb2c770aed511e5bc8" integrity sha512-F+H2Aa1TprTQrpodRAWUMJn7A8MgDx82yQiNvYMaj3d1nv3HetKU0oqEulL9huj8enirKi8KvEXQ3QtuHF89Zg== dependencies: "@webassemblyjs/ast" "1.8.5" @@ -11716,114 +11092,79 @@ webpack@4.32.2: watchpack "^1.5.0" webpack-sources "^1.3.0" -whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: - version "1.0.5" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-url@^6.4.1: - version "6.5.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" - integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - -whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - which-module@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= which-module@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= which-pm-runs@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" + resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= which@1, which@1.3.1, which@^1.0.5, which@^1.2.14, which@^1.2.9, which@^1.3.0, which@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" wide-align@1.1.3, wide-align@^1.1.0: version "1.1.3" - resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== dependencies: string-width "^1.0.2 || 2" widest-line@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== dependencies: string-width "^2.1.1" window-size@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= window-size@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" integrity sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU= windows-release@^3.1.0: version "3.2.0" - resolved "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" + resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" integrity sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA== dependencies: execa "^1.0.0" wolfy87-eventemitter@*: version "5.2.6" - resolved "https://registry.npmjs.org/wolfy87-eventemitter/-/wolfy87-eventemitter-5.2.6.tgz#cc5de965d34099e5c14ec189ee72553802d3ace2" + resolved "https://registry.yarnpkg.com/wolfy87-eventemitter/-/wolfy87-eventemitter-5.2.6.tgz#cc5de965d34099e5c14ec189ee72553802d3ace2" integrity sha512-n+bSucT1j9ZEoosxnfuH81bWqtZG4QEtZ9WEuiXz9YQAHEktGYKoSoMTKWTJEcYux8lWoqp1KqHPBpwvJKFFTw== -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= - wordwrap@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= worker-farm@^1.7.0: version "1.7.0" - resolved "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== dependencies: errno "~0.1.7" wrap-ansi@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= dependencies: string-width "^1.0.1" @@ -11831,7 +11172,7 @@ wrap-ansi@^2.0.0: wrap-ansi@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== dependencies: ansi-styles "^3.2.0" @@ -11840,21 +11181,12 @@ wrap-ansi@^5.1.0: wrappy@1: version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -write-file-atomic@2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" - integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - write-file-atomic@^2.0.0, write-file-atomic@^2.3.0: version "2.4.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" @@ -11863,7 +11195,7 @@ write-file-atomic@^2.0.0, write-file-atomic@^2.3.0: write-file-webpack-plugin@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/write-file-webpack-plugin/-/write-file-webpack-plugin-4.5.0.tgz#b53ccf01c346342a131c73a2ddd27049e90c5b44" + resolved "https://registry.yarnpkg.com/write-file-webpack-plugin/-/write-file-webpack-plugin-4.5.0.tgz#b53ccf01c346342a131c73a2ddd27049e90c5b44" integrity sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg== dependencies: chalk "^2.4.0" @@ -11876,7 +11208,7 @@ write-file-webpack-plugin@^4.5.0: write-json-file@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8= dependencies: detect-indent "^5.0.0" @@ -11888,21 +11220,14 @@ write-json-file@^2.3.0: write@1.0.3, write@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== dependencies: mkdirp "^0.5.1" -ws@^5.2.0: - version "5.2.2" - resolved "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" - integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== - dependencies: - async-limiter "~1.0.0" - ws@~3.3.1: version "3.3.3" - resolved "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== dependencies: async-limiter "~1.0.0" @@ -11911,61 +11236,61 @@ ws@~3.3.1: ws@~6.1.0: version "6.1.4" - resolved "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" integrity sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA== dependencies: async-limiter "~1.0.0" xdg-basedir@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== +xmldom@0.1.22: + version "0.1.22" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.22.tgz#10de4e5e964981f03c8cc72fadc08d14b6c3aa26" + integrity sha1-EN5OXpZJgfA8jMcvrcCNFLbDqiY= xmlhttprequest-ssl@~1.5.4: version "1.5.5" - resolved "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= y18n@^3.2.0, y18n@^3.2.1: version "3.2.1" - resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== yallist@^2.1.2: version "2.1.2" - resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== yaml-loader@^0.5.0: version "0.5.0" - resolved "https://registry.npmjs.org/yaml-loader/-/yaml-loader-0.5.0.tgz#86b1982d84a8e429e6647d93de9a0169e1c15827" + resolved "https://registry.yarnpkg.com/yaml-loader/-/yaml-loader-0.5.0.tgz#86b1982d84a8e429e6647d93de9a0169e1c15827" integrity sha512-p9QIzcFSNm4mCw/m5NdyMfN4RE4aFZJWRRb01ERVNGCym8VNbKtw3OYZXnvUIkim6U/EjqE/2yIh9F/msShH9A== dependencies: js-yaml "^3.5.2" yargs-parser@13.0.0: version "13.0.0" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== dependencies: camelcase "^5.0.0" @@ -11973,7 +11298,7 @@ yargs-parser@13.0.0: yargs-parser@^11.1.1: version "11.1.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== dependencies: camelcase "^5.0.0" @@ -11981,7 +11306,7 @@ yargs-parser@^11.1.1: yargs-parser@^13.0.0, yargs-parser@^13.1.0: version "13.1.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== dependencies: camelcase "^5.0.0" @@ -11989,21 +11314,21 @@ yargs-parser@^13.0.0, yargs-parser@^13.1.0: yargs-parser@^4.1.0, yargs-parser@^4.2.0: version "4.2.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= dependencies: camelcase "^3.0.0" yargs-parser@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= dependencies: camelcase "^3.0.0" yargs-unparser@1.5.0: version "1.5.0" - resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" + resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== dependencies: flat "^4.1.0" @@ -12012,7 +11337,7 @@ yargs-unparser@1.5.0: yargs@13.2.2: version "13.2.2" - resolved "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== dependencies: cliui "^4.0.0" @@ -12029,7 +11354,7 @@ yargs@13.2.2: yargs@13.2.4, yargs@^13.2.4: version "13.2.4" - resolved "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== dependencies: cliui "^5.0.0" @@ -12046,7 +11371,7 @@ yargs@13.2.4, yargs@^13.2.4: yargs@6.4.0: version "6.4.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" integrity sha1-gW4ahm1VmMzzTlWW3c4i2S2kkNQ= dependencies: camelcase "^3.0.0" @@ -12066,7 +11391,7 @@ yargs@6.4.0: yargs@6.6.0: version "6.6.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= dependencies: camelcase "^3.0.0" @@ -12083,9 +11408,9 @@ yargs@6.6.0: y18n "^3.2.1" yargs-parser "^4.2.0" -yargs@^12.0.2, yargs@^12.0.5: +yargs@^12.0.5: version "12.0.5" - resolved "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: cliui "^4.0.0" @@ -12103,7 +11428,7 @@ yargs@^12.0.2, yargs@^12.0.5: yargs@^3.32.0: version "3.32.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" integrity sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU= dependencies: camelcase "^2.0.1" @@ -12116,7 +11441,7 @@ yargs@^3.32.0: yargs@^7.0.0: version "7.1.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= dependencies: camelcase "^3.0.0" @@ -12135,5 +11460,5 @@ yargs@^7.0.0: yeast@0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= diff --git a/example-integrations/static-html/yarn.lock b/example-integrations/static-html/yarn.lock deleted file mode 100644 index bb847df46d..0000000000 --- a/example-integrations/static-html/yarn.lock +++ /dev/null @@ -1,11316 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/cli@^7.2.3": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/cli/-/cli-7.4.4.tgz#5454bb7112f29026a4069d8e6f0e1794e651966c" - integrity sha512-XGr5YjQSjgTa6OzQZY57FAJsdeVSAKR/u/KA5exWIz66IKtv/zXtHy+fIZcMry/EgYegwuHE7vzGnrFhjdIAsQ== - dependencies: - commander "^2.8.1" - convert-source-map "^1.1.0" - fs-readdir-recursive "^1.1.0" - glob "^7.0.0" - lodash "^4.17.11" - mkdirp "^0.5.1" - output-file-sync "^2.0.0" - slash "^2.0.0" - source-map "^0.5.0" - optionalDependencies: - chokidar "^2.0.4" - -"@babel/code-frame@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/core@^7.2.0", "@babel/core@^7.2.2": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" - integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helpers" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.5" - "@babel/types" "^7.4.4" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.11" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/generator@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" - integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ== - dependencies: - "@babel/types" "^7.4.4" - jsesc "^2.5.1" - lodash "^4.17.11" - source-map "^0.5.0" - trim-right "^1.0.1" - -"@babel/helper-annotate-as-pure@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" - integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" - integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-builder-react-jsx@^7.3.0": - version "7.3.0" - resolved "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" - integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== - dependencies: - "@babel/types" "^7.3.0" - esutils "^2.0.0" - -"@babel/helper-call-delegate@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" - integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== - dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/helper-create-class-features-plugin@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz#fc3d690af6554cc9efc607364a82d48f58736dba" - integrity sha512-UbBHIa2qeAGgyiNR9RszVF7bUHEdgS4JAUNT8SiqrAN6YJVxlOxeLr5pBzb5kan302dejJ9nla4RyKcR1XT6XA== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.0.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.4" - "@babel/helper-split-export-declaration" "^7.4.4" - -"@babel/helper-define-map@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" - integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.4.4" - lodash "^4.17.11" - -"@babel/helper-explode-assignable-expression@^7.1.0": - version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" - integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== - dependencies: - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-function-name@^7.1.0": - version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== - dependencies: - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-get-function-arity@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-hoist-variables@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" - integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== - dependencies: - "@babel/types" "^7.4.4" - -"@babel/helper-member-expression-to-functions@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" - integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-module-imports@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" - integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" - integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/template" "^7.4.4" - "@babel/types" "^7.4.4" - lodash "^4.17.11" - -"@babel/helper-optimise-call-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" - integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-plugin-utils@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== - -"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" - integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q== - dependencies: - lodash "^4.17.11" - -"@babel/helper-remap-async-to-generator@^7.1.0": - version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" - integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-wrap-function" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" - integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.0.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/helper-simple-access@^7.1.0": - version "7.1.0" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" - integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== - dependencies: - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-split-export-declaration@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== - dependencies: - "@babel/types" "^7.4.4" - -"@babel/helper-wrap-function@^7.1.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" - integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.2.0" - -"@babel/helpers@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" - integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A== - dependencies: - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/highlight@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" - integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== - dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/parser@^7.4.4", "@babel/parser@^7.4.5": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" - integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew== - -"@babel/plugin-proposal-async-generator-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" - integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" - -"@babel/plugin-proposal-class-properties@^7.3.0": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz#93a6486eed86d53452ab9bab35e368e9461198ce" - integrity sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-proposal-decorators@^7.3.0": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" - integrity sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-decorators" "^7.2.0" - -"@babel/plugin-proposal-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" - integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - -"@babel/plugin-proposal-object-rest-spread@^7.3.1", "@babel/plugin-proposal-object-rest-spread@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" - integrity sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - -"@babel/plugin-proposal-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" - integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" - integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" - -"@babel/plugin-syntax-async-generators@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" - integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-decorators@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" - integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-dynamic-import@^v7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" - integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" - integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-jsx@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" - integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-object-rest-spread@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" - integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-arrow-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" - integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-async-to-generator@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" - integrity sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - -"@babel/plugin-transform-block-scoped-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" - integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-block-scoping@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" - integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - lodash "^4.17.11" - -"@babel/plugin-transform-classes@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" - integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.4" - "@babel/helper-split-export-declaration" "^7.4.4" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" - integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-destructuring@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" - integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" - integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" - -"@babel/plugin-transform-duplicate-keys@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" - integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-exponentiation-operator@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" - integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-for-of@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" - integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-function-name@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" - integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" - integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-member-expression-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" - integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-modules-amd@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" - integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== - dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-modules-commonjs@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" - integrity sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw== - dependencies: - "@babel/helper-module-transforms" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - -"@babel/plugin-transform-modules-systemjs@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" - integrity sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ== - dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-modules-umd@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" - integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== - dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" - integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== - dependencies: - regexp-tree "^0.1.6" - -"@babel/plugin-transform-new-target@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" - integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-object-super@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" - integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.1.0" - -"@babel/plugin-transform-parameters@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" - integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== - dependencies: - "@babel/helper-call-delegate" "^7.4.4" - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-property-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" - integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-react-jsx@^7.3.0": - version "7.3.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" - integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== - dependencies: - "@babel/helper-builder-react-jsx" "^7.3.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@babel/plugin-transform-regenerator@^7.4.5": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" - integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== - dependencies: - regenerator-transform "^0.14.0" - -"@babel/plugin-transform-reserved-words@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" - integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-runtime@^7.2.0": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz#a50f5d16e9c3a4ac18a1a9f9803c107c380bce08" - integrity sha512-aMVojEjPszvau3NRg+TIH14ynZLvPewH4xhlCW1w6A3rkxTS1m4uwzRclYR9oS+rl/dr+kT+pzbfHuAWP/lc7Q== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - resolve "^1.8.1" - semver "^5.5.1" - -"@babel/plugin-transform-shorthand-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" - integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-spread@^7.2.0": - version "7.2.2" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" - integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-sticky-regex@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" - integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.0.0" - -"@babel/plugin-transform-template-literals@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" - integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-typeof-symbol@^7.2.0": - version "7.2.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" - integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-unicode-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" - integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" - -"@babel/preset-env@^7.2.0", "@babel/preset-env@^7.3.1": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" - integrity sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.4.4" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.4.4" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.4.4" - "@babel/plugin-transform-classes" "^7.4.4" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/plugin-transform-duplicate-keys" "^7.2.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.4" - "@babel/plugin-transform-function-name" "^7.4.4" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.2.0" - "@babel/plugin-transform-modules-commonjs" "^7.4.4" - "@babel/plugin-transform-modules-systemjs" "^7.4.4" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5" - "@babel/plugin-transform-new-target" "^7.4.4" - "@babel/plugin-transform-object-super" "^7.2.0" - "@babel/plugin-transform-parameters" "^7.4.4" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.5" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.2.0" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.4.4" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.4.4" - "@babel/types" "^7.4.4" - browserslist "^4.6.0" - core-js-compat "^3.1.1" - invariant "^2.2.2" - js-levenshtein "^1.1.3" - semver "^5.5.0" - -"@babel/runtime@^7.3.1": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12" - integrity sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/template@^7.1.0", "@babel/template@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" - integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": - version "7.4.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" - integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/types" "^7.4.4" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.11" - -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4": - version "7.4.4" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" - integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ== - dependencies: - esutils "^2.0.2" - lodash "^4.17.11" - to-fast-properties "^2.0.0" - -"@basalt/twig-renderer@^0.12.0": - version "0.12.0" - resolved "https://registry.npmjs.org/@basalt/twig-renderer/-/twig-renderer-0.12.0.tgz#ef752a08d4c6378de1598a5cd4a1779b5dcb99b9" - integrity sha512-ORKtGM1Dy3nKhz2yKw0RPgybUTx6D6p4tKLc6LpKsCGhNhDbW20zwM5WR9dxfe0byqEaQvBgG6Syn0f4MMSdcw== - dependencies: - "@babel/core" "^7.2.0" - "@babel/preset-env" "^7.2.0" - ajv "^6.5.2" - execa "^1.0.0" - find-free-port "^2.0.0" - fs-extra "^7.0.1" - node-fetch "^2.1.2" - sleep-promise "^8.0.1" - -"@bolt/api@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/api/-/api-2.4.3.tgz#f2ea628c5a4a5b6cf611065fd00791c41887a50d" - integrity sha512-gd3QZsVnjEHdjUmJP26mh+smG0dkJ6x5ZHTKQtF+05+hT8fGuyPi12BtqiEHoCKUooVRwwzNgiGXrAPTX+vCGQ== - dependencies: - "@bolt/components-button" "^2.4.0" - "@bolt/twig-renderer" "^2.4.3" - really-relaxed-json "^0.2.24" - -"@bolt/babel-preset-bolt@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/babel-preset-bolt/-/babel-preset-bolt-2.4.3.tgz#bb3f59e83936f4e24a707597915e625f735b0f8a" - integrity sha512-q0eagQz9Ds6jiqOFwmA7ybQbVCWT2zmF5N5F7XTUdVd9jteLusD2E53fdYdazKLtm0Lwh/w05f7nce+8F5P3ng== - dependencies: - "@babel/cli" "^7.2.3" - "@babel/core" "^7.2.2" - "@babel/plugin-proposal-class-properties" "^7.3.0" - "@babel/plugin-proposal-decorators" "^7.3.0" - "@babel/plugin-proposal-object-rest-spread" "^7.3.1" - "@babel/plugin-syntax-dynamic-import" "^v7.2.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - "@babel/plugin-transform-react-jsx" "^7.3.0" - "@babel/plugin-transform-runtime" "^7.2.0" - "@babel/preset-env" "^7.3.1" - "@babel/runtime" "^7.3.1" - "@bolt/config-browserlist" "^2.4.3" - -"@bolt/build-tools@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/build-tools/-/build-tools-2.4.3.tgz#48db02717d02a4c695abe5e8ae47968adeeb33ee" - integrity sha512-MbmKvCnPTpXRvORszwt6D1L87GjRi4yKBXcHOXokY/bSTfBvMVeVVLWcjZcpyFeGEeWWHvug66JPzNFQjvMXNw== - dependencies: - "@babel/core" "^7.2.2" - "@bolt/api" "^2.4.3" - "@bolt/babel-preset-bolt" "^2.4.3" - "@bolt/config-browserlist" "^2.4.3" - "@bolt/postcss-themify" "^2.4.0" - "@bolt/sass-export-data" "^2.4.0" - "@bolt/sassdoc-webpack-plugin" "^2.4.0" - "@bolt/twig-renderer" "^2.4.3" - "@octokit/plugin-throttling" "^2.3.0" - "@octokit/rest" "^16.13.3" - address "^1.0.3" - array-sort "^1.0.0" - autoprefixer "^9.4.3" - babel-loader "^8.0.4" - browser-sync "^2.26.3" - camelcase "^4.1.0" - chalk "^2.4.1" - check-links "^1.1.4" - cheerio "^1.0.0-rc.2" - chokidar "^2.0.4" - clean-css-loader "^1.1.0" - commander "^2.19.0" - convert-hrtime "^2.0.0" - copy-webpack-plugin "^4.6.0" - cosmiconfig "^5.0.7" - css-hot-loader "^1.4.3" - css-loader "^2.0.2" - cssnano "^4.1.8" - deepmerge "^3.0.0" - del "^3.0.0" - eslint "^5.12.1" - eslint-loader "^2.1.1" - execa "^1.0.0" - express "^4.16.4" - file-loader "^3.0.1" - front-matter "^3.0.1" - fs-extra "^5.0.0" - globby "^9.2.0" - hard-source-webpack-plugin-patch "^0.13.3" - incache "^7.2.1" - js-yaml "^3.12.0" - json-loader "^0.5.7" - jsonschema "^1.2.4" - lodash.debounce "^4.0.8" - marked "^0.5.2" - mini-css-extract-plugin "^0.5.0" - mkdirp "^0.5.1" - node-cache "^4.2.0" - node-fetch "^2.3.0" - node-notifier "^5.3.0" - node-sass "^4.11.0" - npm-sass "^2.3.0" - optimize-css-assets-webpack-plugin "^5.0.1" - ora "^3.0.0" - portfinder "^1.0.20" - postcss-discard-duplicates "^4.0.2" - postcss-loader "^3.0.0" - postcss-scss "^2.0.0" - prettier "^1.7.4" - pretty-ms "^4.0.0" - resolve "^1.9.0" - resolve-url-loader "^3.0.0" - sass-loader "^7.1.0" - sassdoc "^2.5.1" - sassdoc-theme-default "^2.6.3" - semver "^5.6.0" - sharp "^0.21.3" - string-replace-loader "^2.1.1" - style-loader "^0.23.1" - svgo "^1.2.0" - ts-loader "^5.3.3" - typescript "^3.2.4" - uglifyjs-webpack-plugin "^2.1.1" - uppercamelcase "^3.0.0" - url-loader "^1.1.2" - webpack "4.29.6" - webpack-cli "^3.1.2" - webpack-dev-middleware "^3.5.1" - webpack-hot-middleware "^2.24.3" - webpack-manifest-plugin "^2.0.4" - webpack-merge "^4.2.1" - write-file-webpack-plugin "^4.5.0" - yaml-loader "^0.5.0" - yargs "^12.0.5" - -"@bolt/components-action-blocks@^2.4.1": - version "2.4.1" - resolved "https://registry.npmjs.org/@bolt/components-action-blocks/-/components-action-blocks-2.4.1.tgz#44cde086efc088351b05b03561fe57b268d9e5e0" - integrity sha512-FsLEZ/RmFgMXw1z9f3nmkGZrkrUeZ+PL/Lb4zzBSo5oPXgqekICUeFkiPoftPvGeI0BVJ4tqimiGBrX4rh83Eg== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-background-shapes@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-background-shapes/-/components-background-shapes-2.4.0.tgz#a9178616be8947b744d098ebbc64be49dc9ef73b" - integrity sha512-sBSEof/xhOitIkNRpvtA3NEg6qXgvmddEGcN3+Vhmk+ME1scTs6K7prycumUMIoid/F/cf73rOpwMaowrq6WKw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-background@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-background/-/components-background-2.4.0.tgz#563bf698cf49af68cd96444e43c26b114f7dd8aa" - integrity sha512-lEA9+DqMb9Wx/OAw5RulPVU0iZhI49FF7M/pHA8oka6lkNyGAnONs1WuEYNCPSzunW3i/STYc844iPp6IhlthA== - dependencies: - "@bolt/components-background-shapes" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-band@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-band/-/components-band-2.4.3.tgz#c7629d87b037302c05d61ed7613bccbd76a6de46" - integrity sha512-Z4ZOk7Nq+lA0MWiq/V0mhgdrZQxh59Z94qO7St053ITVJmX6/lBYJZ5MqvHdgiiozIBm2IRmRUpV9YO7NVoXqw== - dependencies: - "@bolt/components-grid" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-block-list@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-block-list/-/components-block-list-2.4.0.tgz#ee381bb3ec4907161112003c25c6fbb1b1c4f8f2" - integrity sha512-FRYQQq1EWYklm/AKijymFnrBAbBHEbDoYa1TREDqA4Q2BYpsoAQdaduvUSmrC84ztysBYNvPdZ2Nzjnm58JPxw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-blockquote@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-blockquote/-/components-blockquote-2.4.0.tgz#cbdf36ce5d84226ba0c9a9d6063219a49d1cc79a" - integrity sha512-pRKso3xQGryiQ0YJo/0bkCCIb0DwfYOH+LA6WCj/xAHa3x6jsFyLMSqIR1CtlJRRdhasdD5UxrMPrqqJ8OONnw== - dependencies: - "@bolt/components-image" "^2.4.0" - "@bolt/components-text" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-breadcrumb@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-breadcrumb/-/components-breadcrumb-2.4.0.tgz#e7ef121c1a70aba97d27bcd9232e8bcf35a8c627" - integrity sha512-I1HyEES3ioBnIx9dMK5SgR4j7Tre/PwYpbTuVH+o31Uqg8yuwmVDt1hUz+B7glnaijgksSJgXvoT4Xpb4gllLg== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-button-group@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-button-group/-/components-button-group-2.4.0.tgz#82eece4b4cf785e28474f0d40983e2169af1d2cf" - integrity sha512-2p0D6OU+CajgIHlPFpXx/dpQNJcxhmpedX9//V8Vl9C2fzMMwVvoaQb/1t0uSA2OG67cNs3lzvdb2JuwKm7jAA== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-button@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-button/-/components-button-2.4.0.tgz#cce5c67529ccc3e2308e433940704cfd2859897d" - integrity sha512-nTC15SrPDjA6syabl+rtSo6oXN05xdGZhdCxtCiKPcTRQSkLfbMf7Pnv0PVNdgeCInEoymZtNJuW8CUoiYEWxg== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-card@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-card/-/components-card-2.4.0.tgz#9a7957c3c15e2813ee0e3372125d4d78b0ce438d" - integrity sha512-2AmhsBmDD4Ah1rsdCsz5IE38WTUqzKbqlOafEO/CzVBFHzN+Gq74n1EggA97uZUmUh10zdLzPc1vs9inD0crbw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-chip-list@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-chip-list/-/components-chip-list-2.4.0.tgz#795c1620e21c77d8595fd8d33fd8083792d8e878" - integrity sha512-pzar8lAHi9Q2tqc15ZUfdz8Hz6G5kGdr55dw2k1kuCFqRRJFw2sT+/z+JNHW3R/yZpHm17GzVmGUi6HgQ4TqeA== - dependencies: - "@bolt/components-chip" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-chip@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-chip/-/components-chip-2.4.0.tgz#ac2a2c13a0e9e10d719a60766faf3a4c9e8ebc3b" - integrity sha512-cVmJeGjzPDJoyB/EHyNB9Qhy3YmUy5d84Txd+q4Uk7JlfjKDFpZjXqbzOqOpTb3k7kOJbl1hwWzLO/ehS0zZYw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-code-snippet@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-code-snippet/-/components-code-snippet-2.4.0.tgz#e0736766c1cacd05d72d39736839484d898d92d5" - integrity sha512-45XiW1P8u7Tcub6CPBIbryhyVHjQ6lkA4G4XpiMKtOQYLZ3gcDQvwLT/vUT6SX/xq5SkJMODsBsLVb7niZqYlQ== - dependencies: - "@bolt/core" "^2.4.0" - preact "^8.4.2" - preact-html "^2.0.3" - prismjs "^1.15.0" - -"@bolt/components-copy-to-clipboard@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-copy-to-clipboard/-/components-copy-to-clipboard-2.4.3.tgz#9738c9d700219f3620141abec370139a5b8f44bc" - integrity sha512-FkXliTo0vG0mZC3BNeUsj42OljdkdIz/31qoYDFzWCkMXh+zMZtwFLtEH21eNw/tdsjzWkaO2oEQenfk3Wum8g== - dependencies: - "@bolt/components-icon" "^2.4.3" - "@bolt/components-link" "^2.4.0" - "@bolt/core" "^2.4.0" - clipboard "^2.0.0" - -"@bolt/components-critical-css-vars@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-critical-css-vars/-/components-critical-css-vars-2.4.3.tgz#6af826a03b6e04162f3d10391783fb1e70efb5f2" - integrity sha512-FwUqS6GZPXM2qkjsNUELfKxclkavlrou6Io3EdAsiGAWVGVWgSykRZshuimdwKdnH0G1eLywc5+vWl2stctCcg== - dependencies: - "@bolt/build-tools" "^2.4.3" - "@bolt/core" "^2.4.0" - fg-loadcss ">= ^2.1.0" - -"@bolt/components-critical-css@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-critical-css/-/components-critical-css-2.4.3.tgz#1d8ae7d6684b10b20b946ab22cd7a79e3faf89c6" - integrity sha512-JDYLf/gkvFftbDs8ORHmzJfi2aEwwmyIPXgQ8G5Ha00ZjVcSGQbs1N+7pZbOJqwMF6yI++sT+fMTfWy5tj1Asg== - dependencies: - "@bolt/build-tools" "^2.4.3" - "@bolt/core" "^2.4.0" - fg-loadcss "^2.1.0" - -"@bolt/components-critical-fonts@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-critical-fonts/-/components-critical-fonts-2.4.0.tgz#5ef254c423eef1e0bcdd496dcafbc84c18db6ae8" - integrity sha512-yVq8W7EiMeM+bMZ/xnYUTPS+ftP0WNHIAI4WYvSPOSWRnWnBcKxBcqvY8JG3F3olnfg9hs8+H0p/t6aP/z4sZA== - dependencies: - "@bolt/components-headline" "^2.4.0" - "@bolt/core" "^2.4.0" - "@bolt/global" "^2.4.0" - fontfaceobserver "^2.0.13" - -"@bolt/components-device-viewer@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-device-viewer/-/components-device-viewer-2.4.0.tgz#d3e6a33b9cbb5e91aa5a5369745a0312d9c3c99c" - integrity sha512-nLOhTUP52zslsg9vRNgDH9wXRKpBNIxwQIeDaLbDbgh11UfFWLOy6erxBsryWYae87j5RtXesUeaydi0Z/dQxg== - dependencies: - "@bolt/core" "^2.4.0" - drift-zoom "^1.2.0" - -"@bolt/components-dropdown@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-dropdown/-/components-dropdown-2.4.3.tgz#53e1cd3555a474e657902b1aeea8eec0b7761082" - integrity sha512-nRieeKoUSbpvLacR52x97YzxojZ7vVcDckJ5ZNcwHzdI/AX0a3xGM4BsggQMmrjeREQq10ncSp8U8OC5bmjPZA== - dependencies: - "@bolt/components-icon" "^2.4.3" - "@bolt/core" "^2.4.0" - classnames "^2.2.5" - ev-emitter "^1.1.1" - handorgel "^0.4.5" - -"@bolt/components-figure@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-figure/-/components-figure-2.4.0.tgz#c3dabef126f63135060aa4acd3da9ba939536a98" - integrity sha512-QstbUUv2Z+6FL2htqK3ZW8hEPVv6No0yq7o+APGMDQVu7xKZXlYMWrh3tU4e5KhLNE1ItiA7aB0PF+wczRAmnQ== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-form@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-form/-/components-form-2.4.0.tgz#02121655b66cf25bf08285adaa3eadf0e64f391a" - integrity sha512-Rky/vp129g8cSIhMTY15jiajTOxIK99D6Z/H8a838RLGdygzXf+9p3jOX1lD9HF5pE8moOtDToXstJ4H/mLZnQ== - dependencies: - "@bolt/components-button" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-grid@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-grid/-/components-grid-2.4.0.tgz#7963305063a082f3619eeb096ecf4bb2a59d3e53" - integrity sha512-maoqahn7FHGy7z1dKcTSfNrK0u/2+kUy5vE/F8+5aKYT+OZ+EwzlkjkoDYK4dKThtoS0WPuo/33SmPGAF5uB/A== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-headline@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-headline/-/components-headline-2.4.0.tgz#3b9e5ad7d4baea8d9f5190933bf4ca553fac7346" - integrity sha512-ZtN2LeDIL4rPPT82iwTo90ZFX5uYdtzU7LB7tibA4PY1hBye/4nKJtDMMq2wbYFub1dwpFvRe3UrNUZ2G1BVCA== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-icon@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-icon/-/components-icon-2.4.3.tgz#be4156db2336aad6b611bca7108ea5bdd21d22cb" - integrity sha512-RMixu9HFICNrbmDjGDrFo+htuVtkCjuC0MRoDFIjB/KxUwuyWn30CyVUradHjsKqw6Cxd2mby2z38ugrT0ibfw== - dependencies: - "@bolt/components-icons" "^2.4.3" - "@bolt/core" "^2.4.0" - pubsub-js "^1.6.0" - uppercamelcase "^3.0.0" - -"@bolt/components-icons@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-icons/-/components-icons-2.4.3.tgz#cebf89f3205a6c6d01ec5b36bbf8fdda954e35a4" - integrity sha512-WkVgef1JZTzZhWern3ZqnAGTFLFpyckR3SA1xFOE+scwZ/kM0n/CdEkQFihSYUlB65wKQHjvP7kT5bk7ETOj1A== - dependencies: - "@bolt/build-tools" "^2.4.3" - "@bolt/core" "^2.4.0" - -"@bolt/components-image@^2.3.1": - version "2.3.1" - resolved "https://registry.npmjs.org/@bolt/components-image/-/components-image-2.3.1.tgz#2fe464dcf8974c83102f37916a608f7d47aa3c40" - integrity sha512-9vFLJMHiluH8oy2ROixtPQYsAyxjtg9MKzKjQsdmstlngVXvZBdBwaSU5xvCXdI2//IsEeuDfdcIG00cOgSq3g== - dependencies: - "@bolt/components-ratio" "^2.3.1" - "@bolt/core" "^2.3.1" - lazysizes "^4.1.4" - -"@bolt/components-image@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-image/-/components-image-2.4.0.tgz#2a2c31af1c45ea51d64a24897a490020c14d70a2" - integrity sha512-au4jdWU5z/7x0tTMxllXc5OFZh8ynLfQ8dxbmHDZBkTkMU3Az7zfSTCFTIBN5Q6Xv9qkEjTKEBCE/S0max8n0Q== - dependencies: - "@bolt/components-ratio" "^2.4.0" - "@bolt/core" "^2.4.0" - lazysizes "^4.1.4" - -"@bolt/components-li@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-li/-/components-li-2.4.0.tgz#1d8c4889213d766bc5960180fa8b71739db36e02" - integrity sha512-RyIr6vB22HD0sLaFIm/8JD3nrTjZZPPudiMafdRZCCf/9h/GeS1rbdN740MH3dCaapTWwpknfTPZaE8TZ/N5qQ== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-link@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-link/-/components-link-2.4.0.tgz#012aa2adc97a219b91cca72980cf1f6b4575118b" - integrity sha512-RhpnNIYURCgV9ebb4jI2Suk1P9O+jalxT+uRnV/JALFt0NByUufsa/UR40vGnqvSJcafp0xpTkCTkWKwpThcqQ== - dependencies: - "@bolt/core" "^2.4.0" - ajv "^6.5.4" - -"@bolt/components-list@^2.4.1": - version "2.4.1" - resolved "https://registry.npmjs.org/@bolt/components-list/-/components-list-2.4.1.tgz#0f0e840a7e7961483e136eb9498a82f5cc767331" - integrity sha512-sMFwU71YgZAdoKjsAcgoX2kuwuV5PYQl67A/CrqfuerOV5DuAxvSvj9yYnY6rPw8RpA7CCoz3W/rpK4rmCZWog== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-logo@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-logo/-/components-logo-2.4.0.tgz#41ab2debf77d42ad53531e7ec4ff3f0326463834" - integrity sha512-ezbaWqvQ7l+ZiQTOzOtTTljiKrZFw0dWXYX7j+T1/ZsIRU7mfVQ2akqgLVrdpW/XxM5ZnLi03uzBhmVzCaqPkg== - dependencies: - "@bolt/components-image" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-nav-indicator@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-nav-indicator/-/components-nav-indicator-2.4.0.tgz#7fe73e6227cd7894312c2fa9041243a1a57b8d12" - integrity sha512-9+TCr8ZaqNqXnw55EFiE3CELQaXFrxKWUNfOwRzELYhBnUQIWRP8klZhXqU3tearPqDLpDNRjF0gYrJFZBMcLw== - dependencies: - "@bolt/core" "^2.4.0" - gumshoejs "^3.5.0" - is-visible "^2.2.0" - -"@bolt/components-nav-priority@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-nav-priority/-/components-nav-priority-2.4.0.tgz#eb48a046a5e885f98b0d4b8ffddeb90ebc38d139" - integrity sha512-TedmglzDzTb/dSafSs0rxTh1lDHm42u0oa8YdkjEyTwzlvacE18VrDkYz69PsVbBX2U/tbx63Hqz6EueNQ4clw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-navbar@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-navbar/-/components-navbar-2.4.3.tgz#d38d436aad5c7841d641b0eb7ca7bdd3aa98bce2" - integrity sha512-Cgo7f23HSc/4frBGtSWfYQTVWbanXhNEYfcqgyYGWe04kaxxIBQsE1qq7opIvqfxBOw3/vSKlsv7eS6s6ZG+yQ== - dependencies: - "@bolt/components-nav-indicator" "^2.4.0" - "@bolt/components-nav-priority" "^2.4.0" - "@bolt/components-navlink" "^2.4.3" - "@bolt/core" "^2.4.0" - -"@bolt/components-navlink@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-navlink/-/components-navlink-2.4.3.tgz#01627d9e0d52b3633d4796f9cbe2465eb31b1ec8" - integrity sha512-TWW/oy3rhVazEM/vUk1NSvWFwRjhSDTZQGpex0olNA6ZL4XjPS7mAPY3UeV0aO7759D76YFgYzENPVIgrSSU8Q== - dependencies: - "@bolt/components-smooth-scroll" "^2.4.0" - "@bolt/core" "^2.4.0" - is-visible "^2.2.0" - -"@bolt/components-ol@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-ol/-/components-ol-2.4.0.tgz#a9675515a006a2c75c51685905184084ffa595d0" - integrity sha512-VHesxIQEALdXZRWz4iovuTgYsUG9qLNYnZQt4/8z4HnuHaps/2Vnkg8A3pHAz43rXOx/cqXbLA7TGORDHdOK4A== - dependencies: - "@bolt/components-li" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-pagination@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-pagination/-/components-pagination-2.4.0.tgz#17725f2367da331f5ef7d222231b2426ba274c44" - integrity sha512-Fyv4K02yrUPlwQ1jDpC1j2I3MsTnRZU9DokLsLA4mEjp14sOwDzG5nOVbbnbPwxDaGtFRZlQkAZF0YJszbMJSg== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-placeholder@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-placeholder/-/components-placeholder-2.4.0.tgz#450cd95371191d37854e8c7a5d7d62b0b13edb92" - integrity sha512-CAtAx+3wJTsNQheKoi9RRtc5vCM/IwEMv/f1A+eCxOPwuiP+L6JphQkmmTd7knfowuacwM2+6CEly2AY9cYqCQ== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-ratio@^2.3.1", "@bolt/components-ratio@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-ratio/-/components-ratio-2.4.0.tgz#8a4992cad3438ed1a06509e8461a452902a70e07" - integrity sha512-eh0FAdF+pP7gjLx9kZ5LCZU83ugu6uGOckugVnMV1XYr8PxO68oBvWSJCyQBlKAc18YMl1lUltbtaAorPpo5uA== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-share@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/components-share/-/components-share-2.4.3.tgz#533f1738512dcf70ad47cee6d00c7696a8287250" - integrity sha512-ni3pU9R8hLV0b1scHc2yobaBzcOCl1UGnXXsFcENSArGv2i96L/b5qXnkzlK2uSg2O0mqBsu28X6ulndKfG0Ag== - dependencies: - "@bolt/components-copy-to-clipboard" "^2.4.3" - "@bolt/components-icon" "^2.4.3" - "@bolt/core" "^2.4.0" - -"@bolt/components-site@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-site/-/components-site-2.4.0.tgz#440715d055b686a1efa5f9e91b76deb9c4f51d36" - integrity sha512-/3r+NptknmPmlD4gsxM7hweYLypNSMkogLEejgFeXUWGnpopqWZMbRjLgHgS0qMJuBgUEfx7DRRgZAA1jcUoTw== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-smooth-scroll@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-smooth-scroll/-/components-smooth-scroll-2.4.0.tgz#0e1ad07afe4082429a3c11f0e9180dfb0d8155bf" - integrity sha512-igrbhgoMb/PdxF7EEq8bCPf7negeDNkNQbvW3xY83yZM5b6IYPOSxPNodYUmKD92EoD4MT7txjaThKWQbdeGvQ== - dependencies: - "@bolt/core" "^2.4.0" - smooth-scroll "github:bolt-design-system/smooth-scroll#master" - -"@bolt/components-sticky@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-sticky/-/components-sticky-2.4.0.tgz#a42faff8369f7984d8d872dbbe17efd3d9723d87" - integrity sha512-3+SrM5oz81Fes/8pS0/SLnobiQ51GfcyTomJ9Ft7IvGdfwGmOFSUFEtFMse01b6DBXpvr0Y1TmESnz4k30mG6A== - dependencies: - "@bolt/core" "^2.4.0" - stickyfilljs "^2.0.3" - -"@bolt/components-teaser@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-teaser/-/components-teaser-2.4.0.tgz#fc0a2709b8431f701007d60b7cdec1d42aa7e74c" - integrity sha512-AMRXplr2DxXa04cnUoh/miFI4mS+a5mgRXlCTgyNWAzTGc45zl+ZVGrEI8SpKaCkQsO+SDrncTCP1MBPRC7Vug== - dependencies: - "@bolt/core" "^2.4.0" - -"@bolt/components-text@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-text/-/components-text-2.4.0.tgz#959ce31ba5e468757150b4b01b9bed97251ca63d" - integrity sha512-w6jfNo3Mva4jGnR+sbY0BupP7J2NSuB+i1Tvr6krk3DmMhVlt5P0yQUfKuY7moJX/xiMYUoBLiYrXNX+G8y1pg== - dependencies: - "@bolt/components-link" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-tooltip@^2.4.1": - version "2.4.1" - resolved "https://registry.npmjs.org/@bolt/components-tooltip/-/components-tooltip-2.4.1.tgz#36ec929c6fcaa0b45ff11f57c50a8ef8ccb1ca31" - integrity sha512-fCKrMPMLcHKhEurnu96xv3fB4d88MtRyW9gqArHDvHNlG1VqxJv1V8NH/TagJgdYgiUjiieGeTngEnCkBRGwQQ== - dependencies: - "@bolt/components-button" "^2.4.0" - "@bolt/core" "^2.4.0" - "@bolt/global" "^2.4.0" - -"@bolt/components-ul@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/components-ul/-/components-ul-2.4.0.tgz#76f1c39d9d6445639e65b3e33f0c4e9ccb1bd886" - integrity sha512-rA5xC1m37YAplTNxiPnEmoKz49x0FwVKPyf2eobNg4fkDA3tAUNRaf6jR3Ge2mmGGYH87W8VPW7Wej4HXHqBxw== - dependencies: - "@bolt/components-li" "^2.4.0" - "@bolt/core" "^2.4.0" - -"@bolt/components-video@^2.4.2": - version "2.4.2" - resolved "https://registry.npmjs.org/@bolt/components-video/-/components-video-2.4.2.tgz#ef9f8ff9fc50df55eb10603ad8d2d6ed10a057b8" - integrity sha512-JaypXZY934zTfDdwTJdAgih60HseV4jTAwEEmbO5gRCkZxV/MR8OmXoAu5Xg60YCo2NDBS6b4KGXkr5QoEDhwA== - dependencies: - "@bolt/components-button" "^2.4.0" - "@bolt/components-ratio" "^2.4.0" - "@bolt/core" "^2.4.0" - dasherize "^2.0.0" - lodash.isequal "^4.5.0" - mousetrap "^1.6.1" - -"@bolt/config-browserlist@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/config-browserlist/-/config-browserlist-2.4.3.tgz#8822ef57b26eca3e054890a2b1e752d48e9323eb" - integrity sha512-d85hqQyci6rB4REEMJKgXQufaa3hQnvopPDbClgBNyxf3gTlqg8FBD7tFJ5gi6RdD4t12XqcCoq8ouFMKlrWdg== - dependencies: - browserslist "^4.1.1" - -"@bolt/core@^2.3.1", "@bolt/core@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/core/-/core-2.4.0.tgz#d16d3932a6bf1df2632d6084033a1c76d6b3dafd" - integrity sha512-WPeYGbmCk/wZi0r70lAZJt7GXjYKhjJiptTjq8PeW1n11HpPtrSip+djilnnTvAWsfVOo/OXa6ja3TEz4NC5ZQ== - dependencies: - "@polymer/lit-element" "0.6.2" - "@polymer/polymer" "^3.1.0" - "@webcomponents/custom-elements" "^1.2.1" - "@webcomponents/shadydom" "^1.4.2" - "@webcomponents/template" "^1.4.0" - "@webcomponents/webcomponentsjs" "^2.2.4" - ajv "^6.7.0" - change-case "^3.1.0" - classnames "^2.2.6" - color "^3.1.0" - core-js "^2.6.3" - document-register-element "^1.13.1" - element-closest "^2.0.2" - es6-promise "^4.2.5" - get-own-property-symbols "^0.9.2" - html-element "^2.2.0" - lit-html "1.0.0-rc.1" - lodash.merge "^4.6.1" - mdn-polyfills "^5.15.0" - preact "8.4.2" - preact-compat "^3.18.4" - pwa-helpers "^0.9.0" - raf "^3.4.1" - redux "^4.0.1" - redux-thunk "^2.3.0" - sass-mq "github:bolt-design-system/sass-mq#master" - sassy-maps "github:at-import/Sassy-Maps#0.x.x" - skatejs "^5.2.4" - -"@bolt/drupal-twig-extensions@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/drupal-twig-extensions/-/drupal-twig-extensions-2.4.0.tgz#a5a76f0fe370666ced28cb79def4af4b6900fb67" - integrity sha512-dkZ1C9kRPegU5K3D0r7pTbke3GpGL9mR8Qr7VoprjnvTjpbpOJcDapDUYgy2E00pDaLXxr/vSubvRjefvWKfhA== - -"@bolt/global@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/global/-/global-2.4.0.tgz#9af188f94244bb8257c82ee820dd19f9857e8f70" - integrity sha512-L5f7J1qYuML6sxIHU4TKUS+5Wxv6I2jtXddK7XRKEBUWiMlW0dvBGbcebuvIBh7t8dcjFJuhs2H8uXq8RtHSvQ== - dependencies: - "@bolt/components-ratio" "^2.4.0" - "@bolt/core" "^2.4.0" - normalize-scss "^7.0.1" - -"@bolt/postcss-themify@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/postcss-themify/-/postcss-themify-2.4.0.tgz#ce51e9a0fb07eae764393580461e992cf61a753f" - integrity sha512-ExIi3vKqRi4yMHUrcZT6tOWJHOb0LHYVUatiP6v5xx7VikANCSrkuwps+crLcimn1FhVvDFlBW6HWKpWKnDypA== - dependencies: - "@bolt/core" "^2.4.0" - clean-css "^4.2.1" - fs-extra "^5.0.0" - hex-to-rgba "^1.0.1" - postcss "^7.0.0" - rgb2hex "^0.1.9" - -"@bolt/sass-export-data@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/sass-export-data/-/sass-export-data-2.4.0.tgz#e59374ff26c55a37be7ee164b75eafdad9f33133" - integrity sha512-bI7UzraY3oLBCuETHjsi23T868LWH2k6diZtUoSVg83OvHnODt5WGLm5K/13zkzqxNmID1OZq9h/yR5QBZSpZw== - dependencies: - "@theme-tools/core" "^1.0.0" - chai "^4.1.2" - chai-fs "^1.0.0" - fs-extra "^5.0.0" - jsondiffpatch "^0.2.5" - mocha "^4.0.1" - node-sass "^4.5.3" - -"@bolt/sassdoc-webpack-plugin@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@bolt/sassdoc-webpack-plugin/-/sassdoc-webpack-plugin-2.4.0.tgz#49eb1c80c142ed30b914c94b0657716fc5ee7a69" - integrity sha512-TebvK8evBA3dmnTA/l/Zp4ecLO8y6Vf897iSB6YsJk+OZd212e6UZbP51T61MxNmf3xSec6jWCYeP/GoTl6xGg== - dependencies: - chai "^4.1.2" - js-yaml "^3.12.0" - sassdoc "^2.5.1" - -"@bolt/twig-renderer@^2.4.3": - version "2.4.3" - resolved "https://registry.npmjs.org/@bolt/twig-renderer/-/twig-renderer-2.4.3.tgz#cbefc23278cc8193f1a4f5cd76d2b6b5bc8225ff" - integrity sha512-WOrH1skxRwaJmhC1lSCdMZbdWG2GNyONVNvboIIf5K2m7LiETKoCcT7kxjDOOJFSaWjpibWXoIC0XPE/l+hO4g== - dependencies: - "@basalt/twig-renderer" "^0.12.0" - "@bolt/build-tools" "^2.4.3" - "@bolt/drupal-twig-extensions" "^2.4.0" - sleep-promise "^8.0.1" - -"@mrmlnc/readdir-enhanced@^2.2.1": - version "2.2.1" - resolved "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" - integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== - dependencies: - call-me-maybe "^1.0.1" - glob-to-regexp "^0.3.0" - -"@nodelib/fs.stat@^1.1.2": - version "1.1.3" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" - integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== - -"@octokit/endpoint@^5.1.0": - version "5.1.4" - resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.1.4.tgz#e6bb3ceda8923fdc9703ded78c9acc28eff88c06" - integrity sha512-DypS8gbbcc9rlOCDW0wV9a+B18+ylduj6PpxeE+qa3IK1h5b0eW4CKj5pxxXWOZUYhEKwgOnh3+Q+Y/hx/bOPw== - dependencies: - deepmerge "3.2.0" - is-plain-object "^3.0.0" - universal-user-agent "^2.1.0" - url-template "^2.0.8" - -"@octokit/plugin-throttling@^2.3.0": - version "2.6.0" - resolved "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-2.6.0.tgz#0b3107c2267e3a8cf6f63925847ec3ebe9e0aa8d" - integrity sha512-E0xQrcD36sVEeBhut6j9nWX38vm/1LKMRSUqjvJ/mqGLXfHr4jYMsrR3I/nT2QC0eJL1/SKMt7zxOt7pZiFhDA== - dependencies: - bottleneck "^2.15.3" - -"@octokit/request-error@^1.0.1", "@octokit/request-error@^1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.0.2.tgz#e6dbc5be13be1041ef8eca9225520982add574cf" - integrity sha512-T9swMS/Vc4QlfWrvyeSyp/GjhXtYaBzCcibjGywV4k4D2qVrQKfEMPy8OxMDEj7zkIIdpHwqdpVbKCvnUPqkXw== - dependencies: - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request@^4.0.1": - version "4.1.0" - resolved "https://registry.npmjs.org/@octokit/request/-/request-4.1.0.tgz#e85dc377113baf2fe24433af8feb20e8a32e21b0" - integrity sha512-RvpQAba4i+BNH0z8i0gPRc1ShlHidj4puQjI/Tno6s+Q3/Mzb0XRSHJiOhpeFrZ22V7Mwjq1E7QS27P5CgpWYA== - dependencies: - "@octokit/endpoint" "^5.1.0" - "@octokit/request-error" "^1.0.1" - deprecation "^2.0.0" - is-plain-object "^3.0.0" - node-fetch "^2.3.0" - once "^1.4.0" - universal-user-agent "^2.1.0" - -"@octokit/rest@^16.13.3": - version "16.27.3" - resolved "https://registry.npmjs.org/@octokit/rest/-/rest-16.27.3.tgz#20ad5d0c7043364d1e1f72fa74f825c181771fc0" - integrity sha512-WWH/SHF4kus6FG+EAfX7/JYH70EjgFYa4AAd2Lf1hgmgzodhrsoxpXPSZliZ5BdJruZPMP7ZYaPoTrYCCKYzmQ== - dependencies: - "@octokit/request" "^4.0.1" - "@octokit/request-error" "^1.0.2" - atob-lite "^2.0.0" - before-after-hook "^1.4.0" - btoa-lite "^1.0.0" - deprecation "^2.0.0" - lodash.get "^4.4.2" - lodash.set "^4.3.2" - lodash.uniq "^4.5.0" - octokit-pagination-methods "^1.1.0" - once "^1.4.0" - universal-user-agent "^2.0.0" - url-template "^2.0.8" - -"@polymer/lit-element@0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@polymer/lit-element/-/lit-element-0.6.2.tgz#589f2fa19e84d23c1debb2c329cbab758ae30581" - integrity sha512-4NWvK6SyAyyeW1mQ24ZVR+rtqZNHZ2JWnVTsPF/1iXnmmPwnpLs8mz0HRqz5adyoyt96ed/y2dsDwGBktJYyew== - dependencies: - lit-html "^0.12.0" - -"@polymer/polymer@^3.1.0": - version "3.2.0" - resolved "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.2.0.tgz#b41fddec4ecac63b12936b93726678d23add7afd" - integrity sha512-L6uV1oM6T6xbwbVx6t3biG5T2VSSB03LxnIrUd9M2pr6RkHVPFHJ37pC5MUwBAEhkGFJif7eks7fdMMSGZTeEQ== - dependencies: - "@webcomponents/shadycss" "^1.8.0" - -"@sindresorhus/is@^0.14.0": - version "0.14.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== - -"@szmarczak/http-timer@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== - dependencies: - defer-to-connect "^1.0.1" - -"@theme-tools/core@^1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@theme-tools/core/-/core-1.0.0.tgz#7ed9915cb4d0f3591404346612ce3adfc2d9923e" - integrity sha512-8CwKeAVetuEIs5RlUlCW/GcxYsL80sPjVfNDIwtpRcCJ6rwKVtpHOeWFX/0Q6nv6tzU4p6tlz8SDTEQB7Nk0zg== - dependencies: - js-yaml "^3.8.3" - merge "^1.2.0" - node-notifier "^5.1.2" - -"@types/events@*": - version "3.0.0" - resolved "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" - integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== - -"@types/glob@^7.1.1": - version "7.1.1" - resolved "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" - integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== - dependencies: - "@types/events" "*" - "@types/minimatch" "*" - "@types/node" "*" - -"@types/minimatch@*": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" - integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== - -"@types/node@*": - version "12.0.4" - resolved "https://registry.npmjs.org/@types/node/-/node-12.0.4.tgz#46832183115c904410c275e34cf9403992999c32" - integrity sha512-j8YL2C0fXq7IONwl/Ud5Kt0PeXw22zGERt+HSSnwbKOJVsAGkEz3sFCYwaF9IOuoG1HOtE0vKCj6sXF7Q0+Vaw== - -"@types/q@^1.5.1": - version "1.5.2" - resolved "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" - integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== - -"@webassemblyjs/ast@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" - integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== - dependencies: - "@webassemblyjs/helper-module-context" "1.8.5" - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" - "@webassemblyjs/wast-parser" "1.8.5" - -"@webassemblyjs/floating-point-hex-parser@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" - integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== - -"@webassemblyjs/helper-api-error@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" - integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== - -"@webassemblyjs/helper-buffer@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" - integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== - -"@webassemblyjs/helper-code-frame@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" - integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== - dependencies: - "@webassemblyjs/wast-printer" "1.8.5" - -"@webassemblyjs/helper-fsm@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" - integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== - -"@webassemblyjs/helper-module-context@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" - integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== - dependencies: - "@webassemblyjs/ast" "1.8.5" - mamacro "^0.0.3" - -"@webassemblyjs/helper-wasm-bytecode@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" - integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== - -"@webassemblyjs/helper-wasm-section@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" - integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-buffer" "1.8.5" - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" - "@webassemblyjs/wasm-gen" "1.8.5" - -"@webassemblyjs/ieee754@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" - integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" - integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" - integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== - -"@webassemblyjs/wasm-edit@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" - integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-buffer" "1.8.5" - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" - "@webassemblyjs/helper-wasm-section" "1.8.5" - "@webassemblyjs/wasm-gen" "1.8.5" - "@webassemblyjs/wasm-opt" "1.8.5" - "@webassemblyjs/wasm-parser" "1.8.5" - "@webassemblyjs/wast-printer" "1.8.5" - -"@webassemblyjs/wasm-gen@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" - integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" - "@webassemblyjs/ieee754" "1.8.5" - "@webassemblyjs/leb128" "1.8.5" - "@webassemblyjs/utf8" "1.8.5" - -"@webassemblyjs/wasm-opt@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" - integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-buffer" "1.8.5" - "@webassemblyjs/wasm-gen" "1.8.5" - "@webassemblyjs/wasm-parser" "1.8.5" - -"@webassemblyjs/wasm-parser@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" - integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-api-error" "1.8.5" - "@webassemblyjs/helper-wasm-bytecode" "1.8.5" - "@webassemblyjs/ieee754" "1.8.5" - "@webassemblyjs/leb128" "1.8.5" - "@webassemblyjs/utf8" "1.8.5" - -"@webassemblyjs/wast-parser@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" - integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/floating-point-hex-parser" "1.8.5" - "@webassemblyjs/helper-api-error" "1.8.5" - "@webassemblyjs/helper-code-frame" "1.8.5" - "@webassemblyjs/helper-fsm" "1.8.5" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/wast-printer@1.8.5": - version "1.8.5" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" - integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/wast-parser" "1.8.5" - "@xtuc/long" "4.2.2" - -"@webcomponents/custom-elements@^1.2.1": - version "1.2.4" - resolved "https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.2.4.tgz#7074543155396114617722724d6f6cb7b3800a14" - integrity sha512-WiTlgz6/kuwajYIcgyq64rSlCtb2AvbxwwrExP3wr6rKbJ72I3hi/sb4KdGUumfC+isDn2F0btZGk4MnWpyO1Q== - -"@webcomponents/shadycss@^1.8.0": - version "1.9.1" - resolved "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.1.tgz#d769fbadfa504f11b84caeef26701f89070ec49a" - integrity sha512-IaZOnWOKXHghqk/WfPNDRIgDBi3RsVPY2IFAw6tYiL9UBGvQRy5R6uC+Fk7qTZsReTJ0xh5MTT8yAcb3MUR4mQ== - -"@webcomponents/shadydom@^1.4.2": - version "1.6.0" - resolved "https://registry.npmjs.org/@webcomponents/shadydom/-/shadydom-1.6.0.tgz#5918eccd07ff506a3a258fa0a7339bd7434bcf0a" - integrity sha512-2r9SGHv13MS488ZwYXd2W123bXn/ZjWo5/pO4s9FOZmpEYv8ALWRc4VazmiFNl+3n4Cdu0uvCwju4V6ivgZKXA== - -"@webcomponents/template@^1.4.0": - version "1.4.0" - resolved "https://registry.npmjs.org/@webcomponents/template/-/template-1.4.0.tgz#2ffd4574a5a2b662f0330dbeb40b231244a41c52" - integrity sha512-HJfhAxCD+DZmtm8oCALtvyOL9JlisSDqwE/4FWfaxq4SK3gUIp/2eUjLE6zqt9n6VHeo1zQjMTOA4fKKF6qSQg== - -"@webcomponents/webcomponentsjs@^2.2.4": - version "2.2.10" - resolved "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.2.10.tgz#6f6bee0277833ae98d7e5b46f1e0fdb48cd5ff44" - integrity sha512-5dzhUhP+h0qMiK0IWb7VNb0OGBoXO3AuI6Qi8t9PoKT50s5L1jv0xnwnLq+cFgPuTB8FLTNP8xIDmyoOsKBy9Q== - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== - -"@zeit/schemas@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38eac7bcbf58a867fe3" - integrity sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg== - -a-sync-waterfall@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz#75b6b6aa72598b497a125e7a2770f14f4c8a1fa7" - integrity sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA== - -abbrev@1: - version "1.1.1" - resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -accepts@~1.3.4, accepts@~1.3.7: - version "1.3.7" - resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== - dependencies: - mime-types "~2.1.24" - negotiator "0.6.2" - -accepts@~1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" - integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= - dependencies: - mime-types "~2.1.18" - negotiator "0.6.1" - -acorn-dynamic-import@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" - integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - -acorn-jsx@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" - integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== - -acorn@^6.0.5, acorn@^6.0.7: - version "6.1.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" - integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== - -address@^1.0.3: - version "1.1.0" - resolved "https://registry.npmjs.org/address/-/address-1.1.0.tgz#ef8e047847fcd2c5b6f50c16965f924fd99fe709" - integrity sha512-4diPfzWbLEIElVG4AnqP+00SULlPzNuyJFNnmMrLgyaxG6tZXJ1sn7mjBu4fHrJE+Yp/jgylOweJn2xsLMFggQ== - -adjust-sourcemap-loader@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" - integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA== - dependencies: - assert "1.4.1" - camelcase "5.0.0" - loader-utils "1.2.3" - object-path "0.11.4" - regex-parser "2.2.10" - -after@0.8.2: - version "0.8.2" - resolved "https://registry.npmjs.org/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" - integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= - -ajv-errors@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" - integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== - -ajv-keywords@^3.1.0: - version "3.4.0" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" - integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== - -ajv@6.5.3: - version "6.5.3" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9" - integrity sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^6.1.0, ajv@^6.5.2, ajv@^6.5.4, ajv@^6.5.5, ajv@^6.7.0, ajv@^6.9.1: - version "6.10.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" - integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -alphanum-sort@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= - -ansi-align@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" - integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= - dependencies: - string-width "^2.0.0" - -ansi-colors@^3.0.0: - version "3.2.4" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" - integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== - -ansi-escapes@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - -ansi-html@0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" - integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= - -ansi-regex@^0.2.0, ansi-regex@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" - integrity sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk= - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-styles@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" - integrity sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94= - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -aproba@^1.0.3, aproba@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - -arch@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e" - integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg== - -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -arg@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/arg/-/arg-2.0.0.tgz#c06e7ff69ab05b3a4a03ebe0407fac4cba657545" - integrity sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w== - -argh@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/argh/-/argh-0.1.4.tgz#3eb4d612973fc6b6dc6ef338f56f759f2ac5c3a6" - integrity sha1-PrTWEpc/xrbcbvM49W91nyrFw6Y= - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -arity-n@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" - integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U= - -arr-diff@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" - integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= - dependencies: - arr-flatten "^1.0.1" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.0.1, arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-find-index@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= - -array-sort@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" - integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== - dependencies: - default-compare "^1.0.0" - get-value "^2.0.6" - kind-of "^5.0.2" - -array-union@^1.0.1, array-union@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= - dependencies: - array-uniq "^1.0.1" - -array-uniq@^1.0.1: - version "1.0.3" - resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= - -array-unique@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" - integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -arraybuffer.slice@~0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" - integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== - -asap@^2.0.3: - version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= - -asn1.js@^4.0.0: - version "4.10.1" - resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - -assert@1.4.1: - version "1.4.1" - resolved "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= - dependencies: - util "0.10.3" - -assert@^1.1.1: - version "1.5.0" - resolved "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== - dependencies: - object-assign "^4.1.1" - util "0.10.3" - -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -async-each-series@0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" - integrity sha1-dhfBkXQB/Yykooqtzj266Yr+tDI= - -async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== - -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= - -async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== - -async@1.5.2, async@^1.5.2: - version "1.5.2" - resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" - integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -atob-lite@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696" - integrity sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY= - -atob@^2.1.1: - version "2.1.2" - resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -autoprefixer@^9.4.3: - version "9.5.1" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.5.1.tgz#243b1267b67e7e947f28919d786b50d3bb0fb357" - integrity sha512-KJSzkStUl3wP0D5sdMlP82Q52JLy5+atf2MHAre48+ckWkXgixmfHyWmA77wFDy6jTHU6mIgXv6hAQ2mf1PjJQ== - dependencies: - browserslist "^4.5.4" - caniuse-lite "^1.0.30000957" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - postcss "^7.0.14" - postcss-value-parser "^3.3.1" - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - -aws4@^1.8.0: - version "1.8.0" - resolved "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== - -axios@0.17.1: - version "0.17.1" - resolved "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz#2d8e3e5d0bdbd7327f91bc814f5c57660f81824d" - integrity sha1-LY4+XQvb1zJ/kbyBT1xXZg+Bgk0= - dependencies: - follow-redirects "^1.2.5" - is-buffer "^1.1.5" - -babel-loader@^8.0.4: - version "8.0.6" - resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" - integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw== - dependencies: - find-cache-dir "^2.0.0" - loader-utils "^1.0.2" - mkdirp "^0.5.1" - pify "^4.0.1" - -babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -backo2@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" - integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base64-arraybuffer@0.1.5: - version "0.1.5" - resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" - integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= - -base64-js@^1.0.2: - version "1.3.0" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== - -base64id@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" - integrity sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY= - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - dependencies: - tweetnacl "^0.14.3" - -before-after-hook@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d" - integrity sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg== - -better-assert@~1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" - integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= - dependencies: - callsite "1.0.0" - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - -bindings@^1.3.1: - version "1.5.0" - resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bit-mask@0.0.2-alpha: - version "0.0.2-alpha" - resolved "https://registry.npmjs.org/bit-mask/-/bit-mask-0.0.2-alpha.tgz#42880fa80055151165d5fa15b331bc0459c27372" - integrity sha1-QogPqABVFRFl1foVszG8BFnCc3I= - dependencies: - prime "0.0.5-alpha" - -bl@^1.0.0: - version "1.2.2" - resolved "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" - integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA== - dependencies: - readable-stream "^2.3.5" - safe-buffer "^5.1.1" - -blob@0.0.5: - version "0.0.5" - resolved "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" - integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== - -block-stream@*: - version "0.0.9" - resolved "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" - integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= - dependencies: - inherits "~2.0.0" - -bluebird@^3.5.1, bluebird@^3.5.3: - version "3.5.5" - resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" - integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== - -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== - -body-parser@1.19.0: - version "1.19.0" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== - dependencies: - bytes "3.1.0" - content-type "~1.0.4" - debug "2.6.9" - depd "~1.1.2" - http-errors "1.7.2" - iconv-lite "0.4.24" - on-finished "~2.3.0" - qs "6.7.0" - raw-body "2.4.0" - type-is "~1.6.17" - -boolbase@^1.0.0, boolbase@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= - -bottleneck@^2.15.3: - version "2.18.1" - resolved "https://registry.npmjs.org/bottleneck/-/bottleneck-2.18.1.tgz#cf7c494d90283ecbe896baa46a1397ae8b3c19d7" - integrity sha512-EhSYARs0MHsNRBPrp1TaeHpgmWFUpA6yl3NNBPjGNilBaQZr4iSbrJ16JbQVXuZkIaB7YVYfaiMiRq7NgyZFQg== - -boxen@1.3.0, boxen@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" - integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== - dependencies: - ansi-align "^2.0.0" - camelcase "^4.0.0" - chalk "^2.0.1" - cli-boxes "^1.0.0" - string-width "^2.0.0" - term-size "^1.2.0" - widest-line "^2.0.0" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^1.8.2: - version "1.8.5" - resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" - integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= - dependencies: - expand-range "^1.8.1" - preserve "^0.2.0" - repeat-element "^1.1.2" - -braces@^2.3.1, braces@^2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -brorand@^1.0.1: - version "1.1.0" - resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= - -browser-stdout@1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" - integrity sha1-81HTKWnTL6XXpVZxVCY9korjvR8= - -browser-sync-client@^2.26.4: - version "2.26.4" - resolved "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.26.4.tgz#2b2972579139ce73bfaf0d165c31ef2fecdf02f9" - integrity sha512-mQiDp5/tf79VezDS5j/EExU4Ze6f5DQYuL0Z7VdJgBbNLTHDfkYGi2R620qc6HkY9XZA0m4/UwihT7J42RBIJA== - dependencies: - etag "1.8.1" - fresh "0.5.2" - mitt "^1.1.3" - rxjs "^5.5.6" - -browser-sync-ui@^2.26.4: - version "2.26.4" - resolved "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz#3772f13c6b93f2d7d333f4be0ca1ec02aae97dba" - integrity sha512-u20P3EsZoM8Pt+puoi3BU3KlbQAH1lAcV+/O4saF26qokrBqIDotmGonfWwoRbUmdxZkM9MBmA0K39ZTG1h4sA== - dependencies: - async-each-series "0.1.1" - connect-history-api-fallback "^1" - immutable "^3" - server-destroy "1.0.1" - socket.io-client "^2.0.4" - stream-throttle "^0.1.3" - -browser-sync@^2.26.3: - version "2.26.5" - resolved "https://registry.npmjs.org/browser-sync/-/browser-sync-2.26.5.tgz#c11353ffd4694be88a34b9a5d2a5a0ba789587d0" - integrity sha512-zVa6MmadAFgl5Uk53Yy5cw5tGTO7xSGAWK3Yx70GJ1t5jK+r6B4q3xq+1XbYfLt1SbeFg7WoNWneNhMT4B9jFw== - dependencies: - browser-sync-client "^2.26.4" - browser-sync-ui "^2.26.4" - bs-recipes "1.3.4" - bs-snippet-injector "^2.0.1" - chokidar "^2.0.4" - connect "3.6.6" - connect-history-api-fallback "^1" - dev-ip "^1.0.1" - easy-extender "^2.3.4" - eazy-logger "^3" - etag "^1.8.1" - fresh "^0.5.2" - fs-extra "3.0.1" - http-proxy "1.15.2" - immutable "^3" - localtunnel "1.9.1" - micromatch "^3.1.10" - opn "5.3.0" - portscanner "2.1.1" - qs "6.2.3" - raw-body "^2.3.2" - resp-modifier "6.0.2" - rx "4.1.0" - send "0.16.2" - serve-index "1.9.1" - serve-static "1.13.2" - server-destroy "1.0.1" - socket.io "2.1.1" - ua-parser-js "0.7.17" - yargs "6.4.0" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= - dependencies: - bn.js "^4.1.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserslist@^4.0.0, browserslist@^4.1.1, browserslist@^4.5.4, browserslist@^4.6.0: - version "4.6.1" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.6.1.tgz#ee5059b1aec18cbec9d055d6cb5e24ae50343a9b" - integrity sha512-1MC18ooMPRG2UuVFJTHFIAkk6mpByJfxCrnUyvSlu/hyQSFHMrlhM02SzNuCV+quTP4CKmqtOMAIjrifrpBJXQ== - dependencies: - caniuse-lite "^1.0.30000971" - electron-to-chromium "^1.3.137" - node-releases "^1.1.21" - -bs-recipes@1.3.4: - version "1.3.4" - resolved "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" - integrity sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU= - -bs-snippet-injector@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz#61b5393f11f52559ed120693100343b6edb04dd5" - integrity sha1-YbU5PxH1JVntEgaTEANDtu2wTdU= - -btoa-lite@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" - integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc= - -buffer-alloc-unsafe@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== - -buffer-alloc@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== - dependencies: - buffer-alloc-unsafe "^1.1.0" - buffer-fill "^1.0.0" - -buffer-fill@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= - -buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -buffer@^5.2.1: - version "5.2.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" - integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= - -bytes@3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== - -cacache@^10.0.4: - version "10.0.4" - resolved "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460" - integrity sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA== - dependencies: - bluebird "^3.5.1" - chownr "^1.0.1" - glob "^7.1.2" - graceful-fs "^4.1.11" - lru-cache "^4.1.1" - mississippi "^2.0.0" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - promise-inflight "^1.0.1" - rimraf "^2.6.2" - ssri "^5.2.4" - unique-filename "^1.1.0" - y18n "^4.0.0" - -cacache@^11.3.2: - version "11.3.2" - resolved "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa" - integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg== - dependencies: - bluebird "^3.5.3" - chownr "^1.1.1" - figgy-pudding "^3.5.1" - glob "^7.1.3" - graceful-fs "^4.1.15" - lru-cache "^5.1.1" - mississippi "^3.0.0" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - promise-inflight "^1.0.1" - rimraf "^2.6.2" - ssri "^6.0.1" - unique-filename "^1.1.1" - y18n "^4.0.0" - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -cacheable-request@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.0.0.tgz#4a1727414e02ac4af82560c4da1b61daa3fa2b63" - integrity sha512-2N7AmszH/WPPpl5Z3XMw1HAP+8d+xugnKQAeKvxFZ/04dbT/CAznqwbl+7eSr3HkwdepNwtb2yx3CAMQWvG01Q== - dependencies: - clone-response "^1.0.2" - get-stream "^4.0.0" - http-cache-semantics "^4.0.0" - keyv "^3.0.0" - lowercase-keys "^1.0.1" - normalize-url "^3.1.0" - responselike "^1.0.2" - -call-me-maybe@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" - integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= - -caller-callsite@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" - integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= - dependencies: - callsites "^2.0.0" - -caller-path@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" - integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= - dependencies: - caller-callsite "^2.0.0" - -callsite@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" - integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= - -callsites@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camel-case@3.0.x, camel-case@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" - integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= - dependencies: - no-case "^2.2.0" - upper-case "^1.1.1" - -camelcase-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= - dependencies: - camelcase "^2.0.0" - map-obj "^1.0.0" - -camelcase@5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" - integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== - -camelcase@^2.0.0, camelcase@^2.0.1: - version "2.1.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= - -camelcase@^4.0.0, camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= - -camelcase@^5.0.0, camelcase@^5.2.0: - version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelify@0.0.2: - version "0.0.2" - resolved "https://registry.npmjs.org/camelify/-/camelify-0.0.2.tgz#e143472ab6ef25b894a4e85c354c9977ab1f1e15" - integrity sha1-4UNHKrbvJbiUpOhcNUyZd6sfHhU= - -caniuse-api@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - dependencies: - browserslist "^4.0.0" - caniuse-lite "^1.0.0" - lodash.memoize "^4.1.2" - lodash.uniq "^4.5.0" - -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000957, caniuse-lite@^1.0.30000971: - version "1.0.30000971" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000971.tgz#d1000e4546486a6977756547352bc96a4cfd2b13" - integrity sha512-TQFYFhRS0O5rdsmSbF1Wn+16latXYsQJat66f7S7lizXW1PVpWJeZw9wqqVLIjuxDRz7s7xRUj13QCfd8hKn6g== - -capture-stack-trace@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" - integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - -cdocparser@^0.13.0: - version "0.13.0" - resolved "https://registry.npmjs.org/cdocparser/-/cdocparser-0.13.0.tgz#1ba98a1e1e1668e2bfb35d41761e9e4645d731ba" - integrity sha1-G6mKHh4WaOK/s11Bdh6eRkXXMbo= - dependencies: - escape-string-regexp "^1.0.2" - lodash.assign "^2.4.1" - strip-indent "^1.0.0" - -chai-fs@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/chai-fs/-/chai-fs-1.0.0.tgz#8b242852748a54f1df91f1ea430bb39748cf7421" - integrity sha1-iyQoUnSKVPHfkfHqQwuzl0jPdCE= - dependencies: - bit-mask "0.0.2-alpha" - readdir-enhanced "^1.4.0" - -chai@^4.1.2: - version "4.2.0" - resolved "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" - integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^3.0.1" - get-func-name "^2.0.0" - pathval "^1.1.0" - type-detect "^4.0.5" - -chalk@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" - integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^0.5.1: - version "0.5.1" - resolved "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" - integrity sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ= - dependencies: - ansi-styles "^1.1.0" - escape-string-regexp "^1.0.0" - has-ansi "^0.1.0" - strip-ansi "^0.3.0" - supports-color "^0.2.0" - -chalk@^1.1.1: - version "1.1.3" - resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.0, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -change-case@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e" - integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw== - dependencies: - camel-case "^3.0.0" - constant-case "^2.0.0" - dot-case "^2.1.0" - header-case "^1.0.0" - is-lower-case "^1.1.0" - is-upper-case "^1.1.0" - lower-case "^1.1.1" - lower-case-first "^1.0.0" - no-case "^2.3.2" - param-case "^2.1.0" - pascal-case "^2.0.0" - path-case "^2.1.0" - sentence-case "^2.1.0" - snake-case "^2.1.0" - swap-case "^1.1.0" - title-case "^2.1.0" - upper-case "^1.1.1" - upper-case-first "^1.1.0" - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" - integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= - -check-links@^1.1.4: - version "1.1.7" - resolved "https://registry.npmjs.org/check-links/-/check-links-1.1.7.tgz#35d1d39b6a11bfd23bad74848a507e143743f7f9" - integrity sha512-BlewZuP+EGGbEXhnNXPR2QSVzIL4p4w2jyeB/GGFFL/NWGSOVStrFMdq0fyP0t9wEeOxpoQO2HoIScOW+E8/xQ== - dependencies: - got "^9.6.0" - is-relative-url "^2.0.0" - p-map "^2.0.0" - p-memoize "^2.1.0" - -cheerio@^1.0.0-rc.2: - version "1.0.0-rc.3" - resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" - integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== - dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.1" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash "^4.15.0" - parse5 "^3.0.1" - -chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: - version "2.1.6" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" - integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" - -chownr@^1.0.1, chownr@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" - integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== - -chroma-js@^1.2.2: - version "1.4.1" - resolved "https://registry.npmjs.org/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" - integrity sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ== - -chrome-trace-event@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== - dependencies: - tslib "^1.9.0" - -ci-info@^1.5.0: - version "1.6.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" - integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== - -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -class-list@~0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/class-list/-/class-list-0.1.1.tgz#9b9745192c4179b5da0a0d7633658e3c70d796cb" - integrity sha1-m5dFGSxBebXaCg12M2WOPHDXlss= - dependencies: - indexof "0.0.1" - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -classnames@^2.2.5, classnames@^2.2.6: - version "2.2.6" - resolved "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" - integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== - -clean-css-loader@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/clean-css-loader/-/clean-css-loader-1.1.0.tgz#ae3146c8249c3734e8f887ec3215e2acb94bc862" - integrity sha512-1k8n4y20G1ZEobILHfD6/IFV03S0QmTPLmezD5eHg6WvV+XKMJ+03li1kqlfRccpno0O9olEHtcc1qtqwrn0Og== - dependencies: - clean-css "^4.2.1" - loader-utils "^1.1.0" - -clean-css@4.2.x, clean-css@^4.2.1: - version "4.2.1" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" - integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== - dependencies: - source-map "~0.6.0" - -cli-boxes@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" - integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= - -cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= - dependencies: - restore-cursor "^2.0.0" - -cli-spinners@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.1.0.tgz#22c34b4d51f573240885b201efda4e4ec9fff3c7" - integrity sha512-8B00fJOEh1HPrx4fo5eW16XmE1PcL1tGpGrxy63CXGP9nHdPBN63X75hA1zhvQuhVztJWLqV58Roj2qlNM7cAA== - -cli-width@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" - integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= - -clipboard@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d" - integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ== - dependencies: - good-listener "^1.2.2" - select "^1.1.2" - tiny-emitter "^2.0.0" - -clipboardy@1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef" - integrity sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA== - dependencies: - arch "^2.1.0" - execa "^0.8.0" - -cliui@^3.0.3, cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - -cliui@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" - integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== - dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - wrap-ansi "^2.0.0" - -clone-deep@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" - integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ== - dependencies: - for-own "^1.0.0" - is-plain-object "^2.0.4" - kind-of "^6.0.0" - shallow-clone "^1.0.0" - -clone-response@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= - dependencies: - mimic-response "^1.0.0" - -clone-stats@^0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" - integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= - -clone@2.x, clone@^2.1.1: - version "2.1.2" - resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" - integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= - -clone@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" - integrity sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8= - -clone@^1.0.0, clone@^1.0.2: - version "1.0.4" - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= - -coa@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" - integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== - dependencies: - "@types/q" "^1.5.1" - chalk "^2.4.1" - q "^1.1.2" - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0, color-convert@^1.9.1: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-string@^1.5.2: - version "1.5.3" - resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" - integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color@^3.0.0, color@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/color/-/color-3.1.1.tgz#7abf5c0d38e89378284e873c207ae2172dcc8a61" - integrity sha512-PvUltIXRjehRKPSy89VnDWFKY58xyhTLyxIg21vwQBI6qLwZNPmC8k3C1uytIgFKEpOIzN4y32iPm8231zFHIg== - dependencies: - color-convert "^1.9.1" - color-string "^1.5.2" - -colors@~0.6.0-1: - version "0.6.2" - resolved "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" - integrity sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w= - -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@2.11.0: - version "2.11.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" - integrity sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ== - -commander@2.17.x: - version "2.17.1" - resolved "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== - -commander@^2.19.0, commander@^2.2.0, commander@^2.8.1, commander@~2.20.0: - version "2.20.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" - integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== - -commander@~2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" - integrity sha1-0SG7roYNmZKj1Re6lvVliOR8Z4E= - -commander@~2.19.0: - version "2.19.0" - resolved "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -component-bind@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" - integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= - -component-emitter@1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" - integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -component-inherit@0.0.3: - version "0.0.3" - resolved "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" - integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= - -compose-function@3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" - integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8= - dependencies: - arity-n "^1.0.4" - -compressible@~2.0.14: - version "2.0.16" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.16.tgz#a49bf9858f3821b64ce1be0296afc7380466a77f" - integrity sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA== - dependencies: - mime-db ">= 1.38.0 < 2" - -compression@1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db" - integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.14" - debug "2.6.9" - on-headers "~1.0.1" - safe-buffer "5.1.2" - vary "~1.1.2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.6.2: - version "1.6.2" - resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -configstore@^3.0.0: - version "3.1.2" - resolved "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" - integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== - dependencies: - dot-prop "^4.1.0" - graceful-fs "^4.1.2" - make-dir "^1.0.0" - unique-string "^1.0.0" - write-file-atomic "^2.0.0" - xdg-basedir "^3.0.0" - -connect-history-api-fallback@^1: - version "1.6.0" - resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" - integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== - -connect@3.6.6: - version "3.6.6" - resolved "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" - integrity sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ= - dependencies: - debug "2.6.9" - finalhandler "1.1.0" - parseurl "~1.3.2" - utils-merge "1.0.1" - -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= - dependencies: - date-now "^0.1.4" - -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - -constant-case@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46" - integrity sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY= - dependencies: - snake-case "^2.1.0" - upper-case "^1.1.1" - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= - -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= - -content-disposition@0.5.3: - version "0.5.3" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== - dependencies: - safe-buffer "5.1.2" - -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== - -convert-hrtime@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-2.0.0.tgz#19bfb2c9162f9e11c2f04c2c79de2b7e8095c627" - integrity sha1-Gb+yyRYvnhHC8Ewsed4rfoCVxic= - -convert-source-map@1.6.0, convert-source-map@^1.1.0, convert-source-map@^1.1.1: - version "1.6.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== - dependencies: - safe-buffer "~5.1.1" - -convert-source-map@^0.3.3: - version "0.3.5" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" - integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= - -cookie@0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" - integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= - -cookie@0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" - integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== - -copy-concurrently@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" - integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== - dependencies: - aproba "^1.1.1" - fs-write-stream-atomic "^1.0.8" - iferr "^0.1.5" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.0" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -copy-webpack-plugin@^4.6.0: - version "4.6.0" - resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz#e7f40dd8a68477d405dd1b7a854aae324b158bae" - integrity sha512-Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA== - dependencies: - cacache "^10.0.4" - find-cache-dir "^1.0.0" - globby "^7.1.1" - is-glob "^4.0.0" - loader-utils "^1.1.0" - minimatch "^3.0.4" - p-limit "^1.0.0" - serialize-javascript "^1.4.0" - -core-js-compat@^3.1.1: - version "3.1.3" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.1.3.tgz#0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14" - integrity sha512-EP018pVhgwsKHz3YoN1hTq49aRe+h017Kjz0NQz3nXV0cCRMvH3fLQl+vEPGr4r4J5sk4sU3tUC7U1aqTCeJeA== - dependencies: - browserslist "^4.6.0" - core-js-pure "3.1.3" - semver "^6.1.0" - -core-js-pure@3.1.3: - version "3.1.3" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.1.3.tgz#4c90752d5b9471f641514f3728f51c1e0783d0b5" - integrity sha512-k3JWTrcQBKqjkjI0bkfXS0lbpWPxYuHWfMMjC1VDmzU4Q58IwSbuXSo99YO/hUHlw/EB4AlfA2PVxOGkrIq6dA== - -core-js@^2.4.0, core-js@^2.6.3: - version "2.6.9" - resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" - integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== - -core-util-is@1.0.2, core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cosmiconfig@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" - integrity sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ== - dependencies: - is-directory "^0.3.1" - js-yaml "^3.9.0" - parse-json "^4.0.0" - require-from-string "^2.0.1" - -cosmiconfig@^5.0.0, cosmiconfig@^5.0.7: - version "5.2.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" - integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== - dependencies: - import-fresh "^2.0.0" - is-directory "^0.3.1" - js-yaml "^3.13.1" - parse-json "^4.0.0" - -create-ecdh@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== - dependencies: - bn.js "^4.1.0" - elliptic "^6.0.0" - -create-error-class@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" - integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= - dependencies: - capture-stack-trace "^1.0.0" - -create-hash@^1.1.0, create-hash@^1.1.2: - version "1.2.0" - resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: - version "1.1.7" - resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -cross-spawn@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" - integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI= - dependencies: - lru-cache "^4.0.1" - which "^1.2.9" - -cross-spawn@^5.0.1: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^6.0.0, cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -crypto-browserify@^3.11.0: - version "3.12.0" - resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -crypto-random-string@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" - integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= - -css-color-names@0.0.4, css-color-names@^0.0.4: - version "0.0.4" - resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" - integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= - -css-declaration-sorter@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" - integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== - dependencies: - postcss "^7.0.1" - timsort "^0.3.0" - -css-hot-loader@^1.4.3: - version "1.4.4" - resolved "https://registry.npmjs.org/css-hot-loader/-/css-hot-loader-1.4.4.tgz#ae784932cd8b7d092f7f15702af08b3ec9436052" - integrity sha512-J/qXHz+r7FOT92qMIJfxUk0LC9fecQNZVr0MswQ4FOpKLyOCBjofVMfc6R268bh/5ktkTShrweMr0wWqerC92g== - dependencies: - loader-utils "^1.1.0" - lodash "^4.17.5" - normalize-url "^1.9.1" - -css-loader@^2.0.2: - version "2.1.1" - resolved "https://registry.npmjs.org/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" - integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w== - dependencies: - camelcase "^5.2.0" - icss-utils "^4.1.0" - loader-utils "^1.2.3" - normalize-path "^3.0.0" - postcss "^7.0.14" - postcss-modules-extract-imports "^2.0.0" - postcss-modules-local-by-default "^2.0.6" - postcss-modules-scope "^2.1.0" - postcss-modules-values "^2.0.0" - postcss-value-parser "^3.3.0" - schema-utils "^1.0.0" - -css-select-base-adapter@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" - integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== - -css-select@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" - integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== - dependencies: - boolbase "^1.0.0" - css-what "^2.1.2" - domutils "^1.7.0" - nth-check "^1.0.2" - -css-select@~1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= - dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" - -css-tree@1.0.0-alpha.28: - version "1.0.0-alpha.28" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f" - integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w== - dependencies: - mdn-data "~1.1.0" - source-map "^0.5.3" - -css-tree@1.0.0-alpha.29: - version "1.0.0-alpha.29" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" - integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg== - dependencies: - mdn-data "~1.1.0" - source-map "^0.5.3" - -css-unit-converter@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" - integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= - -css-url-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" - integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w= - -css-what@2.1, css-what@^2.1.2: - version "2.1.3" - resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== - -css@^2.0.0: - version "2.2.4" - resolved "https://registry.npmjs.org/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" - integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== - dependencies: - inherits "^2.0.3" - source-map "^0.6.1" - source-map-resolve "^0.5.2" - urix "^0.1.0" - -cssesc@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" - integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -cssnano-preset-default@^4.0.7: - version "4.0.7" - resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" - integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== - dependencies: - css-declaration-sorter "^4.0.1" - cssnano-util-raw-cache "^4.0.1" - postcss "^7.0.0" - postcss-calc "^7.0.1" - postcss-colormin "^4.0.3" - postcss-convert-values "^4.0.1" - postcss-discard-comments "^4.0.2" - postcss-discard-duplicates "^4.0.2" - postcss-discard-empty "^4.0.1" - postcss-discard-overridden "^4.0.1" - postcss-merge-longhand "^4.0.11" - postcss-merge-rules "^4.0.3" - postcss-minify-font-values "^4.0.2" - postcss-minify-gradients "^4.0.2" - postcss-minify-params "^4.0.2" - postcss-minify-selectors "^4.0.2" - postcss-normalize-charset "^4.0.1" - postcss-normalize-display-values "^4.0.2" - postcss-normalize-positions "^4.0.2" - postcss-normalize-repeat-style "^4.0.2" - postcss-normalize-string "^4.0.2" - postcss-normalize-timing-functions "^4.0.2" - postcss-normalize-unicode "^4.0.1" - postcss-normalize-url "^4.0.1" - postcss-normalize-whitespace "^4.0.2" - postcss-ordered-values "^4.1.2" - postcss-reduce-initial "^4.0.3" - postcss-reduce-transforms "^4.0.2" - postcss-svgo "^4.0.2" - postcss-unique-selectors "^4.0.1" - -cssnano-util-get-arguments@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" - integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= - -cssnano-util-get-match@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" - integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= - -cssnano-util-raw-cache@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" - integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== - dependencies: - postcss "^7.0.0" - -cssnano-util-same-parent@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" - integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== - -cssnano@^4.1.0, cssnano@^4.1.8: - version "4.1.10" - resolved "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" - integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== - dependencies: - cosmiconfig "^5.0.0" - cssnano-preset-default "^4.0.7" - is-resolvable "^1.0.0" - postcss "^7.0.0" - -csso@^3.5.1: - version "3.5.1" - resolved "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" - integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg== - dependencies: - css-tree "1.0.0-alpha.29" - -currently-unhandled@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= - dependencies: - array-find-index "^1.0.1" - -cyclist@~0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" - integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= - -d@1: - version "1.0.0" - resolved "https://registry.npmjs.org/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" - integrity sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8= - dependencies: - es5-ext "^0.10.9" - -dargs@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" - integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= - dependencies: - number-is-nan "^1.0.0" - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= - dependencies: - assert-plus "^1.0.0" - -dasherize@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" - integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= - -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= - -debug@2.6.9, debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@3.1.0, debug@~3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== - dependencies: - ms "2.0.0" - -debug@^3.1.0, debug@^3.2.6: - version "3.2.6" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - -debug@^4.0.1, debug@^4.1.0: - version "4.1.1" - resolved "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== - dependencies: - ms "^2.1.1" - -decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= - dependencies: - mimic-response "^1.0.0" - -deep-eql@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" - integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== - dependencies: - type-detect "^4.0.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -deepmerge@3.2.0, deepmerge@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz#58ef463a57c08d376547f8869fdc5bcee957f44e" - integrity sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow== - -default-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" - integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== - dependencies: - kind-of "^5.0.2" - -defaults@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" - integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= - dependencies: - clone "^1.0.2" - -defer-to-connect@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" - integrity sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw== - -define-properties@^1.1.2, define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -del@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" - integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= - dependencies: - globby "^6.1.0" - is-path-cwd "^1.0.0" - is-path-in-cwd "^1.0.0" - p-map "^1.1.1" - pify "^3.0.0" - rimraf "^2.2.8" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - -delegate@^3.1.2: - version "3.2.0" - resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" - integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= - -deprecation@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.0.0.tgz#dd0427cd920c78bc575ec39dab2f22e7c304fb9d" - integrity sha512-lbQN037mB3VfA2JFuguM5GCJ+zPinMeCrFe+AfSZ6eqrnJA/Fs+EYMnd6Nb2mn9lf2jO9xwEd9o9lic+D4vkcw== - -des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= - -detect-file@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= - -detect-indent@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" - integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= - -detect-libc@^1.0.2, detect-libc@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - -dev-ip@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" - integrity sha1-p2o+0YVb56ASu4rBbLgPPADcKPA= - -diff@3.3.1: - version "3.3.1" - resolved "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" - integrity sha512-MKPHZDMB0o6yHyDryUOScqZibp914ksXwAMYMTHj6KO8UeKsRYNJD3oNCKjTqZon+V488P7N/HzXF8t7ZR95ww== - -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -dir-glob@^2.0.0, dir-glob@^2.2.2: - version "2.2.2" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" - integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== - dependencies: - path-type "^3.0.0" - -docopt@^0.6.1: - version "0.6.2" - resolved "https://registry.npmjs.org/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" - integrity sha1-so6eIiDaXsSffqW7JKR3h0Be6xE= - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -document-register-element@^1.13.1: - version "1.13.2" - resolved "https://registry.npmjs.org/document-register-element/-/document-register-element-1.13.2.tgz#e1773941f6e39345aefec909cc753e82993b415d" - integrity sha512-zFmrflJsehS9r86gNiBdvShz+Iuvg8Xnxq715+mrTuHNBway5c24ldTdVmqKxpD4WQBo1HnSflvSJdPgSBb11A== - dependencies: - lightercollective "^0.3.0" - -dom-serializer@0, dom-serializer@~0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== - dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" - -domain-browser@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== - dependencies: - domelementtype "1" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1, domutils@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - -dot-case@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee" - integrity sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4= - dependencies: - no-case "^2.2.0" - -dot-prop@^4.1.0, dot-prop@^4.1.1: - version "4.2.0" - resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" - integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== - dependencies: - is-obj "^1.0.0" - -drift-zoom@^1.2.0: - version "1.3.4" - resolved "https://registry.npmjs.org/drift-zoom/-/drift-zoom-1.3.4.tgz#6edd37147f2ce0c5237d6380b900925290403dd2" - integrity sha512-/XD2GWZb4EMi/32xDG5YpjGPYADygG4UPG/IlqAiOObB7SGfGIsfJipl8owrs7Vk8R/eMMXF07My7lQX/EHCGw== - -duplexer2@^0.1.2: - version "0.1.4" - resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= - dependencies: - readable-stream "^2.0.2" - -duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= - -duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: - version "3.7.1" - resolved "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" - -easy-extender@^2.3.4: - version "2.3.4" - resolved "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz#298789b64f9aaba62169c77a2b3b64b4c9589b8f" - integrity sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q== - dependencies: - lodash "^4.17.10" - -eazy-logger@^3: - version "3.0.2" - resolved "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" - integrity sha1-oyWqXlPROiIliJsqxBE7K5Y29Pw= - dependencies: - tfunk "^3.0.1" - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -electron-to-chromium@^1.3.137: - version "1.3.141" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.141.tgz#5858d3a74ceafe71e7824e7c809ea2cc59c8e104" - integrity sha512-DdQaeP8yQNYFdivOrp37UNAZMvyZP//+SWYMVJD31A/3gbI1J6olQs8tuRaHL2ij7dubhCDXhlE4F97mrT8KGQ== - -element-closest@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/element-closest/-/element-closest-2.0.2.tgz#72a740a107453382e28df9ce5dbb5a8df0f966ec" - integrity sha1-cqdAoQdFM4LijfnOXbtajfD5Zuw= - -elliptic@^6.0.0: - version "6.4.1" - resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" - integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== - dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" - hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= - -encodeurl@~1.0.1, encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= - -end-of-stream@^1.0.0, end-of-stream@^1.1.0: - version "1.4.1" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" - integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== - dependencies: - once "^1.4.0" - -ends-with@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz#2f9da98d57a50cfda4571ce4339000500f4e6b8a" - integrity sha1-L52pjVelDP2kVxzkM5AAUA9Oa4o= - -engine.io-client@~3.2.0: - version "3.2.1" - resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" - integrity sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw== - dependencies: - component-emitter "1.2.1" - component-inherit "0.0.3" - debug "~3.1.0" - engine.io-parser "~2.1.1" - has-cors "1.1.0" - indexof "0.0.1" - parseqs "0.0.5" - parseuri "0.0.5" - ws "~3.3.1" - xmlhttprequest-ssl "~1.5.4" - yeast "0.1.2" - -engine.io-client@~3.3.1: - version "3.3.2" - resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.3.2.tgz#04e068798d75beda14375a264bb3d742d7bc33aa" - integrity sha512-y0CPINnhMvPuwtqXfsGuWE8BB66+B6wTtCofQDRecMQPYX3MYUZXFNKDhdrSe3EVjgOu4V3rxdeqN/Tr91IgbQ== - dependencies: - component-emitter "1.2.1" - component-inherit "0.0.3" - debug "~3.1.0" - engine.io-parser "~2.1.1" - has-cors "1.1.0" - indexof "0.0.1" - parseqs "0.0.5" - parseuri "0.0.5" - ws "~6.1.0" - xmlhttprequest-ssl "~1.5.4" - yeast "0.1.2" - -engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6" - integrity sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA== - dependencies: - after "0.8.2" - arraybuffer.slice "~0.0.7" - base64-arraybuffer "0.1.5" - blob "0.0.5" - has-binary2 "~1.0.2" - -engine.io@~3.2.0: - version "3.2.1" - resolved "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz#b60281c35484a70ee0351ea0ebff83ec8c9522a2" - integrity sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w== - dependencies: - accepts "~1.3.4" - base64id "1.0.0" - cookie "0.3.1" - debug "~3.1.0" - engine.io-parser "~2.1.0" - ws "~3.3.1" - -enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" - integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - tapable "^1.0.0" - -entities@^1.1.1, entities@~1.1.1: - version "1.1.2" - resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - -errno@^0.1.3, errno@~0.1.7: - version "0.1.7" - resolved "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== - dependencies: - prr "~1.0.1" - -error-ex@^1.2.0, error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.12.0, es-abstract@^1.5.1: - version "1.13.0" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" - integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== - dependencies: - es-to-primitive "^1.2.0" - function-bind "^1.1.1" - has "^1.0.3" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-keys "^1.0.12" - -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.50" - resolved "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.50.tgz#6d0e23a0abdb27018e5ac4fd09b412bc5517a778" - integrity sha512-KMzZTPBkeQV/JcSQhI5/z6d9VWJ3EnQ194USTUwIYZ2ZbpN8+SGXQKt1h68EX44+qt+Fzr8DO17vnxrw7c3agw== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - next-tick "^1.0.0" - -es6-denodeify@^0.1.0: - version "0.1.5" - resolved "https://registry.npmjs.org/es6-denodeify/-/es6-denodeify-0.1.5.tgz#31d4d5fe9c5503e125460439310e16a2a3f39c1f" - integrity sha1-MdTV/pxVA+ElRgQ5MQ4WoqPznB8= - -es6-iterator@2.0.3, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-promise@^3.0.2: - version "3.3.1" - resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" - integrity sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM= - -es6-promise@^4.1.0, es6-promise@^4.2.5, es6-promise@^4.2.6: - version "4.2.6" - resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz#b685edd8258886365ea62b57d30de28fadcd974f" - integrity sha512-aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q== - -es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= - dependencies: - d "1" - es5-ext "~0.10.14" - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -eslint-loader@^2.1.1: - version "2.1.2" - resolved "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.1.2.tgz#453542a1230d6ffac90e4e7cb9cadba9d851be68" - integrity sha512-rA9XiXEOilLYPOIInvVH5S/hYfyTPyxag6DZhoQOduM+3TkghAEQ3VcFO8VnX4J4qg/UIBzp72aOf/xvYmpmsg== - dependencies: - loader-fs-cache "^1.0.0" - loader-utils "^1.0.2" - object-assign "^4.0.1" - object-hash "^1.1.4" - rimraf "^2.6.1" - -eslint-scope@^4.0.0, eslint-scope@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - -eslint-utils@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" - integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== - -eslint-visitor-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" - integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== - -eslint@^5.12.1: - version "5.16.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" - integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== - dependencies: - "@babel/code-frame" "^7.0.0" - ajv "^6.9.1" - chalk "^2.1.0" - cross-spawn "^6.0.5" - debug "^4.0.1" - doctrine "^3.0.0" - eslint-scope "^4.0.3" - eslint-utils "^1.3.1" - eslint-visitor-keys "^1.0.0" - espree "^5.0.1" - esquery "^1.0.1" - esutils "^2.0.2" - file-entry-cache "^5.0.1" - functional-red-black-tree "^1.0.1" - glob "^7.1.2" - globals "^11.7.0" - ignore "^4.0.6" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - inquirer "^6.2.2" - js-yaml "^3.13.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.3.0" - lodash "^4.17.11" - minimatch "^3.0.4" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - optionator "^0.8.2" - path-is-inside "^1.0.2" - progress "^2.0.0" - regexpp "^2.0.1" - semver "^5.5.1" - strip-ansi "^4.0.0" - strip-json-comments "^2.0.1" - table "^5.2.3" - text-table "^0.2.0" - -espree@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" - integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== - dependencies: - acorn "^6.0.7" - acorn-jsx "^5.0.0" - eslint-visitor-keys "^1.0.0" - -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" - integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== - dependencies: - estraverse "^4.0.0" - -esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== - dependencies: - estraverse "^4.1.0" - -estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: - version "4.2.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= - -esutils@^2.0.0, esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= - -etag@1.8.1, etag@^1.8.1, etag@~1.8.1: - version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -ev-emitter@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz#8f18b0ce5c76a5d18017f71c0a795c65b9138f2a" - integrity sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q== - -eventemitter3@1.x.x: - version "1.2.0" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" - integrity sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg= - -events@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" - integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" - integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -expand-brackets@^0.1.4: - version "0.1.5" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" - integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= - dependencies: - is-posix-bracket "^0.1.0" - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expand-range@^1.8.1: - version "1.8.2" - resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= - dependencies: - fill-range "^2.1.0" - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= - dependencies: - homedir-polyfill "^1.0.1" - -express@^4.16.4: - version "4.17.1" - resolved "https://registry.npmjs.org/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" - integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== - dependencies: - accepts "~1.3.7" - array-flatten "1.1.1" - body-parser "1.19.0" - content-disposition "0.5.3" - content-type "~1.0.4" - cookie "0.4.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "~1.1.2" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "~1.1.2" - fresh "0.5.2" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "~2.3.0" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.5" - qs "6.7.0" - range-parser "~1.2.1" - safe-buffer "5.1.2" - send "0.17.1" - serve-static "1.14.1" - setprototypeof "1.1.1" - statuses "~1.5.0" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@2.*: - version "2.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-2.0.2.tgz#1b74985400171b85554894459c978de6ef453ab7" - integrity sha512-AgFD4VU+lVLP6vjnlNfF7OeInLTyeyckCNPEsuxz1vi786UuK/nk6ynPuhn/h+Ju9++TQyr5EpLRI14fc1QtTQ== - -extend@^3.0.0, extend@^3.0.2, extend@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" - integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extglob@^0.3.1: - version "0.3.2" - resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" - integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= - dependencies: - is-extglob "^1.0.0" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= - -fast-glob@^2.2.6: - version "2.2.7" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" - integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== - dependencies: - "@mrmlnc/readdir-enhanced" "^2.2.1" - "@nodelib/fs.stat" "^1.1.2" - glob-parent "^3.1.0" - is-glob "^4.0.0" - merge2 "^1.2.3" - micromatch "^3.1.10" - -fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= - -fast-levenshtein@~2.0.4: - version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fast-url-parser@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" - integrity sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0= - dependencies: - punycode "^1.3.2" - -"fg-loadcss@>= ^2.1.0", fg-loadcss@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/fg-loadcss/-/fg-loadcss-2.1.0.tgz#b3cbdf2ab5ee82a13ddb26340f10e3ac43fe2233" - integrity sha512-HpvR2uRoKvrYAEwimw+k4Fr2NVHYPfld5Lc/f9uy3mKeUTXhS5urL24XA2rqyq5b2i410EXCLir4Uhsb8J1QaQ== - -figgy-pudding@^3.5.1: - version "3.5.1" - resolved "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" - integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= - dependencies: - escape-string-regexp "^1.0.5" - -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== - dependencies: - flat-cache "^2.0.1" - -file-loader@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" - integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw== - dependencies: - loader-utils "^1.0.2" - schema-utils "^1.0.0" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -filename-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" - integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= - -filesize@^3.6.1: - version "3.6.1" - resolved "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" - integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== - -fill-range@^2.1.0: - version "2.2.4" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" - integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== - dependencies: - is-number "^2.1.0" - isobject "^2.0.0" - randomatic "^3.0.0" - repeat-element "^1.1.2" - repeat-string "^1.5.2" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -finalhandler@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" - integrity sha1-zgtoVbRYU+eRsvzGgARtiCU91/U= - dependencies: - debug "2.6.9" - encodeurl "~1.0.1" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.2" - statuses "~1.3.1" - unpipe "~1.0.0" - -finalhandler@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.3" - statuses "~1.5.0" - unpipe "~1.0.0" - -find-cache-dir@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" - integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= - dependencies: - commondir "^1.0.1" - mkdirp "^0.5.1" - pkg-dir "^1.0.0" - -find-cache-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" - integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8= - dependencies: - commondir "^1.0.1" - make-dir "^1.0.0" - pkg-dir "^2.0.0" - -find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - -find-free-port@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/find-free-port/-/find-free-port-2.0.0.tgz#4b22e5f6579eb1a38c41ac6bcb3efed1b6da9b1b" - integrity sha1-SyLl9leesaOMQaxryz7+0bbamxs= - -find-index@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" - integrity sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ= - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - -find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= - dependencies: - locate-path "^2.0.0" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -findup-sync@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" - integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= - dependencies: - detect-file "^1.0.0" - is-glob "^3.1.0" - micromatch "^3.0.4" - resolve-dir "^1.0.1" - -findup@^0.1.5: - version "0.1.5" - resolved "https://registry.npmjs.org/findup/-/findup-0.1.5.tgz#8ad929a3393bac627957a7e5de4623b06b0e2ceb" - integrity sha1-itkpozk7rGJ5V6fl3kYjsGsOLOs= - dependencies: - colors "~0.6.0-1" - commander "~2.1.0" - -first-chunk-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" - integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= - -flak@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/flak/-/flak-1.0.0.tgz#6ca271396c6ca2fe3d29193f9f280317bdb0c943" - integrity sha512-g+EVnZT2Fq+88EJCuJefBylTdOVhlqZeoF/qPhqa+Z3nuJPhglFKDw7Uh1bR3K+gBicuMVRWo9UbDxMAulzsQg== - -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== - dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" - -flatted@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" - integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== - -flush-write-stream@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" - integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== - dependencies: - inherits "^2.0.3" - readable-stream "^2.3.6" - -follow-redirects@^1.2.5: - version "1.7.0" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76" - integrity sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ== - dependencies: - debug "^3.2.6" - -fontfaceobserver@^2.0.13: - version "2.1.0" - resolved "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.1.0.tgz#e2705d293e2c585a6531c2a722905657317a2991" - integrity sha512-ReOsO2F66jUa0jmv2nlM/s1MiutJx/srhAe2+TE8dJCMi02ZZOcCTxTCQFr3Yet+uODUtnr4Mewg+tNQ+4V1Ng== - -for-in@^0.1.3: - version "0.1.8" - resolved "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" - integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= - -for-in@^1.0.1, for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -for-own@^0.1.4: - version "0.1.5" - resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= - dependencies: - for-in "^1.0.1" - -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -forwarded@~0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -fresh@0.5.2, fresh@^0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= - -from2@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -front-matter@^3.0.1: - version "3.0.2" - resolved "https://registry.npmjs.org/front-matter/-/front-matter-3.0.2.tgz#2401cd05fcf22bd0de48a104ffb4efb1ff5c8465" - integrity sha512-iBGZaWyzqgsrPGsqrXZP6N4hp5FzSKDi18nfAoYpgz3qK5sAwFv/ojmn3VS60SOgLvq6CtojNqy0y6ZNz05IzQ== - dependencies: - js-yaml "^3.13.1" - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-copy-file-sync@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/fs-copy-file-sync/-/fs-copy-file-sync-1.1.1.tgz#11bf32c096c10d126e5f6b36d06eece776062918" - integrity sha512-2QY5eeqVv4m2PfyMiEuy9adxNP+ajf+8AR05cEi+OAzPcOj90hvFImeZhTmKLBgSd9EvG33jsD7ZRxsx9dThkQ== - -fs-extra@3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" - integrity sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE= - dependencies: - graceful-fs "^4.1.2" - jsonfile "^3.0.0" - universalify "^0.1.0" - -fs-extra@^2.0.0: - version "2.1.2" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" - integrity sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU= - dependencies: - graceful-fs "^4.1.2" - jsonfile "^2.1.0" - -fs-extra@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" - integrity sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^7.0.0, fs-extra@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-minipass@^1.2.5: - version "1.2.6" - resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" - integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== - dependencies: - minipass "^2.2.1" - -fs-readdir-recursive@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" - integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== - -fs-write-stream-atomic@^1.0.8: - version "1.0.10" - resolved "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" - integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= - dependencies: - graceful-fs "^4.1.2" - iferr "^0.1.5" - imurmurhash "^0.1.4" - readable-stream "1 || 2" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^1.2.7: - version "1.2.9" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" - integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== - dependencies: - nan "^2.12.1" - node-pre-gyp "^0.12.0" - -fstream@^1.0.0, fstream@^1.0.12: - version "1.0.12" - resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" - integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== - dependencies: - graceful-fs "^4.1.2" - inherits "~2.0.0" - mkdirp ">=0.5 0" - rimraf "2" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -gaze@^1.0.0: - version "1.1.3" - resolved "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - dependencies: - globule "^1.0.0" - -get-caller-file@^1.0.1: - version "1.0.3" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== - -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= - -get-own-property-symbols@^0.9.2: - version "0.9.2" - resolved "https://registry.npmjs.org/get-own-property-symbols/-/get-own-property-symbols-0.9.2.tgz#64e3b56e7dc11ac3f8cb1eb6ba6fb39a53ad5954" - integrity sha1-ZOO1bn3BGsP4yx62um+zmlOtWVQ= - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= - -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - -get-stream@^4.0.0, get-stream@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - dependencies: - assert-plus "^1.0.0" - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= - -glob-base@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" - integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= - dependencies: - glob-parent "^2.0.0" - is-glob "^2.0.0" - -glob-parent@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" - integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= - dependencies: - is-glob "^2.0.0" - -glob-parent@^3.0.0, glob-parent@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= - dependencies: - is-glob "^3.1.0" - path-dirname "^1.0.0" - -glob-stream@^5.3.2: - version "5.3.5" - resolved "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" - integrity sha1-pVZlqajM3EGRWofHAeMtTgFvrSI= - dependencies: - extend "^3.0.0" - glob "^5.0.3" - glob-parent "^3.0.0" - micromatch "^2.3.7" - ordered-read-streams "^0.3.0" - through2 "^0.6.0" - to-absolute-glob "^0.1.1" - unique-stream "^2.0.2" - -glob-to-regexp@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" - integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= - -glob2base@0.0.12: - version "0.0.12" - resolved "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" - integrity sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY= - dependencies: - find-index "^0.1.1" - -glob@7.1.2: - version "7.1.2" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" - integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^5.0.3: - version "5.0.15" - resolved "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" - integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E= - dependencies: - inflight "^1.0.4" - inherits "2" - minimatch "2 || 3" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^6.0.1: - version "6.0.4" - resolved "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" - integrity sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI= - dependencies: - inflight "^1.0.4" - inherits "2" - minimatch "2 || 3" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1: - version "7.1.4" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -global-dirs@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= - dependencies: - ini "^1.3.4" - -global-modules@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" - -global-prefix@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - -globals@^11.1.0, globals@^11.7.0: - version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globby@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" - integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= - dependencies: - array-union "^1.0.1" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -globby@^7.1.1: - version "7.1.1" - resolved "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" - integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= - dependencies: - array-union "^1.0.1" - dir-glob "^2.0.0" - glob "^7.1.2" - ignore "^3.3.5" - pify "^3.0.0" - slash "^1.0.0" - -globby@^9.2.0: - version "9.2.0" - resolved "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" - integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== - dependencies: - "@types/glob" "^7.1.1" - array-union "^1.0.2" - dir-glob "^2.2.2" - fast-glob "^2.2.6" - glob "^7.1.3" - ignore "^4.0.3" - pify "^4.0.1" - slash "^2.0.0" - -globule@^1.0.0: - version "1.2.1" - resolved "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" - integrity sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ== - dependencies: - glob "~7.1.1" - lodash "~4.17.10" - minimatch "~3.0.2" - -good-listener@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" - integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= - dependencies: - delegate "^3.1.2" - -got@^6.7.1: - version "6.7.1" - resolved "https://registry.npmjs.org/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" - integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= - dependencies: - create-error-class "^3.0.0" - duplexer3 "^0.1.4" - get-stream "^3.0.0" - is-redirect "^1.0.0" - is-retry-allowed "^1.0.0" - is-stream "^1.0.0" - lowercase-keys "^1.0.0" - safe-buffer "^5.0.1" - timed-out "^4.0.0" - unzip-response "^2.0.1" - url-parse-lax "^1.0.0" - -got@^9.6.0: - version "9.6.0" - resolved "https://registry.npmjs.org/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== - dependencies: - "@sindresorhus/is" "^0.14.0" - "@szmarczak/http-timer" "^1.1.2" - cacheable-request "^6.0.0" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^4.1.0" - lowercase-keys "^1.0.1" - mimic-response "^1.0.1" - p-cancelable "^1.0.0" - to-readable-stream "^1.0.0" - url-parse-lax "^3.0.0" - -graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6: - version "4.1.15" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" - integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== - -growl@1.10.3: - version "1.10.3" - resolved "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" - integrity sha512-hKlsbA5Vu3xsh1Cg3J7jSmX/WaW6A5oBeqzM88oNbCRQFz+zUaXm6yxS4RVytp1scBoJzSYl4YAEOQIt6O8V1Q== - -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -gulp-sourcemaps@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" - integrity sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw= - dependencies: - convert-source-map "^1.1.1" - graceful-fs "^4.1.2" - strip-bom "^2.0.0" - through2 "^2.0.0" - vinyl "^1.0.0" - -gumshoejs@^3.5.0: - version "3.5.0" - resolved "https://registry.npmjs.org/gumshoejs/-/gumshoejs-3.5.0.tgz#407f468e760d3817994f8afc107defa5fd4a7d0a" - integrity sha1-QH9GjnYNOBeZT4r8EH3vpf1KfQo= - -handorgel@^0.4.5: - version "0.4.9" - resolved "https://registry.npmjs.org/handorgel/-/handorgel-0.4.9.tgz#3a78737e35ddd01fecabb26a8fef9a19161707a1" - integrity sha512-IoM4GKc/6tBe2l9ribiNtzDOuRmJjl4udgO8xXxB1dOjzot1CRciPMeI8g+/Im7D4YkExTi5nXrNw64NbmjCQA== - dependencies: - ev-emitter "^1.1.1" - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - -har-validator@~5.1.0: - version "5.1.3" - resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== - dependencies: - ajv "^6.5.5" - har-schema "^2.0.0" - -hard-source-webpack-plugin-patch@^0.13.3: - version "0.13.3" - resolved "https://registry.npmjs.org/hard-source-webpack-plugin-patch/-/hard-source-webpack-plugin-patch-0.13.3.tgz#3766df6d64ffd49dda7a48bbf272afe86acc0f04" - integrity sha512-0WTSv5JsSfZxjE3fHoRiGxf++PDoxP5O2nHIxZD/mZe9hmbrmdfplNAgwTVYrqTtV9qXc6Lq5farPPJAD+qHQQ== - dependencies: - chalk "^2.4.1" - find-cache-dir "^2.0.0" - graceful-fs "^4.1.11" - lodash "^4.15.0" - mkdirp "^0.5.1" - node-object-hash "^1.2.0" - parse-json "^4.0.0" - pkg-dir "^3.0.0" - rimraf "^2.6.2" - semver "^5.6.0" - tapable "^1.0.0-beta.5" - webpack-sources "^1.0.1" - write-json-file "^2.3.0" - -has-ansi@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz#84f265aae8c0e6a88a12d7022894b7568894c62e" - integrity sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4= - dependencies: - ansi-regex "^0.2.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-binary2@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" - integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== - dependencies: - isarray "2.0.1" - -has-cors@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" - integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= - -has-flag@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" - integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= - -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.0, has@^1.0.1, has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -he@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" - integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= - -he@1.2.x: - version "1.2.0" - resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -header-case@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d" - integrity sha1-lTWXMZfBRLCWE81l0xfvGZY70C0= - dependencies: - no-case "^2.2.0" - upper-case "^1.1.3" - -hex-color-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" - integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== - -hex-to-rgba@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/hex-to-rgba/-/hex-to-rgba-1.0.2.tgz#1273dc05a499ddc955b80220ae04dcf542decfec" - integrity sha512-fL+4NFccs86iOuDnFl1Mhyn471qTPAkpE7k39+JYGPMB3+S9LoUnauQI2nz6BUb3DpYQCx8RqENbaf8IFdKYOg== - -hmac-drbg@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hosted-git-info@^2.1.4: - version "2.7.1" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== - -hsl-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" - integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= - -hsla-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" - integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= - -html-comment-regex@^1.1.0: - version "1.1.2" - resolved "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== - -html-element@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/html-element/-/html-element-2.3.0.tgz#0e5c1d979223b0febfbcacdeb56c75d1e9297de9" - integrity sha512-axsAv89JAxk/zSSOn+jK5dJ1eAUVSkienyIcruAe/kD5skC/E/HxjFfCfNYv8+A9m7BXR9kfL4ZD1ZobUfUWzQ== - dependencies: - class-list "~0.1.1" - -html-entities@^1.2.0: - version "1.2.1" - resolved "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" - integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= - -html-minifier@^3.5.21: - version "3.5.21" - resolved "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" - integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== - dependencies: - camel-case "3.0.x" - clean-css "4.2.x" - commander "2.17.x" - he "1.2.x" - param-case "2.1.x" - relateurl "0.2.x" - uglify-js "3.4.x" - -htmlparser2@^3.9.1: - version "3.10.1" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== - dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" - -http-cache-semantics@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#495704773277eeef6e43f9ab2c2c7d259dda25c5" - integrity sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew== - -http-errors@1.7.2, http-errors@~1.7.2: - version "1.7.2" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" - integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.1" - statuses ">= 1.5.0 < 2" - toidentifier "1.0.0" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-proxy@1.15.2: - version "1.15.2" - resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" - integrity sha1-ZC/cr/5S00SNK9o7AHnpQJBk2jE= - dependencies: - eventemitter3 "1.x.x" - requires-port "1.x.x" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= - -iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: - version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -icss-replace-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" - integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= - -icss-utils@^4.1.0: - version "4.1.1" - resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" - integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== - dependencies: - postcss "^7.0.14" - -ieee754@^1.1.4: - version "1.1.13" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== - -iferr@^0.1.5: - version "0.1.5" - resolved "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" - integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= - -ignore-walk@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== - dependencies: - minimatch "^3.0.4" - -ignore@^3.3.5: - version "3.3.10" - resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== - -ignore@^4.0.3, ignore@^4.0.6: - version "4.0.6" - resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - -immutability-helper@^2.7.1: - version "2.9.1" - resolved "https://registry.npmjs.org/immutability-helper/-/immutability-helper-2.9.1.tgz#71c423ba387e67b6c6ceba0650572f2a2a6727df" - integrity sha512-r/RmRG8xO06s/k+PIaif2r5rGc3j4Yhc01jSBfwPCXDLYZwp/yxralI37Df1mwmuzcCsen/E/ITKcTEvc1PQmQ== - dependencies: - invariant "^2.2.0" - -immutable@^3: - version "3.8.2" - resolved "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" - integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM= - -import-cwd@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" - integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= - dependencies: - import-from "^2.1.0" - -import-fresh@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" - integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= - dependencies: - caller-path "^2.0.0" - resolve-from "^3.0.0" - -import-fresh@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" - integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-from@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" - integrity sha1-M1238qev/VOqpHHUuAId7ja387E= - dependencies: - resolve-from "^3.0.0" - -import-lazy@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" - integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= - -import-local@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" - integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== - dependencies: - pkg-dir "^3.0.0" - resolve-cwd "^2.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -in-publish@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" - integrity sha1-4g/146KvwmkDILbcVSaCqcf631E= - -incache@^7.2.1: - version "7.2.1" - resolved "https://registry.npmjs.org/incache/-/incache-7.2.1.tgz#c0419272c4182269dfc4e7ab39187f6636135838" - integrity sha512-7GM4c4+wDCOvhi7IVAV0ZM+Wouxdivh2uAwgPo362Qq+giOIcwyCnNAXRGVwDcLX5LJt2Ore9SoShhZDTdrygg== - dependencies: - clone "^2.1.1" - flak "^1.0.0" - object-sizeof "^1.2.0" - uuid "^3.1.0" - write "^1.0.3" - -indent-string@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= - dependencies: - repeating "^2.0.0" - -indexes-of@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" - integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= - -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= - -ini@^1.3.4, ini@~1.3.0: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - -inquirer@^6.2.2: - version "6.3.1" - resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz#7a413b5e7950811013a3db491c61d1f3b776e8e7" - integrity sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA== - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.11" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" - -interpret@^1.1.0: - version "1.2.0" - resolved "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== - -invariant@^2.2.0, invariant@^2.2.2: - version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - -invert-kv@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" - integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== - -ipaddr.js@1.9.0: - version "1.9.0" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" - integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== - -is-absolute-url@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" - integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= - dependencies: - binary-extensions "^1.0.0" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== - -is-ci@^1.0.10: - version "1.2.1" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" - integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== - dependencies: - ci-info "^1.5.0" - -is-color-stop@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" - integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= - dependencies: - css-color-names "^0.0.4" - hex-color-regex "^1.1.0" - hsl-regex "^1.0.0" - hsla-regex "^1.0.0" - rgb-regex "^1.0.1" - rgba-regex "^1.0.0" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-directory@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" - integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= - -is-dotfile@^1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" - integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= - -is-equal-shallow@^0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" - integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= - dependencies: - is-primitive "^2.0.0" - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= - -is-extglob@^2.1.0, is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-glob@^2.0.0, is-glob@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= - dependencies: - is-extglob "^1.0.0" - -is-glob@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= - dependencies: - is-extglob "^2.1.0" - -is-glob@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-installed-globally@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" - integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= - dependencies: - global-dirs "^0.1.0" - is-path-inside "^1.0.0" - -is-lower-case@^1.1.0: - version "1.1.3" - resolved "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393" - integrity sha1-fhR75HaNxGbbO/shzGCzHmrWk5M= - dependencies: - lower-case "^1.1.0" - -is-npm@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" - integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= - -is-number-like@^1.0.3: - version "1.0.8" - resolved "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz#2e129620b50891042e44e9bbbb30593e75cfbbe3" - integrity sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA== - dependencies: - lodash.isfinite "^3.3.2" - -is-number@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= - dependencies: - kind-of "^3.0.2" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-number@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" - integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== - -is-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= - -is-path-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" - integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= - -is-path-in-cwd@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" - integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== - dependencies: - is-path-inside "^1.0.0" - -is-path-inside@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" - integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= - dependencies: - path-is-inside "^1.0.1" - -is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - -is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-plain-object@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" - integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== - dependencies: - isobject "^4.0.0" - -is-posix-bracket@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" - integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= - -is-primitive@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" - integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= - -is-promise@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= - -is-redirect@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" - integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= - -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= - dependencies: - has "^1.0.1" - -is-relative-url@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-relative-url/-/is-relative-url-2.0.0.tgz#72902d7fe04b3d4792e7db15f9db84b7204c9cef" - integrity sha1-cpAtf+BLPUeS59sV+duEtyBMnO8= - dependencies: - is-absolute-url "^2.0.0" - -is-resolvable@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" - integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== - -is-retry-allowed@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" - integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= - -is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-svg@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" - integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== - dependencies: - html-comment-regex "^1.1.0" - -is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== - dependencies: - has-symbols "^1.0.0" - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -is-upper-case@^1.1.0: - version "1.1.2" - resolved "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f" - integrity sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8= - dependencies: - upper-case "^1.1.0" - -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - -is-valid-glob@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" - integrity sha1-1LVcafUYhvm2XHDWwmItN+KfSP4= - -is-visible@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/is-visible/-/is-visible-2.2.0.tgz#722b3acff3694a30074927e1156f58ae87db0e9c" - integrity sha512-xv9AexiLVUJXQ3hC6lYsAfZZxvggqrMIjIhpvSXdiqgfUsSF8JghojXzstv3sx0xONEhiPQuykOAKPigC1EXeA== - dependencies: - iselement "^1.1.3" - style-properties "^1.3.1" - -is-windows@^1.0.1, is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= - -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isarray@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" - integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= - -iselement@^1.1.3: - version "1.1.4" - resolved "https://registry.npmjs.org/iselement/-/iselement-1.1.4.tgz#7e55b52a8ebca50a7e2e80e5b8d2840f32353146" - integrity sha1-flW1Ko68pQp+LoDluNKEDzI1MUY= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isobject@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" - integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -js-base64@^2.1.8: - version "2.5.1" - resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121" - integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw== - -js-levenshtein@^1.1.3: - version "1.1.6" - resolved "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" - integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.12.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.5.2, js-yaml@^3.8.3, js-yaml@^3.9.0: - version "3.13.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= - -json-loader@^0.5.7: - version "0.5.7" - resolved "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" - integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== - -json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" - integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== - dependencies: - minimist "^1.2.0" - -jsondiffpatch@^0.2.5: - version "0.2.5" - resolved "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.2.5.tgz#50361d995cf8c86137e8d5589f20fa5220db3511" - integrity sha1-UDYdmVz4yGE36NVYnyD6UiDbNRE= - dependencies: - chalk "^0.5.1" - -jsonfile@^2.1.0: - version "2.4.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" - integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" - integrity sha1-pezG9l9T9mLEQVx2daAzHQmS7GY= - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= - optionalDependencies: - graceful-fs "^4.1.6" - -jsonschema@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.4.tgz#a46bac5d3506a254465bc548876e267c6d0d6464" - integrity sha512-lz1nOH69GbsVHeVgEdvyavc/33oymY1AZwtePMiMj4HZPMbP5OIKK3zT9INMWjwua/V4Z4yq7wSlBbSG+g4AEw== - -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" - -keyv@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== - dependencies: - json-buffer "3.0.0" - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0, kind-of@^5.0.2: - version "5.1.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== - -last-call-webpack-plugin@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" - integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== - dependencies: - lodash "^4.17.5" - webpack-sources "^1.1.0" - -latest-version@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" - integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= - dependencies: - package-json "^4.0.0" - -lazysizes@^4.1.4: - version "4.1.8" - resolved "https://registry.npmjs.org/lazysizes/-/lazysizes-4.1.8.tgz#f1cb1e803f7a8441122ec1be6f7333bc8977f632" - integrity sha512-qxBMQZKdR3cwydyyBOoGVBtN2T1nyrozhnEstV2H3M6UE/mivSh7U+n7N7DtBV2L07Uw442QRwtwf0E2IntJZg== - -lazystream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" - integrity sha1-9plf4PggOS9hOWvolGJAe7dxaOQ= - dependencies: - readable-stream "^2.0.5" - -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - -lcid@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" - integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== - dependencies: - invert-kv "^2.0.0" - -levn@^0.3.0, levn@~0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lightercollective@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/lightercollective/-/lightercollective-0.3.0.tgz#1f07638642ec645d70bdb69ab2777676f35a28f0" - integrity sha512-RFOLSUVvwdK3xA0P8o6G7QGXLIyy1L2qv5caEI7zXN5ciaEjbAriRF182kbsoJ1S1TgvpyGcN485fMky6qxOPw== - -limiter@^1.0.5: - version "1.1.4" - resolved "https://registry.npmjs.org/limiter/-/limiter-1.1.4.tgz#87c9c3972d389fdb0ba67a45aadbc5d2f8413bc1" - integrity sha512-XCpr5bElgDI65vVgstP8TWjv6/QKWm9GU5UG0Pr5sLQ3QLo8NVKsioe+Jed5/3vFOe3IQuqE7DKwTvKQkjTHvg== - -lit-html@1.0.0-rc.1: - version "1.0.0-rc.1" - resolved "https://registry.npmjs.org/lit-html/-/lit-html-1.0.0-rc.1.tgz#a83d45ed86fc7c5d4612f3092e83fd095baf1fc3" - integrity sha512-Qyu+lHpRtJS3Addw56rK68KgZ5cdxTfRDmYNwd8gRQBImdhkE0uyqIT5usLE9YDezFeYVqgAc2WujOOi8taF1A== - -lit-html@^0.12.0: - version "0.12.0" - resolved "https://registry.npmjs.org/lit-html/-/lit-html-0.12.0.tgz#d994420fda74744f9d4a79401b086de929643e6a" - integrity sha512-NyFgq8yTlGEjUFQOmNnK/kj+ZdDVJzTwsLunNSewGiOns7SjuJi6ymCCqzZZ81uW2VwEmliMbOlFZc9QmOJPLA== - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -loader-fs-cache@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz#54cedf6b727e1779fd8f01205f05f6e88706f086" - integrity sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw== - dependencies: - find-cache-dir "^0.1.1" - mkdirp "0.5.1" - -loader-runner@^2.3.0: - version "2.4.0" - resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" - integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== - -loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" - integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== - dependencies: - big.js "^5.2.2" - emojis-list "^2.0.0" - json5 "^1.0.1" - -localtunnel@1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.1.tgz#1d1737eab658add5a40266d8e43f389b646ee3b1" - integrity sha512-HWrhOslklDvxgOGFLxi6fQVnvpl6XdX4sPscfqMZkzi3gtt9V7LKBWYvNUcpHSVvjwCQ6xzXacVvICNbNcyPnQ== - dependencies: - axios "0.17.1" - debug "2.6.9" - openurl "1.1.1" - yargs "6.6.0" - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -lodash._basebind@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basebind/-/lodash._basebind-2.4.1.tgz#e940b9ebdd27c327e0a8dab1b55916c5341e9575" - integrity sha1-6UC5690nwyfgqNqxtVkWxTQelXU= - dependencies: - lodash._basecreate "~2.4.1" - lodash._setbinddata "~2.4.1" - lodash._slice "~2.4.1" - lodash.isobject "~2.4.1" - -lodash._basecreate@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-2.4.1.tgz#f8e6f5b578a9e34e541179b56b8eeebf4a287e08" - integrity sha1-+Ob1tXip405UEXm1a47uv0oofgg= - dependencies: - lodash._isnative "~2.4.1" - lodash.isobject "~2.4.1" - lodash.noop "~2.4.1" - -lodash._basecreatecallback@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreatecallback/-/lodash._basecreatecallback-2.4.1.tgz#7d0b267649cb29e7a139d0103b7c11fae84e4851" - integrity sha1-fQsmdknLKeehOdAQO3wR+uhOSFE= - dependencies: - lodash._setbinddata "~2.4.1" - lodash.bind "~2.4.1" - lodash.identity "~2.4.1" - lodash.support "~2.4.1" - -lodash._basecreatewrapper@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.4.1.tgz#4d31f2e7de7e134fbf2803762b8150b32519666f" - integrity sha1-TTHy595+E0+/KAN2K4FQsyUZZm8= - dependencies: - lodash._basecreate "~2.4.1" - lodash._setbinddata "~2.4.1" - lodash._slice "~2.4.1" - lodash.isobject "~2.4.1" - -lodash._createwrapper@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._createwrapper/-/lodash._createwrapper-2.4.1.tgz#51d6957973da4ed556e37290d8c1a18c53de1607" - integrity sha1-UdaVeXPaTtVW43KQ2MGhjFPeFgc= - dependencies: - lodash._basebind "~2.4.1" - lodash._basecreatewrapper "~2.4.1" - lodash._slice "~2.4.1" - lodash.isfunction "~2.4.1" - -lodash._isnative@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz#3ea6404b784a7be836c7b57580e1cdf79b14832c" - integrity sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw= - -lodash._objecttypes@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" - integrity sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE= - -lodash._setbinddata@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._setbinddata/-/lodash._setbinddata-2.4.1.tgz#f7c200cd1b92ef236b399eecf73c648d17aa94d2" - integrity sha1-98IAzRuS7yNrOZ7s9zxkjReqlNI= - dependencies: - lodash._isnative "~2.4.1" - lodash.noop "~2.4.1" - -lodash._shimkeys@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz#6e9cc9666ff081f0b5a6c978b83e242e6949d203" - integrity sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM= - dependencies: - lodash._objecttypes "~2.4.1" - -lodash._slice@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash._slice/-/lodash._slice-2.4.1.tgz#745cf41a53597b18f688898544405efa2b06d90f" - integrity sha1-dFz0GlNZexj2iImFREBe+isG2Q8= - -lodash.assign@^2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.assign/-/lodash.assign-2.4.1.tgz#84c39596dd71181a97b0652913a7c9675e49b1aa" - integrity sha1-hMOVlt1xGBqXsGUpE6fJZ15Jsao= - dependencies: - lodash._basecreatecallback "~2.4.1" - lodash._objecttypes "~2.4.1" - lodash.keys "~2.4.1" - -lodash.bind@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.4.1.tgz#5d19fa005c8c4d236faf4742c7b7a1fcabe29267" - integrity sha1-XRn6AFyMTSNvr0dCx7eh/Kvikmc= - dependencies: - lodash._createwrapper "~2.4.1" - lodash._slice "~2.4.1" - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= - -lodash.difference@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" - integrity sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw= - -lodash.get@^4.4.2: - version "4.4.2" - resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" - integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= - -lodash.identity@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.identity/-/lodash.identity-2.4.1.tgz#6694cffa65fef931f7c31ce86c74597cf560f4f1" - integrity sha1-ZpTP+mX++TH3wxzobHRZfPVg9PE= - -lodash.isequal@^4.0.0, lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= - -lodash.isfinite@^3.3.2: - version "3.3.2" - resolved "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" - integrity sha1-+4m2WpqAKBgz8LdHizpRBPiY67M= - -lodash.isfunction@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1" - integrity sha1-LP1XXHPkmKtX4xm3f6Aq3vE6lNE= - -lodash.isobject@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" - integrity sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU= - dependencies: - lodash._objecttypes "~2.4.1" - -lodash.keys@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz#48dea46df8ff7632b10d706b8acb26591e2b3727" - integrity sha1-SN6kbfj/djKxDXBrissmWR4rNyc= - dependencies: - lodash._isnative "~2.4.1" - lodash._shimkeys "~2.4.1" - lodash.isobject "~2.4.1" - -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= - -lodash.merge@^4.6.1: - version "4.6.1" - resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" - integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ== - -lodash.noop@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.noop/-/lodash.noop-2.4.1.tgz#4fb54f816652e5ae10e8f72f717a388c7326538a" - integrity sha1-T7VPgWZS5a4Q6PcvcXo4jHMmU4o= - -lodash.set@^4.3.2: - version "4.3.2" - resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" - integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= - -lodash.support@~2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/lodash.support/-/lodash.support-2.4.1.tgz#320e0b67031673c28d7a2bb5d9e0331a45240515" - integrity sha1-Mg4LZwMWc8KNeiu12eAzGkUkBRU= - dependencies: - lodash._isnative "~2.4.1" - -lodash.tail@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" - integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ= - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= - -lodash@4.x, "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.5, lodash@~4.17.10: - version "4.17.11" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" - integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== - -log-symbols@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" - integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== - dependencies: - chalk "^2.0.1" - -loose-envify@^1.0.0, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -loud-rejection@^1.0.0: - version "1.6.0" - resolved "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - dependencies: - currently-unhandled "^0.4.1" - signal-exit "^3.0.0" - -lower-case-first@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" - integrity sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E= - dependencies: - lower-case "^1.1.2" - -lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2: - version "1.1.4" - resolved "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" - integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= - -lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - -lru-cache@^4.0.1, lru-cache@^4.1.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -macos-release@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/macos-release/-/macos-release-2.2.0.tgz#ab58d55dd4714f0a05ad4b0e90f4370fef5cdea8" - integrity sha512-iV2IDxZaX8dIcM7fG6cI46uNmHUxHE4yN+Z8tKHAW1TBPMZDIKHf/3L+YnOuj/FK9il14UaVdHmiQ1tsi90ltA== - -make-dir@^1.0.0: - version "1.3.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" - integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== - dependencies: - pify "^3.0.0" - -make-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -mamacro@^0.0.3: - version "0.0.3" - resolved "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" - integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== - -map-age-cleaner@^0.1.1: - version "0.1.3" - resolved "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-obj@^1.0.0, map-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -marked@^0.3.19: - version "0.3.19" - resolved "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" - integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== - -marked@^0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/marked/-/marked-0.5.2.tgz#3efdb27b1fd0ecec4f5aba362bddcd18120e5ba9" - integrity sha512-fdZvBa7/vSQIZCi4uuwo2N3q+7jJURpMVCcbaX0S1Mg65WZ5ilXvC67MviJAsdjqqgD+CEq4RKo5AYGgINkVAA== - -math-random@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" - integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== - -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -mdn-data@~1.1.0: - version "1.1.4" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" - integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA== - -mdn-polyfills@^5.15.0: - version "5.16.3" - resolved "https://registry.npmjs.org/mdn-polyfills/-/mdn-polyfills-5.16.3.tgz#f75ba820e79be6916584998aa1798b0e7c8efc41" - integrity sha512-sEU3accCyLIeBbUgLKlnNjgNbhj1U+3HPyAgrvG0lMXsaiPELD+du/nExgzQwupgt/7LfqgWrQXr/GGNIXr3LQ== - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= - -mem@^4.0.0: - version "4.3.0" - resolved "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" - integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== - dependencies: - map-age-cleaner "^0.1.1" - mimic-fn "^2.0.0" - p-is-promise "^2.0.0" - -memoize-decorator@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/memoize-decorator/-/memoize-decorator-1.0.2.tgz#605a41715c4171db192a90098b00ab8d6e1102f5" - integrity sha1-YFpBcVxBcdsZKpAJiwCrjW4RAvU= - -memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -meow@^3.7.0: - version "3.7.0" - resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= - dependencies: - camelcase-keys "^2.0.0" - decamelize "^1.1.2" - loud-rejection "^1.0.0" - map-obj "^1.0.1" - minimist "^1.1.3" - normalize-package-data "^2.3.4" - object-assign "^4.0.1" - read-pkg-up "^1.0.1" - redent "^1.0.0" - trim-newlines "^1.0.0" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= - -merge-stream@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= - dependencies: - readable-stream "^2.0.1" - -merge2@^1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" - integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA== - -merge@^1.2.0: - version "1.2.1" - resolved "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" - integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= - -micromatch@^2.3.7: - version "2.3.11" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" - integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= - dependencies: - arr-diff "^2.0.0" - array-unique "^0.2.1" - braces "^1.8.2" - expand-brackets "^0.1.4" - extglob "^0.3.1" - filename-regex "^2.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.1" - kind-of "^3.0.2" - normalize-path "^2.0.1" - object.omit "^2.0.0" - parse-glob "^3.0.4" - regex-cache "^0.4.2" - -micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: - version "3.1.10" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime-db@1.40.0: - version "1.40.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== - -"mime-db@>= 1.38.0 < 2": - version "1.39.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.39.0.tgz#f95a20275742f7d2ad0429acfe40f4233543780e" - integrity sha512-DTsrw/iWVvwHH+9Otxccdyy0Tgiil6TWK/xhfARJZF/QFhwOgZgOIvA2/VIGpM8U7Q8z5nDmdDWC6tuVMJNibw== - -mime-db@~1.33.0: - version "1.33.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" - integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== - -mime-db@~1.38.0: - version "1.38.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad" - integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg== - -mime-types@2.1.18: - version "2.1.18" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" - integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== - dependencies: - mime-db "~1.33.0" - -mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.24" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== - dependencies: - mime-db "1.40.0" - -mime-types@~2.1.18: - version "2.1.22" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd" - integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog== - dependencies: - mime-db "~1.38.0" - -mime@1.4.1: - version "1.4.1" - resolved "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" - integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mime@^2.0.3, mime@^2.4.2: - version "2.4.3" - resolved "https://registry.npmjs.org/mime/-/mime-2.4.3.tgz#229687331e86f68924e6cb59e1cdd937f18275fe" - integrity sha512-QgrPRJfE+riq5TPZMcHZOtm8c6K/yYrMbKIoRfapfiGLxS8OTeIfRhUGW5LU7MlRa52KOAGCfUNruqLrIBvWZw== - -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - -mimic-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^1.0.0, mimic-response@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -mini-css-extract-plugin@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz#ac0059b02b9692515a637115b0cc9fed3a35c7b0" - integrity sha512-IuaLjruM0vMKhUUT51fQdQzBYTX49dLj8w68ALEAe2A4iYNpIC4eMac67mt3NzycvjOlf07/kYxJDc0RTl1Wqw== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - webpack-sources "^1.1.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= - -"minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= - -minimist@^1.1.3, minimist@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= - -minipass@^2.2.1, minipass@^2.3.4: - version "2.3.5" - resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" - integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - -minizlib@^1.1.1: - version "1.2.1" - resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" - integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== - dependencies: - minipass "^2.2.1" - -mississippi@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f" - integrity sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw== - dependencies: - concat-stream "^1.5.0" - duplexify "^3.4.2" - end-of-stream "^1.1.0" - flush-write-stream "^1.0.0" - from2 "^2.1.0" - parallel-transform "^1.1.0" - pump "^2.0.1" - pumpify "^1.3.3" - stream-each "^1.1.0" - through2 "^2.0.0" - -mississippi@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" - integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== - dependencies: - concat-stream "^1.5.0" - duplexify "^3.4.2" - end-of-stream "^1.1.0" - flush-write-stream "^1.0.0" - from2 "^2.1.0" - parallel-transform "^1.1.0" - pump "^3.0.0" - pumpify "^1.3.3" - stream-each "^1.1.0" - through2 "^2.0.0" - -mitt@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/mitt/-/mitt-1.1.3.tgz#528c506238a05dce11cd914a741ea2cc332da9b8" - integrity sha512-mUDCnVNsAi+eD6qA0HkRkwYczbLHJ49z17BGe2PYRhZL4wpZUFZGJHU7/5tmvohoma+Hdn0Vh/oJTiPEmgSruA== - -mixin-deep@^1.2.0: - version "1.3.1" - resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" - integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mixin-object@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" - integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= - dependencies: - for-in "^0.1.3" - is-extendable "^0.1.1" - -mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: - version "0.5.1" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - dependencies: - minimist "0.0.8" - -mocha@^4.0.1: - version "4.1.0" - resolved "https://registry.npmjs.org/mocha/-/mocha-4.1.0.tgz#7d86cfbcf35cb829e2754c32e17355ec05338794" - integrity sha512-0RVnjg1HJsXY2YFDoTNzcc1NKhYuXKRrBAG2gDygmJJA136Cs2QlRliZG1mA0ap7cuaT30mw16luAeln+4RiNA== - dependencies: - browser-stdout "1.3.0" - commander "2.11.0" - debug "3.1.0" - diff "3.3.1" - escape-string-regexp "1.0.5" - glob "7.1.2" - growl "1.10.3" - he "1.1.1" - mkdirp "0.5.1" - supports-color "4.4.0" - -moment@^2.22.1: - version "2.24.0" - resolved "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" - integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== - -mousetrap@^1.6.1: - version "1.6.3" - resolved "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.3.tgz#80fee49665fd478bccf072c9d46bdf1bfed3558a" - integrity sha512-bd+nzwhhs9ifsUrC2tWaSgm24/oo2c83zaRyZQF06hYA6sANfsXHtnZ19AbbbDXCDzeH5nZBSQ4NvCjgD62tJA== - -move-concurrently@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" - integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= - dependencies: - aproba "^1.1.1" - copy-concurrently "^1.0.0" - fs-write-stream-atomic "^1.0.8" - mkdirp "^0.5.1" - rimraf "^2.5.4" - run-queue "^1.0.3" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.1, ms@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== - -multipipe@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz#cc13efd833c9cda99f224f868461b8e1a3fd939d" - integrity sha1-zBPv2DPJzamfIk+GhGG44aP9k50= - dependencies: - duplexer2 "^0.1.2" - object-assign "^4.1.0" - -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= - -nan@^2.12.1, nan@^2.13.2: - version "2.14.0" - resolved "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -napi-build-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" - integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - -needle@^2.2.1: - version "2.4.0" - resolved "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" - integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= - -negotiator@0.6.2: - version "0.6.2" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== - -neo-async@^2.5.0: - version "2.6.1" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== - -next-tick@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -no-case@^2.2.0, no-case@^2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" - integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== - dependencies: - lower-case "^1.1.1" - -node-abi@^2.7.0: - version "2.8.0" - resolved "https://registry.npmjs.org/node-abi/-/node-abi-2.8.0.tgz#bd2e88dbe6a6871e6dd08553e0605779325737ec" - integrity sha512-1/aa2clS0pue0HjckL62CsbhWWU35HARvBDXcJtYKbYR7LnIutmpxmXbuDMV9kEviD2lP/wACOgWmmwljghHyQ== - dependencies: - semver "^5.4.1" - -node-cache@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/node-cache/-/node-cache-4.2.0.tgz#48ac796a874e762582692004a376d26dfa875811" - integrity sha512-obRu6/f7S024ysheAjoYFEEBqqDWv4LOMNJEuO8vMeEw2AT4z+NCzO4hlc2lhI4vATzbCQv6kke9FVdx0RbCOw== - dependencies: - clone "2.x" - lodash "4.x" - -node-fetch@^2.1.2, node-fetch@^2.3.0: - version "2.6.0" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== - -node-gyp@^3.8.0: - version "3.8.0" - resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" - integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== - dependencies: - fstream "^1.0.0" - glob "^7.0.3" - graceful-fs "^4.1.2" - mkdirp "^0.5.0" - nopt "2 || 3" - npmlog "0 || 1 || 2 || 3 || 4" - osenv "0" - request "^2.87.0" - rimraf "2" - semver "~5.3.0" - tar "^2.0.0" - which "1" - -node-libs-browser@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.0.tgz#c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77" - integrity sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA== - dependencies: - assert "^1.1.1" - browserify-zlib "^0.2.0" - buffer "^4.3.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "^3.11.0" - domain-browser "^1.1.1" - events "^3.0.0" - https-browserify "^1.0.0" - os-browserify "^0.3.0" - path-browserify "0.0.0" - process "^0.11.10" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.3.3" - stream-browserify "^2.0.1" - stream-http "^2.7.2" - string_decoder "^1.0.0" - timers-browserify "^2.0.4" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.11.0" - vm-browserify "0.0.4" - -node-notifier@^5.1.2, node-notifier@^5.3.0: - version "5.4.0" - resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" - integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== - dependencies: - growly "^1.3.0" - is-wsl "^1.1.0" - semver "^5.5.0" - shellwords "^0.1.1" - which "^1.3.0" - -node-object-hash@^1.2.0: - version "1.4.2" - resolved "https://registry.npmjs.org/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94" - integrity sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ== - -node-pre-gyp@^0.12.0: - version "0.12.0" - resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" - integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - -node-releases@^1.1.21: - version "1.1.22" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.22.tgz#d90cd5adc59ab9b0f377d4f532b09656399c88bf" - integrity sha512-O6XpteBuntW1j86mw6LlovBIwTe+sO2+7vi9avQffNeIW4upgnaCVm6xrBWH+KATz7mNNRNNeEpuWB7dT6Cr3w== - dependencies: - semver "^5.3.0" - -node-sass@^4.11.0, node-sass@^4.5.3, node-sass@^4.9.0: - version "4.12.0" - resolved "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017" - integrity sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ== - dependencies: - async-foreach "^0.1.3" - chalk "^1.1.1" - cross-spawn "^3.0.0" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - in-publish "^2.0.0" - lodash "^4.17.11" - meow "^3.7.0" - mkdirp "^0.5.1" - nan "^2.13.2" - node-gyp "^3.8.0" - npmlog "^4.0.0" - request "^2.88.0" - sass-graph "^2.2.4" - stdout-stream "^1.4.0" - "true-case-path" "^1.0.2" - -noop-logger@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" - integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= - -"nopt@2 || 3": - version "3.0.6" - resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" - integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= - dependencies: - abbrev "1" - -nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= - dependencies: - abbrev "1" - osenv "^0.1.4" - -normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: - version "2.5.0" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.0.1, normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - -normalize-scss@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/normalize-scss/-/normalize-scss-7.0.1.tgz#74485e82bb5d0526371136422a09fdb868ffc1a4" - integrity sha512-qj16bWnYs+9/ac29IgGjySg4R5qQTp1lXfm7ApFOZNVBYFY8RZ3f8+XQNDDLHeDtI3Ba7Jj4+LuPgz9v/fne2A== - -normalize-url@^1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" - integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= - dependencies: - object-assign "^4.0.1" - prepend-http "^1.0.0" - query-string "^4.1.0" - sort-keys "^1.0.0" - -normalize-url@^3.0.0, normalize-url@^3.1.0: - version "3.3.0" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" - integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== - -npm-bundled@^1.0.1: - version "1.0.6" - resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" - integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== - -npm-packlist@^1.1.6: - version "1.4.1" - resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" - integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -npm-sass@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/npm-sass/-/npm-sass-2.3.0.tgz#1e7c4c90e12f36ebbe2f4957b55b6d5f4bdd573c" - integrity sha512-/Msbyq/rsqMJslcxRrRNdxTR2VUTEXETNsYhPWw/lSb+QgpnDdWi4LOocfEpCleDPLzP7FnkM7w9Bc0mKP3xcg== - dependencies: - argh "^0.1.4" - bluebird "^3.5.1" - camelify "0.0.2" - findup "^0.1.5" - glob "^6.0.1" - node-sass "^4.9.0" - -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -nth-check@^1.0.2, nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - dependencies: - boolbase "~1.0.0" - -num2fraction@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - -nunjucks@^3.1.7: - version "3.2.0" - resolved "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.0.tgz#53e95f43c9555e822e8950008a201b1002d49933" - integrity sha512-YS/qEQ6N7qCnUdm6EoYRBfJUdWNT0PpKbbRnogV2XyXbBm2STIP1O6yrdZHgwMVK7fIYUx7i8+yatEixnXSB1w== - dependencies: - a-sync-waterfall "^1.0.0" - asap "^2.0.3" - yargs "^3.32.0" - optionalDependencies: - chokidar "^2.0.0" - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" - integrity sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I= - -object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-component@0.0.3: - version "0.0.3" - resolved "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" - integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-hash@^1.1.4: - version "1.3.1" - resolved "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" - integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== - -object-keys@^1.0.12: - version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-path@0.11.4: - version "0.11.4" - resolved "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" - integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk= - -object-path@^0.9.0: - version "0.9.2" - resolved "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" - integrity sha1-D9mnT8X60a45aLWGvaXGMr1sBaU= - -object-sizeof@^1.2.0: - version "1.4.0" - resolved "https://registry.npmjs.org/object-sizeof/-/object-sizeof-1.4.0.tgz#d976dce5bb10274c64eeb142557705a4657631c7" - integrity sha512-ehpLH3Jjs3tGVzhkPYC+z0Cczpx5FZnCaCmWS4GkxZnGgGB1jCWSju8WTRdCGmCRNoXidmBurDyzaDiZVlOrVw== - dependencies: - buffer "^5.2.1" - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= - dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" - -object.omit@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" - integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= - dependencies: - for-own "^0.1.4" - is-extendable "^0.1.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -object.values@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" - integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.12.0" - function-bind "^1.1.1" - has "^1.0.3" - -octokit-pagination-methods@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4" - integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ== - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= - dependencies: - mimic-fn "^1.0.0" - -openurl@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387" - integrity sha1-OHW0sO96UsFW8NtB1GCduw+Us4c= - -opn@5.3.0: - version "5.3.0" - resolved "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" - integrity sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g== - dependencies: - is-wsl "^1.1.0" - -optimize-css-assets-webpack-plugin@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#9eb500711d35165b45e7fd60ba2df40cb3eb9159" - integrity sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A== - dependencies: - cssnano "^4.1.0" - last-call-webpack-plugin "^3.0.0" - -optionator@^0.8.2: - version "0.8.2" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - -ora@^3.0.0: - version "3.4.0" - resolved "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" - integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== - dependencies: - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-spinners "^2.0.0" - log-symbols "^2.2.0" - strip-ansi "^5.2.0" - wcwidth "^1.0.1" - -ordered-read-streams@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" - integrity sha1-cTfmmzKYuzQiR6G77jiByA4v14s= - dependencies: - is-stream "^1.0.1" - readable-stream "^2.0.1" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= - -os-homedir@^1.0.0, os-homedir@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= - dependencies: - lcid "^1.0.0" - -os-locale@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" - integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== - dependencies: - execa "^1.0.0" - lcid "^2.0.0" - mem "^4.0.0" - -os-name@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" - integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== - dependencies: - macos-release "^2.2.0" - windows-release "^3.1.0" - -os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -osenv@0, osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -output-file-sync@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" - integrity sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ== - dependencies: - graceful-fs "^4.1.11" - is-plain-obj "^1.1.0" - mkdirp "^0.5.1" - -p-cancelable@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== - -p-defer@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-is-promise@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" - integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== - -p-limit@^1.0.0, p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" - integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== - dependencies: - p-try "^2.0.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= - dependencies: - p-limit "^1.1.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-map@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" - integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== - -p-map@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" - integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== - -p-memoize@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/p-memoize/-/p-memoize-2.1.0.tgz#9ac80c8cf9373c52dfece6aae1fd2e300602898a" - integrity sha512-c6+a2iV4JyX0r4+i2IBJYO0r6LZAT2fg/tcB6GQbv1uzZsfsmKT7Ej5DRT1G6Wi7XUJSV2ZiP9+YEtluvhCmkg== - dependencies: - mem "^4.0.0" - mimic-fn "^1.0.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -package-json@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" - integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= - dependencies: - got "^6.7.1" - registry-auth-token "^3.0.1" - registry-url "^3.0.3" - semver "^5.1.0" - -pako@~1.0.5: - version "1.0.10" - resolved "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" - integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== - -parallel-transform@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" - integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= - dependencies: - cyclist "~0.2.2" - inherits "^2.0.3" - readable-stream "^2.1.5" - -param-case@2.1.x, param-case@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" - integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= - dependencies: - no-case "^2.2.0" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-asn1@^5.0.0: - version "5.1.4" - resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" - integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== - dependencies: - asn1.js "^4.0.0" - browserify-aes "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - -parse-glob@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" - integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= - dependencies: - glob-base "^0.3.0" - is-dotfile "^1.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.0" - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - dependencies: - error-ex "^1.2.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-ms@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" - integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA== - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - -parse5@^3.0.1: - version "3.0.3" - resolved "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" - integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== - dependencies: - "@types/node" "*" - -parseqs@0.0.5: - version "0.0.5" - resolved "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" - integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= - dependencies: - better-assert "~1.0.0" - -parseuri@0.0.5: - version "0.0.5" - resolved "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" - integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= - dependencies: - better-assert "~1.0.0" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e" - integrity sha1-LVeNNFX2YNpl7KGO+VtODekSdh4= - dependencies: - camel-case "^3.0.0" - upper-case-first "^1.1.0" - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= - -path-case@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" - integrity sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU= - dependencies: - no-case "^2.2.0" - -path-dirname@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-is-inside@1.0.2, path-is-inside@^1.0.1, path-is-inside@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= - -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -pathval@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" - integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= - -pbkdf2@^3.0.3: - version "3.0.17" - resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" - integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= - -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= - -pkg-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" - integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= - dependencies: - find-up "^1.0.0" - -pkg-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" - integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= - dependencies: - find-up "^2.1.0" - -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - -portfinder@^1.0.20: - version "1.0.20" - resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz#bea68632e54b2e13ab7b0c4775e9b41bf270e44a" - integrity sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw== - dependencies: - async "^1.5.2" - debug "^2.2.0" - mkdirp "0.5.x" - -portscanner@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" - integrity sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y= - dependencies: - async "1.5.2" - is-number-like "^1.0.3" - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -postcss-calc@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" - integrity sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== - dependencies: - css-unit-converter "^1.1.1" - postcss "^7.0.5" - postcss-selector-parser "^5.0.0-rc.4" - postcss-value-parser "^3.3.1" - -postcss-colormin@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" - integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== - dependencies: - browserslist "^4.0.0" - color "^3.0.0" - has "^1.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-convert-values@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" - integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== - dependencies: - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-discard-comments@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" - integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== - dependencies: - postcss "^7.0.0" - -postcss-discard-duplicates@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" - integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== - dependencies: - postcss "^7.0.0" - -postcss-discard-empty@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" - integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== - dependencies: - postcss "^7.0.0" - -postcss-discard-overridden@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" - integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== - dependencies: - postcss "^7.0.0" - -postcss-load-config@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz#f1312ddbf5912cd747177083c5ef7a19d62ee484" - integrity sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ== - dependencies: - cosmiconfig "^4.0.0" - import-cwd "^2.0.0" - -postcss-loader@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" - integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== - dependencies: - loader-utils "^1.1.0" - postcss "^7.0.0" - postcss-load-config "^2.0.0" - schema-utils "^1.0.0" - -postcss-merge-longhand@^4.0.11: - version "4.0.11" - resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" - integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== - dependencies: - css-color-names "0.0.4" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - stylehacks "^4.0.0" - -postcss-merge-rules@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" - integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== - dependencies: - browserslist "^4.0.0" - caniuse-api "^3.0.0" - cssnano-util-same-parent "^4.0.0" - postcss "^7.0.0" - postcss-selector-parser "^3.0.0" - vendors "^1.0.0" - -postcss-minify-font-values@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" - integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== - dependencies: - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-minify-gradients@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" - integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== - dependencies: - cssnano-util-get-arguments "^4.0.0" - is-color-stop "^1.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-minify-params@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" - integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== - dependencies: - alphanum-sort "^1.0.0" - browserslist "^4.0.0" - cssnano-util-get-arguments "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - uniqs "^2.0.0" - -postcss-minify-selectors@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" - integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== - dependencies: - alphanum-sort "^1.0.0" - has "^1.0.0" - postcss "^7.0.0" - postcss-selector-parser "^3.0.0" - -postcss-modules-extract-imports@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" - integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== - dependencies: - postcss "^7.0.5" - -postcss-modules-local-by-default@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" - integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA== - dependencies: - postcss "^7.0.6" - postcss-selector-parser "^6.0.0" - postcss-value-parser "^3.3.1" - -postcss-modules-scope@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" - integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A== - dependencies: - postcss "^7.0.6" - postcss-selector-parser "^6.0.0" - -postcss-modules-values@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" - integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w== - dependencies: - icss-replace-symbols "^1.1.0" - postcss "^7.0.6" - -postcss-normalize-charset@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" - integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== - dependencies: - postcss "^7.0.0" - -postcss-normalize-display-values@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" - integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== - dependencies: - cssnano-util-get-match "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-positions@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" - integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== - dependencies: - cssnano-util-get-arguments "^4.0.0" - has "^1.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-repeat-style@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" - integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== - dependencies: - cssnano-util-get-arguments "^4.0.0" - cssnano-util-get-match "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-string@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" - integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== - dependencies: - has "^1.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-timing-functions@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" - integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== - dependencies: - cssnano-util-get-match "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-unicode@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" - integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== - dependencies: - browserslist "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-url@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" - integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== - dependencies: - is-absolute-url "^2.0.0" - normalize-url "^3.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-normalize-whitespace@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" - integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== - dependencies: - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-ordered-values@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" - integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== - dependencies: - cssnano-util-get-arguments "^4.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-reduce-initial@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" - integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== - dependencies: - browserslist "^4.0.0" - caniuse-api "^3.0.0" - has "^1.0.0" - postcss "^7.0.0" - -postcss-reduce-transforms@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" - integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== - dependencies: - cssnano-util-get-match "^4.0.0" - has "^1.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - -postcss-scss@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.0.0.tgz#248b0a28af77ea7b32b1011aba0f738bda27dea1" - integrity sha512-um9zdGKaDZirMm+kZFKKVsnKPF7zF7qBAtIfTSnZXD1jZ0JNZIxdB6TxQOjCnlSzLRInVl2v3YdBh/M881C4ug== - dependencies: - postcss "^7.0.0" - -postcss-selector-parser@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" - integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= - dependencies: - dot-prop "^4.1.1" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss-selector-parser@^5.0.0-rc.4: - version "5.0.0" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" - integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== - dependencies: - cssesc "^2.0.0" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss-selector-parser@^6.0.0: - version "6.0.2" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" - integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== - dependencies: - cssesc "^3.0.0" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss-svgo@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" - integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== - dependencies: - is-svg "^3.0.0" - postcss "^7.0.0" - postcss-value-parser "^3.0.0" - svgo "^1.0.0" - -postcss-unique-selectors@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" - integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== - dependencies: - alphanum-sort "^1.0.0" - postcss "^7.0.0" - uniqs "^2.0.0" - -postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: - version "3.3.1" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== - -postcss@7.0.14: - version "7.0.14" - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" - integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - -postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.16" - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.16.tgz#48f64f1b4b558cb8b52c88987724359acb010da2" - integrity sha512-MOo8zNSlIqh22Uaa3drkdIAgUGEL+AD1ESiSdmElLUmE2uVDo1QloiT/IfW9qRw8Gw+Y/w69UVMGwbufMSftxA== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - -preact-compat@^3.18.4: - version "3.18.5" - resolved "https://registry.npmjs.org/preact-compat/-/preact-compat-3.18.5.tgz#45b801de75e3016bebe8cd446f51f60d2b948bb9" - integrity sha512-F174NW6PI5GU+T28B0ZHblhxMsFaPVaSBiaE++xrxdDVunsO0mARYfOSZizTdb/PFLqXDzcQ1IWdnEt/vIiUvw== - dependencies: - immutability-helper "^2.7.1" - preact-render-to-string "^3.8.2" - preact-transition-group "^1.1.1" - prop-types "^15.6.2" - standalone-react-addons-pure-render-mixin "^0.1.1" - -preact-html@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/preact-html/-/preact-html-2.0.3.tgz#f54874b888084ed2086bbeec89c31f7c3473216d" - integrity sha512-Kkcle3m7SApPHUqE13vF6we6ViOM1feIIetUdVwP+GA7NMN7caRgLjs4Sx9GzSXkylWNAzCRn8B7IQDX9M3YXg== - dependencies: - preact "^8.2.7" - xmldom "0.1.22" - -preact-render-to-string@^3.8.2: - version "3.8.2" - resolved "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-3.8.2.tgz#bd72964d705a57da3a9e72098acaa073dd3ceff9" - integrity sha512-przuZPajiurStGgxMoJP0EJeC4xj5CgHv+M7GfF3YxAdhGgEWAkhOSE0xympAFN20uMayntBZpttIZqqLl77fw== - dependencies: - pretty-format "^3.5.1" - -preact-transition-group@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/preact-transition-group/-/preact-transition-group-1.1.1.tgz#f0a49327ea515ece34ea2be864c4a7d29e5d6e10" - integrity sha1-8KSTJ+pRXs406ivoZMSn0p5dbhA= - -preact@8.4.2, preact@^8.2.7, preact@^8.4.2: - version "8.4.2" - resolved "https://registry.npmjs.org/preact/-/preact-8.4.2.tgz#1263b974a17d1ea80b66590e41ef786ced5d6a23" - integrity sha512-TsINETWiisfB6RTk0wh3/mvxbGRvx+ljeBccZ4Z6MPFKgu/KFGyf2Bmw3Z/jlXhL5JlNKY6QAbA9PVyzIy9//A== - -prebuild-install@^5.2.2: - version "5.3.0" - resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" - integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== - dependencies: - detect-libc "^1.0.3" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.0" - mkdirp "^0.5.1" - napi-build-utils "^1.0.1" - node-abi "^2.7.0" - noop-logger "^0.1.1" - npmlog "^4.0.1" - os-homedir "^1.0.1" - pump "^2.0.1" - rc "^1.2.7" - simple-get "^2.7.0" - tar-fs "^1.13.0" - tunnel-agent "^0.6.0" - which-pm-runs "^1.0.0" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -prepend-http@^1.0.0, prepend-http@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= - -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= - -preserve@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" - integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= - -prettier@^1.7.4: - version "1.17.1" - resolved "https://registry.npmjs.org/prettier/-/prettier-1.17.1.tgz#ed64b4e93e370cb8a25b9ef7fef3e4fd1c0995db" - integrity sha512-TzGRNvuUSmPgwivDqkZ9tM/qTGW9hqDKWOE9YHiyQdixlKbv7kvEqsmDPrcHJTKwthU774TQwZXVtaQ/mMsvjg== - -pretty-format@^3.5.1: - version "3.8.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" - integrity sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U= - -pretty-ms@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/pretty-ms/-/pretty-ms-4.0.0.tgz#31baf41b94fd02227098aaa03bd62608eb0d6e92" - integrity sha512-qG66ahoLCwpLXD09ZPHSCbUWYTqdosB7SMP4OffgTgL2PBKXMuUsrk5Bwg8q4qPkjTXsKBMr+YK3Ltd/6F9s/Q== - dependencies: - parse-ms "^2.0.0" - -prime@0.0.5-alpha: - version "0.0.5-alpha" - resolved "https://registry.npmjs.org/prime/-/prime-0.0.5-alpha.tgz#e4d49a657bed2eb30e513adc6e5dfb83622e90c1" - integrity sha1-5NSaZXvtLrMOUTrcbl37g2IukME= - -prismjs@^1.15.0: - version "1.16.0" - resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.16.0.tgz#406eb2c8aacb0f5f0f1167930cb83835d10a4308" - integrity sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA== - optionalDependencies: - clipboard "^2.0.0" - -private@^0.1.6: - version "0.1.8" - resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - -process-nextick-args@~2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" - integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= - -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= - -prop-types@^15.6.2: - version "15.7.2" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" - integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.8.1" - -proxy-addr@~2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" - integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== - dependencies: - forwarded "~0.1.2" - ipaddr.js "1.9.0" - -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -psl@^1.1.24: - version "1.1.32" - resolved "https://registry.npmjs.org/psl/-/psl-1.1.32.tgz#3f132717cf2f9c169724b2b6caf373cf694198db" - integrity sha512-MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g== - -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - -pubsub-js@^1.6.0: - version "1.7.0" - resolved "https://registry.npmjs.org/pubsub-js/-/pubsub-js-1.7.0.tgz#eca97f9a4217bef62b2d3aaa1552005260cc2e49" - integrity sha512-Pb68P9qFZxnvDipHMuj9oT1FoIgBcXJ9C9eWdHCLZAnulaUoJ3+Y87RhGMYilWpun6DMWVmvK70T4RP4drZMSA== - -pump@^1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" - integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pump@^2.0.0, pump@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pumpify@^1.3.3: - version "1.5.1" - resolved "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== - dependencies: - duplexify "^3.6.0" - inherits "^2.0.3" - pump "^2.0.0" - -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - -punycode@^1.2.4, punycode@^1.3.2, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= - -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -pwa-helpers@^0.9.0: - version "0.9.1" - resolved "https://registry.npmjs.org/pwa-helpers/-/pwa-helpers-0.9.1.tgz#9ea22fa1996ab97df73b276cae962621c3fd2532" - integrity sha512-4sP/C9sSxQ3w80AATmvCEI3R+MHzCwr2RSZEbLyMkeJgV3cRk7ySZRUrQnBDSA7A0/z6dkYtjuXlkhN1ZFw3iA== - -q@1.*, q@^1.1.2: - version "1.5.1" - resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= - -qs@6.2.3: - version "6.2.3" - resolved "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" - integrity sha1-HPyyXBCpsrSDBT/zn138kjOQjP4= - -qs@6.7.0: - version "6.7.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" - integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== - -qs@~6.5.2: - version "6.5.2" - resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== - -query-string@^4.1.0: - version "4.3.4" - resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" - integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= - dependencies: - object-assign "^4.1.0" - strict-uri-encode "^1.0.0" - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - -querystring@0.2.0, querystring@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= - -raf@^3.4.1: - version "3.4.1" - resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" - integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== - dependencies: - performance-now "^2.1.0" - -randomatic@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" - integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== - dependencies: - is-number "^4.0.0" - kind-of "^6.0.0" - math-random "^1.0.1" - -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -range-parser@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= - -range-parser@^1.2.1, range-parser@~1.2.0, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.4.0, raw-body@^2.3.2: - version "2.4.0" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" - integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== - dependencies: - bytes "3.1.0" - http-errors "1.7.2" - iconv-lite "0.4.24" - unpipe "1.0.0" - -rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-is@^16.8.1: - version "16.8.6" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.6" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -"readable-stream@>=1.0.33-1 <1.1.0-0": - version "1.0.34" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" - integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -"readable-stream@>=1.1.13-1 <1.2.0-0": - version "1.1.14" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" - integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@^3.1.1: - version "3.4.0" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" - integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdir-enhanced@^1.4.0: - version "1.5.2" - resolved "https://registry.npmjs.org/readdir-enhanced/-/readdir-enhanced-1.5.2.tgz#61463048690ac6a455b75b62fa78a88f8dc85e53" - integrity sha1-YUYwSGkKxqRVt1ti+nioj43IXlM= - dependencies: - call-me-maybe "^1.0.1" - es6-promise "^4.1.0" - glob-to-regexp "^0.3.0" - -readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -really-relaxed-json@^0.2.24: - version "0.2.24" - resolved "https://registry.npmjs.org/really-relaxed-json/-/really-relaxed-json-0.2.24.tgz#03122087b1807d450b20366a7b3ae43c55077607" - integrity sha512-YaY9fR3c+wKOJFSv5dXsPQGtp7zvuOKlmdzUvQvNI/+Hk1/S0eiH+/Pwj9eMRpxlC59lt/szUAG3BLoJaz8JnQ== - -redent@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= - dependencies: - indent-string "^2.1.0" - strip-indent "^1.0.1" - -redux-thunk@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622" - integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw== - -redux@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/redux/-/redux-4.0.1.tgz#436cae6cc40fbe4727689d7c8fae44808f1bfef5" - integrity sha512-R7bAtSkk7nY6O/OYMVR9RiBI+XghjF9rlbl5806HJbQph0LJVHZrU5oaO4q70eUKiqMRqm4y07KLTlMZ2BlVmg== - dependencies: - loose-envify "^1.4.0" - symbol-observable "^1.2.0" - -regenerate-unicode-properties@^8.0.2: - version "8.1.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" - integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== - dependencies: - regenerate "^1.4.0" - -regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regenerator-runtime@^0.13.2: - version "0.13.2" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447" - integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA== - -regenerator-transform@^0.14.0: - version "0.14.0" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" - integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w== - dependencies: - private "^0.1.6" - -regex-cache@^0.4.2: - version "0.4.4" - resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" - integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== - dependencies: - is-equal-shallow "^0.1.3" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -regex-parser@2.2.10: - version "2.2.10" - resolved "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" - integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== - -regexp-tree@^0.1.6: - version "0.1.10" - resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" - integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ== - -regexpp@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" - integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== - -regexpu-core@^4.5.4: - version "4.5.4" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" - integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.0.2" - regjsgen "^0.5.0" - regjsparser "^0.6.0" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.1.0" - -registry-auth-token@3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" - integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== - dependencies: - rc "^1.1.6" - safe-buffer "^5.0.1" - -registry-auth-token@^3.0.1: - version "3.4.0" - resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" - integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== - dependencies: - rc "^1.1.6" - safe-buffer "^5.0.1" - -registry-url@3.1.0, registry-url@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" - integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= - dependencies: - rc "^1.0.1" - -regjsgen@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" - integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== - -regjsparser@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" - integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== - dependencies: - jsesc "~0.5.0" - -relateurl@0.2.x: - version "0.2.7" - resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.5.2, repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - dependencies: - is-finite "^1.0.0" - -replace-ext@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" - integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= - -request@^2.87.0, request@^2.88.0: - version "2.88.0" - resolved "https://registry.npmjs.org/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.0" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.4.3" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-from-string@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= - -requires-port@1.x.x: - version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - -resolve-cwd@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= - dependencies: - resolve-from "^3.0.0" - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-url-loader@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.0.tgz#54d8181d33cd1b66a59544d05cadf8e4aa7d37cc" - integrity sha512-2QcrA+2QgVqsMJ1Hn5NnJXIGCX1clQ1F6QJTqOeiaDw9ACo1G2k+8/shq3mtqne03HOFyskAClqfxKyFBriXZg== - dependencies: - adjust-sourcemap-loader "2.0.0" - camelcase "5.0.0" - compose-function "3.0.3" - convert-source-map "1.6.0" - es6-iterator "2.0.3" - loader-utils "1.2.3" - postcss "7.0.14" - rework "1.0.1" - rework-visit "1.0.0" - source-map "0.6.1" - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1, resolve@^1.9.0: - version "1.11.0" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232" - integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw== - dependencies: - path-parse "^1.0.6" - -resp-modifier@6.0.2: - version "6.0.2" - resolved "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" - integrity sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08= - dependencies: - debug "^2.2.0" - minimatch "^3.0.2" - -responselike@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= - dependencies: - lowercase-keys "^1.0.0" - -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -rework-visit@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" - integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= - -rework@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" - integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= - dependencies: - convert-source-map "^0.3.3" - css "^2.0.0" - -rgb-regex@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" - integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= - -rgb2hex@^0.1.9: - version "0.1.9" - resolved "https://registry.npmjs.org/rgb2hex/-/rgb2hex-0.1.9.tgz#5d3e0e14b0177b568e6f0d5b43e34fbfdb670346" - integrity sha512-32iuQzhOjyT+cv9aAFRBJ19JgHwzQwbjUhH3Fj2sWW2EEGAW8fpFrDFP5ndoKDxJaLO06x1hE3kyuIFrUQtybQ== - -rgba-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" - integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= - -rimraf@2, rimraf@2.*, rimraf@2.6.3, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: - version "2.6.3" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - -run-async@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" - integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= - dependencies: - is-promise "^2.1.0" - -run-queue@^1.0.0, run-queue@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" - integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= - dependencies: - aproba "^1.1.1" - -rx@4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" - integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I= - -rxjs@^5.5.6: - version "5.5.12" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" - integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== - dependencies: - symbol-observable "1.0.1" - -rxjs@^6.4.0: - version "6.5.2" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" - integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== - dependencies: - tslib "^1.9.0" - -safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -safe-wipe@0.2.4: - version "0.2.4" - resolved "https://registry.npmjs.org/safe-wipe/-/safe-wipe-0.2.4.tgz#53b935d7775b739a924b516c95bb2417fa9a451e" - integrity sha1-U7k113dbc5qSS1FslbskF/qaRR4= - dependencies: - extend "2.*" - q "1.*" - rimraf "2.*" - -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sass-convert@^0.5.0: - version "0.5.2" - resolved "https://registry.npmjs.org/sass-convert/-/sass-convert-0.5.2.tgz#b1ed42b0e8d6fe98ec7ed6e78a38e26564860f06" - integrity sha1-se1CsOjW/pjsftbnijjiZWSGDwY= - dependencies: - concat-stream "^1.4.7" - dargs "^4.0.0" - ends-with "^0.2.0" - es6-denodeify "^0.1.0" - es6-promise "^3.0.2" - memoize-decorator "^1.0.2" - object-assign "^3.0.0" - semver "^5.0.1" - semver-regex "^1.0.0" - through2 "^2.0.0" - which "^1.0.5" - -sass-graph@^2.2.4: - version "2.2.4" - resolved "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" - integrity sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k= - dependencies: - glob "^7.0.0" - lodash "^4.0.0" - scss-tokenizer "^0.2.3" - yargs "^7.0.0" - -sass-loader@^7.1.0: - version "7.1.0" - resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d" - integrity sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w== - dependencies: - clone-deep "^2.0.1" - loader-utils "^1.0.1" - lodash.tail "^4.1.1" - neo-async "^2.5.0" - pify "^3.0.0" - semver "^5.5.0" - -"sass-mq@github:bolt-design-system/sass-mq#master": - version "5.0.0" - resolved "https://codeload.github.com/bolt-design-system/sass-mq/tar.gz/1e67bcec6e886455dca16d1723f830bd9d1b3349" - -sassdoc-extras@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/sassdoc-extras/-/sassdoc-extras-2.5.0.tgz#ebea981584f8264ba787d9ffe7719a690bb090f3" - integrity sha512-xUE3b6aQvTtAD1amW7qLU2xYgH8AgnvTvW8ljCOW07ag5pcY3KpyvwyvB5+cV5eTb5kMGrqw/JD6a5lc0+0+ug== - dependencies: - marked "^0.3.19" - -sassdoc-theme-default@^2.6.3, sassdoc-theme-default@^2.8.1: - version "2.8.2" - resolved "https://registry.npmjs.org/sassdoc-theme-default/-/sassdoc-theme-default-2.8.2.tgz#470d5cfbc1e867b5c84e7791d1a9c5af07bc9435" - integrity sha512-u+LsyJEBUUvMnYaDuUq/HQT2hBcA/o6ENpni2Fvcfn7h1Nyj7NlKExUm2lJQwUTqM3Xe3E5XxzKjmURzzLmpRw== - dependencies: - babel-runtime "^6.22.0" - chroma-js "^1.2.2" - es6-denodeify "^0.1.0" - es6-promise "^4.2.6" - extend "^3.0.2" - fs-extra "^2.0.0" - html-minifier "^3.5.21" - nunjucks "^3.1.7" - sassdoc-extras "^2.5.0" - -sassdoc@^2.5.1: - version "2.7.0" - resolved "https://registry.npmjs.org/sassdoc/-/sassdoc-2.7.0.tgz#41504feb9ae9b0ffaa45520ed247093c376ef0fc" - integrity sha512-mj+kJJdZwgg2Jw41rR9owLZbrphEoSH+p2V3xV9YWZOy15cL7O25OcWFPZ2Cqcc0ETP+VybN9ZWe+GXSFq00Xw== - dependencies: - ansi-styles "^3.2.1" - babel-runtime "^6.26.0" - chalk "^2.4.1" - concat-stream "^1.6.2" - docopt "^0.6.1" - glob "^7.1.3" - glob2base "0.0.12" - js-yaml "^3.12.0" - lodash.difference "^4.5.0" - lodash.uniq "^4.5.0" - minimatch "^3.0.4" - mkdirp "^0.5.0" - multipipe "1.0.2" - rimraf "^2.6.2" - safe-wipe "0.2.4" - sass-convert "^0.5.0" - sassdoc-theme-default "^2.8.1" - scss-comment-parser "^0.8.4" - strip-indent "^2.0.0" - through2 "1.1.1" - update-notifier "^2.5.0" - vinyl-fs "^2.4.4" - vinyl-source-stream "^1.0.0" - vinyl-string "^1.0.2" - -"sassy-maps@github:at-import/Sassy-Maps#0.x.x": - version "0.3.2" - resolved "https://codeload.github.com/at-import/Sassy-Maps/tar.gz/36008c57759562654caf938a93c874a9dbdd9d5e" - -sax@^1.2.4, sax@~1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -schema-utils@^0.4.5: - version "0.4.7" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" - integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== - dependencies: - ajv "^6.1.0" - ajv-keywords "^3.1.0" - -schema-utils@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" - integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== - dependencies: - ajv "^6.1.0" - ajv-errors "^1.0.0" - ajv-keywords "^3.1.0" - -scss-comment-parser@^0.8.4: - version "0.8.4" - resolved "https://registry.npmjs.org/scss-comment-parser/-/scss-comment-parser-0.8.4.tgz#8e82c3fcf7fdbbb7f172f8955e2aa88b685f86d8" - integrity sha512-ERw4BODvM22n8Ke8hJxuH3fKXLm0Q4chfUNHwDSOAExCths2ZXq8PT32vms4R9Om6dffRSXzzGZS1p38UU4EAg== - dependencies: - cdocparser "^0.13.0" - -scss-tokenizer@^0.2.3: - version "0.2.3" - resolved "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" - integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= - dependencies: - js-base64 "^2.1.8" - source-map "^0.4.2" - -select@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" - integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= - -semver-diff@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" - integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= - dependencies: - semver "^5.0.3" - -semver-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" - integrity sha1-kqSWkGX5xwxpR1PVUkj8aPj2Usk= - -"semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: - version "5.7.0" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== - -semver@^6.1.0: - version "6.1.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" - integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== - -semver@~5.3.0: - version "5.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" - integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= - -send@0.16.2: - version "0.16.2" - resolved "https://registry.npmjs.org/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" - integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw== - dependencies: - debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "~1.6.2" - mime "1.4.1" - ms "2.0.0" - on-finished "~2.3.0" - range-parser "~1.2.0" - statuses "~1.4.0" - -send@0.17.1: - version "0.17.1" - resolved "https://registry.npmjs.org/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" - integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== - dependencies: - debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "~1.7.2" - mime "1.6.0" - ms "2.1.1" - on-finished "~2.3.0" - range-parser "~1.2.1" - statuses "~1.5.0" - -sentence-case@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4" - integrity sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ= - dependencies: - no-case "^2.2.0" - upper-case-first "^1.1.2" - -serialize-javascript@^1.4.0, serialize-javascript@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" - integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== - -serve-handler@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.0.0.tgz#c6eaf6f89881adede09cd737b54e8b2eff4fd585" - integrity sha512-2/e0+N1abV1HAN+YN8uCOPi1B0bIYaR6kRcSfzezRwszak5Yzr6QhT34XJk2Bw89rhXenqwLNJb4NnF2/krnGQ== - dependencies: - bytes "3.0.0" - content-disposition "0.5.2" - fast-url-parser "1.1.3" - mime-types "2.1.18" - minimatch "3.0.4" - path-is-inside "1.0.2" - path-to-regexp "2.2.1" - range-parser "1.2.0" - -serve-index@1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.13.2: - version "1.13.2" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" - integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.2" - send "0.16.2" - -serve-static@1.14.1: - version "1.14.1" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" - integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.17.1" - -serve@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/serve/-/serve-11.0.0.tgz#577f4e0f4b57058d12e3be19373f1a3d6d8826dc" - integrity sha512-Gnyyp3JAtRUo0dRH1/YWPKbnaXHfzQBiVh9+qSUi6tyVcVA8twUP2c+GnOwsoe9Ss7dfOHJUTSA4fdWP//Y4gQ== - dependencies: - "@zeit/schemas" "2.6.0" - ajv "6.5.3" - arg "2.0.0" - boxen "1.3.0" - chalk "2.4.1" - clipboardy "1.2.3" - compression "1.7.3" - serve-handler "6.0.0" - update-check "1.5.2" - -server-destroy@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" - integrity sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0= - -set-blocking@^2.0.0, set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^0.4.3: - version "0.4.3" - resolved "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" - integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.1" - to-object-path "^0.3.0" - -set-value@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" - integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -setimmediate@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" - integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shallow-clone@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" - integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA== - dependencies: - is-extendable "^0.1.1" - kind-of "^5.0.0" - mixin-object "^2.0.1" - -sharp@^0.21.3: - version "0.21.3" - resolved "https://registry.npmjs.org/sharp/-/sharp-0.21.3.tgz#381937de66c123687f2ac7186f85921c6bb19cdd" - integrity sha512-5qZk8r+YgfyztLEKkNez20Wynq/Uh1oNyP5T/3gTYwt2lBYGs9iDs5m0yVsZEPm8eVBbAJhS08J1wp/g+Ai1Qw== - dependencies: - bindings "^1.3.1" - color "^3.1.0" - detect-libc "^1.0.3" - fs-copy-file-sync "^1.1.1" - nan "^2.12.1" - npmlog "^4.1.2" - prebuild-install "^5.2.2" - semver "^5.6.0" - simple-get "^3.0.3" - tar "^4.4.8" - tunnel-agent "^0.6.0" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - -signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= - -simple-concat@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" - integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= - -simple-get@^2.7.0: - version "2.8.1" - resolved "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" - integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== - dependencies: - decompress-response "^3.3.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-get@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/simple-get/-/simple-get-3.0.3.tgz#924528ac3f9d7718ce5e9ec1b1a69c0be4d62efa" - integrity sha512-Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw== - dependencies: - decompress-response "^3.3.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= - dependencies: - is-arrayish "^0.3.1" - -skatejs@^5.2.4: - version "5.2.4" - resolved "https://registry.npmjs.org/skatejs/-/skatejs-5.2.4.tgz#945f1451ffb2ed801d19e9baa03f0a259eb84e9e" - integrity sha512-Ygd4bB6VTiSFeVpry9R/EWej+/PGrYhO1eMMwsxDaBLMkzXfZRm0CHvggb7RAMEr0VCMc5cBt58I6IU0q6GLvw== - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= - -slash@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" - integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== - -sleep-promise@^8.0.1: - version "8.0.1" - resolved "https://registry.npmjs.org/sleep-promise/-/sleep-promise-8.0.1.tgz#8d795a27ea23953df6b52b91081e5e22665993c5" - integrity sha1-jXlaJ+ojlT32tSuRCB5eImZZk8U= - -slice-ansi@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== - dependencies: - ansi-styles "^3.2.0" - astral-regex "^1.0.0" - is-fullwidth-code-point "^2.0.0" - -"smooth-scroll@github:bolt-design-system/smooth-scroll#master": - version "14.2.0" - resolved "https://codeload.github.com/bolt-design-system/smooth-scroll/tar.gz/38e3d344ac546473a09717901bb0ab9ca0588445" - -snake-case@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" - integrity sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8= - dependencies: - no-case "^2.2.0" - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -socket.io-adapter@~1.1.0: - version "1.1.1" - resolved "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" - integrity sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs= - -socket.io-client@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" - integrity sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ== - dependencies: - backo2 "1.0.2" - base64-arraybuffer "0.1.5" - component-bind "1.0.0" - component-emitter "1.2.1" - debug "~3.1.0" - engine.io-client "~3.2.0" - has-binary2 "~1.0.2" - has-cors "1.1.0" - indexof "0.0.1" - object-component "0.0.3" - parseqs "0.0.5" - parseuri "0.0.5" - socket.io-parser "~3.2.0" - to-array "0.1.4" - -socket.io-client@^2.0.4: - version "2.2.0" - resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.2.0.tgz#84e73ee3c43d5020ccc1a258faeeb9aec2723af7" - integrity sha512-56ZrkTDbdTLmBIyfFYesgOxsjcLnwAKoN4CiPyTVkMQj3zTUh0QAx3GbvIvLpFEOvQWu92yyWICxB0u7wkVbYA== - dependencies: - backo2 "1.0.2" - base64-arraybuffer "0.1.5" - component-bind "1.0.0" - component-emitter "1.2.1" - debug "~3.1.0" - engine.io-client "~3.3.1" - has-binary2 "~1.0.2" - has-cors "1.1.0" - indexof "0.0.1" - object-component "0.0.3" - parseqs "0.0.5" - parseuri "0.0.5" - socket.io-parser "~3.3.0" - to-array "0.1.4" - -socket.io-parser@~3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" - integrity sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA== - dependencies: - component-emitter "1.2.1" - debug "~3.1.0" - isarray "2.0.1" - -socket.io-parser@~3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" - integrity sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng== - dependencies: - component-emitter "1.2.1" - debug "~3.1.0" - isarray "2.0.1" - -socket.io@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" - integrity sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA== - dependencies: - debug "~3.1.0" - engine.io "~3.2.0" - has-binary2 "~1.0.2" - socket.io-adapter "~1.1.0" - socket.io-client "2.1.1" - socket.io-parser "~3.2.0" - -sort-keys@^1.0.0: - version "1.1.2" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= - dependencies: - is-plain-obj "^1.0.0" - -sort-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= - dependencies: - is-plain-obj "^1.0.0" - -source-list-map@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== - -source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== - dependencies: - atob "^2.1.1" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@~0.5.10: - version "0.5.12" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" - integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.4.2: - version "0.4.4" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - integrity sha1-66T12pwNyZneaAMti092FzZSA2s= - dependencies: - amdefine ">=0.0.4" - -source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -spdx-correct@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.2.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== - -spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.4" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" - integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -ssri@^5.2.4: - version "5.3.0" - resolved "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06" - integrity sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ== - dependencies: - safe-buffer "^5.1.1" - -ssri@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" - integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== - dependencies: - figgy-pudding "^3.5.1" - -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - -standalone-react-addons-pure-render-mixin@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/standalone-react-addons-pure-render-mixin/-/standalone-react-addons-pure-render-mixin-0.1.1.tgz#3c7409f4c79c40de9ac72c616cf679a994f37551" - integrity sha1-PHQJ9MecQN6axyxhbPZ5qZTzdVE= - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: - version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= - -statuses@~1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" - integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= - -statuses@~1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" - integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew== - -stdout-stream@^1.4.0: - version "1.4.1" - resolved "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - dependencies: - readable-stream "^2.0.1" - -stickyfilljs@^2.0.3: - version "2.1.0" - resolved "https://registry.npmjs.org/stickyfilljs/-/stickyfilljs-2.1.0.tgz#46dabb599d8275d185bdb97db597f86a2e3afa7b" - integrity sha512-LkG0BXArL5HbW2O09IAXfnBQfpScgGqJuUDUrI3Ire5YKjRz/EhakIZEJogHwgXeQ4qnTicM9sK9uYfWN11qKg== - -stream-browserify@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-each@^1.1.0: - version "1.2.3" - resolved "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" - integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== - dependencies: - end-of-stream "^1.1.0" - stream-shift "^1.0.0" - -stream-http@^2.7.2: - version "2.8.3" - resolved "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.3.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -stream-shift@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" - integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= - -stream-throttle@^0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" - integrity sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM= - dependencies: - commander "^2.2.0" - limiter "^1.0.5" - -strict-uri-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= - -string-replace-loader@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/string-replace-loader/-/string-replace-loader-2.1.1.tgz#b72e7b57b6ef04efe615aff0ad989b5c14ca63d1" - integrity sha512-0Nvw1LDclF45AFNuYPcD2Jvkv0mwb/dQSnJZMvhqGrT+zzmrpG3OJFD600qfQfNUd5aqfp7fCm2mQMfF7zLbyQ== - dependencies: - loader-utils "^1.1.0" - schema-utils "^0.4.5" - -string-width@^1.0.1, string-width@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string_decoder@^1.0.0, string_decoder@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" - integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== - dependencies: - safe-buffer "~5.1.0" - -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz#25f48ea22ca79187f3174a4db8759347bb126220" - integrity sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA= - dependencies: - ansi-regex "^0.2.1" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-bom-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" - integrity sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4= - dependencies: - first-chunk-stream "^1.0.0" - strip-bom "^2.0.0" - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-indent@^1.0.0, strip-indent@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= - dependencies: - get-stdin "^4.0.1" - -strip-indent@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" - integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= - -strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - -style-loader@^0.23.1: - version "0.23.1" - resolved "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" - integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - -style-properties@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/style-properties/-/style-properties-1.3.1.tgz#7f8617421f2959157f08d09eecba8688a15854c5" - integrity sha1-f4YXQh8pWRV/CNCe7LqGiKFYVMU= - -stylehacks@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" - integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== - dependencies: - browserslist "^4.0.0" - postcss "^7.0.0" - postcss-selector-parser "^3.0.0" - -supports-color@4.4.0: - version "4.4.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" - integrity sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ== - dependencies: - has-flag "^2.0.0" - -supports-color@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" - integrity sha1-2S3iaU6z9nMjlz1649i1W0wiGQo= - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^5.3.0, supports-color@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - -svgo@^1.0.0, svgo@^1.2.0: - version "1.2.2" - resolved "https://registry.npmjs.org/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316" - integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA== - dependencies: - chalk "^2.4.1" - coa "^2.0.2" - css-select "^2.0.0" - css-select-base-adapter "^0.1.1" - css-tree "1.0.0-alpha.28" - css-url-regex "^1.1.0" - csso "^3.5.1" - js-yaml "^3.13.1" - mkdirp "~0.5.1" - object.values "^1.1.0" - sax "~1.2.4" - stable "^0.1.8" - unquote "~1.1.1" - util.promisify "~1.0.0" - -swap-case@^1.1.0: - version "1.1.2" - resolved "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3" - integrity sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM= - dependencies: - lower-case "^1.1.1" - upper-case "^1.1.1" - -symbol-observable@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" - integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ= - -symbol-observable@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" - integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== - -table@^5.2.3: - version "5.4.0" - resolved "https://registry.npmjs.org/table/-/table-5.4.0.tgz#d772a3216e68829920a41a32c18eda286c95d780" - integrity sha512-nHFDrxmbrkU7JAFKqKbDJXfzrX2UBsWmrieXFTGxiI5e4ncg3VqsZeI4EzNmX0ncp4XNGVeoxIWJXfCIXwrsvw== - dependencies: - ajv "^6.9.1" - lodash "^4.17.11" - slice-ansi "^2.1.0" - string-width "^3.0.0" - -tapable@^1.0.0, tapable@^1.0.0-beta.5, tapable@^1.1.0: - version "1.1.3" - resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== - -tar-fs@^1.13.0: - version "1.16.3" - resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" - integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== - dependencies: - chownr "^1.0.1" - mkdirp "^0.5.1" - pump "^1.0.0" - tar-stream "^1.1.2" - -tar-stream@^1.1.2: - version "1.6.2" - resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" - integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== - dependencies: - bl "^1.0.0" - buffer-alloc "^1.2.0" - end-of-stream "^1.0.0" - fs-constants "^1.0.0" - readable-stream "^2.3.0" - to-buffer "^1.1.1" - xtend "^4.0.0" - -tar@^2.0.0: - version "2.2.2" - resolved "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" - integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== - dependencies: - block-stream "*" - fstream "^1.0.12" - inherits "2" - -tar@^4, tar@^4.4.8: - version "4.4.8" - resolved "https://registry.npmjs.org/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" - integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.3.4" - minizlib "^1.1.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.2" - -term-size@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" - integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= - dependencies: - execa "^0.7.0" - -terser-webpack-plugin@^1.1.0: - version "1.3.0" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4" - integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg== - dependencies: - cacache "^11.3.2" - find-cache-dir "^2.0.0" - is-wsl "^1.1.0" - loader-utils "^1.2.3" - schema-utils "^1.0.0" - serialize-javascript "^1.7.0" - source-map "^0.6.1" - terser "^4.0.0" - webpack-sources "^1.3.0" - worker-farm "^1.7.0" - -terser@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374" - integrity sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA== - dependencies: - commander "^2.19.0" - source-map "~0.6.1" - source-map-support "~0.5.10" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= - -tfunk@^3.0.1: - version "3.1.0" - resolved "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b" - integrity sha1-OORBT8ZJd9h6/apy+sttKfgve1s= - dependencies: - chalk "^1.1.1" - object-path "^0.9.0" - -through2-filter@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" - integrity sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw= - dependencies: - through2 "~2.0.0" - xtend "~4.0.0" - -through2-filter@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz#700e786df2367c2c88cd8aa5be4cf9c1e7831254" - integrity sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA== - dependencies: - through2 "~2.0.0" - xtend "~4.0.0" - -through2@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/through2/-/through2-1.1.1.tgz#0847cbc4449f3405574dbdccd9bb841b83ac3545" - integrity sha1-CEfLxESfNAVXTb3M2buEG4OsNUU= - dependencies: - readable-stream ">=1.1.13-1 <1.2.0-0" - xtend ">=4.0.0 <4.1.0-0" - -through2@^0.6.0: - version "0.6.5" - resolved "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" - integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= - dependencies: - readable-stream ">=1.0.33-1 <1.1.0-0" - xtend ">=4.0.0 <4.1.0-0" - -through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: - version "2.0.5" - resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@^2.3.6: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -timed-out@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" - integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= - -timers-browserify@^2.0.4: - version "2.0.10" - resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" - integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== - dependencies: - setimmediate "^1.0.4" - -timsort@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= - -tiny-emitter@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" - integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== - -title-case@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" - integrity sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o= - dependencies: - no-case "^2.2.0" - upper-case "^1.0.3" - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -to-absolute-glob@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" - integrity sha1-HN+kcqnvUMI57maZm2YsoOs5k38= - dependencies: - extend-shallow "^2.0.1" - -to-array@0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" - integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= - -to-buffer@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" - integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-readable-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -toidentifier@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" - integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== - -tough-cookie@~2.4.3: - version "2.4.3" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== - dependencies: - psl "^1.1.24" - punycode "^1.4.1" - -trim-newlines@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= - -"true-case-path@^1.0.2": - version "1.0.3" - resolved "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" - integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== - dependencies: - glob "^7.1.2" - -ts-loader@^5.3.3: - version "5.4.5" - resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-5.4.5.tgz#a0c1f034b017a9344cef0961bfd97cc192492b8b" - integrity sha512-XYsjfnRQCBum9AMRZpk2rTYSVpdZBpZK+kDh0TeT3kxmQNBDVIeUjdPjY5RZry4eIAb8XHc4gYSUiUWPYvzSRw== - dependencies: - chalk "^2.3.0" - enhanced-resolve "^4.0.0" - loader-utils "^1.0.2" - micromatch "^3.1.4" - semver "^5.0.1" - -tslib@^1.9.0: - version "1.9.3" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" - integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-is@~1.6.17, type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - -typescript@^3.2.4: - version "3.5.1" - resolved "https://registry.npmjs.org/typescript/-/typescript-3.5.1.tgz#ba72a6a600b2158139c5dd8850f700e231464202" - integrity sha512-64HkdiRv1yYZsSe4xC1WVgamNigVYjlssIoaH2HcZF0+ijsk5YK2g0G34w9wJkze8+5ow4STd22AynfO6ZYYLw== - -ua-parser-js@0.7.17: - version "0.7.17" - resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" - integrity sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g== - -uglify-js@3.4.x: - version "3.4.10" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" - integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== - dependencies: - commander "~2.19.0" - source-map "~0.6.1" - -uglify-js@^3.5.12: - version "3.6.0" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" - integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg== - dependencies: - commander "~2.20.0" - source-map "~0.6.1" - -uglifyjs-webpack-plugin@^2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.3.tgz#b00a18d1acda271deb755c99ba0d93568156eb76" - integrity sha512-/lRkCaFbI6pT3CxsQHDhBcqB6tocOnqba0vJqJ2DzSWFLRgOIiip8q0nVFydyXk+n8UtF7ZuS6hvWopcYH5FuA== - dependencies: - cacache "^11.3.2" - find-cache-dir "^2.1.0" - is-wsl "^1.1.0" - schema-utils "^1.0.0" - serialize-javascript "^1.7.0" - source-map "^0.6.1" - uglify-js "^3.5.12" - webpack-sources "^1.3.0" - worker-farm "^1.7.0" - -ultron@~1.1.0: - version "1.1.1" - resolved "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" - integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== - -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" - -unicode-match-property-value-ecmascript@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" - integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== - -unicode-property-aliases-ecmascript@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" - integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== - -union-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" - integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^0.4.3" - -uniq@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= - -uniqs@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" - integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= - -unique-filename@^1.1.0, unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6" - integrity sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg== - dependencies: - imurmurhash "^0.1.4" - -unique-stream@^2.0.2: - version "2.3.1" - resolved "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz#c65d110e9a4adf9a6c5948b28053d9a8d04cbeac" - integrity sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A== - dependencies: - json-stable-stringify-without-jsonify "^1.0.1" - through2-filter "^3.0.0" - -unique-string@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" - integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= - dependencies: - crypto-random-string "^1.0.0" - -universal-user-agent@^2.0.0, universal-user-agent@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz#5abfbcc036a1ba490cb941f8fd68c46d3669e8e4" - integrity sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q== - dependencies: - os-name "^3.0.0" - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= - -unquote@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -unzip-response@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" - integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= - -upath@^1.1.1: - version "1.1.2" - resolved "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" - integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== - -update-check@1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.2.tgz#2fe09f725c543440b3d7dabe8971f2d5caaedc28" - integrity sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ== - dependencies: - registry-auth-token "3.3.2" - registry-url "3.1.0" - -update-notifier@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" - integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== - dependencies: - boxen "^1.2.1" - chalk "^2.0.1" - configstore "^3.0.0" - import-lazy "^2.1.0" - is-ci "^1.0.10" - is-installed-globally "^0.1.0" - is-npm "^1.0.0" - latest-version "^3.0.0" - semver-diff "^2.0.0" - xdg-basedir "^3.0.0" - -upper-case-first@^1.1.0, upper-case-first@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" - integrity sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU= - dependencies: - upper-case "^1.1.1" - -upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" - integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= - -uppercamelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/uppercamelcase/-/uppercamelcase-3.0.0.tgz#380b321b8d73cba16fec4d752a575152d1ef7317" - integrity sha1-OAsyG41zy6Fv7E11KldRUtHvcxc= - dependencies: - camelcase "^4.1.0" - -uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -url-loader@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" - integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg== - dependencies: - loader-utils "^1.1.0" - mime "^2.0.3" - schema-utils "^1.0.0" - -url-parse-lax@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" - integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= - dependencies: - prepend-http "^1.0.1" - -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= - dependencies: - prepend-http "^2.0.0" - -url-template@^2.0.8: - version "2.0.8" - resolved "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" - integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.npmjs.org/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -util.promisify@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" - integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== - dependencies: - define-properties "^1.1.2" - object.getownpropertydescriptors "^2.0.3" - -util@0.10.3: - version "0.10.3" - resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= - dependencies: - inherits "2.0.1" - -util@^0.11.0: - version "0.11.1" - resolved "https://registry.npmjs.org/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== - dependencies: - inherits "2.0.3" - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= - -uuid@^3.1.0, uuid@^3.3.2: - version "3.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" - integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== - -v8-compile-cache@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" - integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== - -vali-date@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" - integrity sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY= - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= - -vendors@^1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" - integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -vinyl-fs@^2.4.4: - version "2.4.4" - resolved "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" - integrity sha1-vm/zJwy1Xf19MGNkDegfJddTIjk= - dependencies: - duplexify "^3.2.0" - glob-stream "^5.3.2" - graceful-fs "^4.0.0" - gulp-sourcemaps "1.6.0" - is-valid-glob "^0.3.0" - lazystream "^1.0.0" - lodash.isequal "^4.0.0" - merge-stream "^1.0.0" - mkdirp "^0.5.0" - object-assign "^4.0.0" - readable-stream "^2.0.4" - strip-bom "^2.0.0" - strip-bom-stream "^1.0.0" - through2 "^2.0.0" - through2-filter "^2.0.0" - vali-date "^1.0.0" - vinyl "^1.0.0" - -vinyl-source-stream@^1.0.0: - version "1.1.2" - resolved "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz#62b53a135610a896e98ca96bee3a87f008a8e780" - integrity sha1-YrU6E1YQqJbpjKlr7jqH8Aio54A= - dependencies: - through2 "^2.0.3" - vinyl "^0.4.3" - -vinyl-string@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/vinyl-string/-/vinyl-string-1.0.2.tgz#3a249efeb0d36c4cb0a5e59e30d68e54f739d8e3" - integrity sha1-OiSe/rDTbEywpeWeMNaOVPc52OM= - dependencies: - vinyl "^1.1.1" - -vinyl@^0.4.3: - version "0.4.6" - resolved "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" - integrity sha1-LzVsh6VQolVGHza76ypbqL94SEc= - dependencies: - clone "^0.2.0" - clone-stats "^0.0.1" - -vinyl@^1.0.0, vinyl@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" - integrity sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ= - dependencies: - clone "^1.0.0" - clone-stats "^0.0.1" - replace-ext "0.0.1" - -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" - integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= - dependencies: - indexof "0.0.1" - -watchpack@^1.5.0: - version "1.6.0" - resolved "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" - integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== - dependencies: - chokidar "^2.0.2" - graceful-fs "^4.1.2" - neo-async "^2.5.0" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= - dependencies: - defaults "^1.0.3" - -webpack-cli@^3.1.2: - version "3.3.2" - resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.2.tgz#aed2437b0db0a7faa2ad28484e166a5360014a91" - integrity sha512-FLkobnaJJ+03j5eplxlI0TUxhGCOdfewspIGuvDVtpOlrAuKMFC57K42Ukxqs1tn8947/PM6tP95gQc0DCzRYA== - dependencies: - chalk "^2.4.1" - cross-spawn "^6.0.5" - enhanced-resolve "^4.1.0" - findup-sync "^2.0.0" - global-modules "^1.0.0" - import-local "^2.0.0" - interpret "^1.1.0" - loader-utils "^1.1.0" - supports-color "^5.5.0" - v8-compile-cache "^2.0.2" - yargs "^12.0.5" - -webpack-dev-middleware@^3.5.1: - version "3.7.0" - resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz#ef751d25f4e9a5c8a35da600c5fda3582b5c6cff" - integrity sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA== - dependencies: - memory-fs "^0.4.1" - mime "^2.4.2" - range-parser "^1.2.1" - webpack-log "^2.0.0" - -webpack-hot-middleware@^2.24.3: - version "2.25.0" - resolved "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706" - integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA== - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - -webpack-log@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" - integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== - dependencies: - ansi-colors "^3.0.0" - uuid "^3.3.2" - -webpack-manifest-plugin@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz#e4ca2999b09557716b8ba4475fb79fab5986f0cd" - integrity sha512-nejhOHexXDBKQOj/5v5IZSfCeTO3x1Dt1RZEcGfBSul891X/eLIcIVH31gwxPDdsi2Z8LKKFGpM4w9+oTBOSCg== - dependencies: - fs-extra "^7.0.0" - lodash ">=3.5 <5" - tapable "^1.0.0" - -webpack-merge@^4.2.1: - version "4.2.1" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" - integrity sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw== - dependencies: - lodash "^4.17.5" - -webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" - integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== - dependencies: - source-list-map "^2.0.0" - source-map "~0.6.1" - -webpack@4.29.6: - version "4.29.6" - resolved "https://registry.npmjs.org/webpack/-/webpack-4.29.6.tgz#66bf0ec8beee4d469f8b598d3988ff9d8d90e955" - integrity sha512-MwBwpiE1BQpMDkbnUUaW6K8RFZjljJHArC6tWQJoFm0oQtfoSebtg4Y7/QHnJ/SddtjYLHaKGX64CFjG5rehJw== - dependencies: - "@webassemblyjs/ast" "1.8.5" - "@webassemblyjs/helper-module-context" "1.8.5" - "@webassemblyjs/wasm-edit" "1.8.5" - "@webassemblyjs/wasm-parser" "1.8.5" - acorn "^6.0.5" - acorn-dynamic-import "^4.0.0" - ajv "^6.1.0" - ajv-keywords "^3.1.0" - chrome-trace-event "^1.0.0" - enhanced-resolve "^4.1.0" - eslint-scope "^4.0.0" - json-parse-better-errors "^1.0.2" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - micromatch "^3.1.8" - mkdirp "~0.5.0" - neo-async "^2.5.0" - node-libs-browser "^2.0.0" - schema-utils "^1.0.0" - tapable "^1.1.0" - terser-webpack-plugin "^1.1.0" - watchpack "^1.5.0" - webpack-sources "^1.3.0" - -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which-pm-runs@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" - integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= - -which@1, which@^1.0.5, which@^1.2.14, which@^1.2.9, which@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - -widest-line@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" - integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== - dependencies: - string-width "^2.1.1" - -window-size@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" - integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= - -window-size@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" - integrity sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU= - -windows-release@^3.1.0: - version "3.2.0" - resolved "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" - integrity sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA== - dependencies: - execa "^1.0.0" - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= - -worker-farm@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" - integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== - dependencies: - errno "~0.1.7" - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -write-file-atomic@^2.0.0, write-file-atomic@^2.3.0: - version "2.4.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -write-file-webpack-plugin@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/write-file-webpack-plugin/-/write-file-webpack-plugin-4.5.0.tgz#b53ccf01c346342a131c73a2ddd27049e90c5b44" - integrity sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg== - dependencies: - chalk "^2.4.0" - debug "^3.1.0" - filesize "^3.6.1" - lodash "^4.17.5" - mkdirp "^0.5.1" - moment "^2.22.1" - write-file-atomic "^2.3.0" - -write-json-file@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" - integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8= - dependencies: - detect-indent "^5.0.0" - graceful-fs "^4.1.2" - make-dir "^1.0.0" - pify "^3.0.0" - sort-keys "^2.0.0" - write-file-atomic "^2.0.0" - -write@1.0.3, write@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - -ws@~3.3.1: - version "3.3.3" - resolved "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" - integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== - dependencies: - async-limiter "~1.0.0" - safe-buffer "~5.1.0" - ultron "~1.1.0" - -ws@~6.1.0: - version "6.1.4" - resolved "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" - integrity sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA== - dependencies: - async-limiter "~1.0.0" - -xdg-basedir@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" - integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= - -xmldom@0.1.22: - version "0.1.22" - resolved "https://registry.npmjs.org/xmldom/-/xmldom-0.1.22.tgz#10de4e5e964981f03c8cc72fadc08d14b6c3aa26" - integrity sha1-EN5OXpZJgfA8jMcvrcCNFLbDqiY= - -xmlhttprequest-ssl@~1.5.4: - version "1.5.5" - resolved "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" - integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= - -"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" - integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= - -y18n@^3.2.0, y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= - -"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - -yallist@^3.0.0, yallist@^3.0.2: - version "3.0.3" - resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" - integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== - -yaml-loader@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/yaml-loader/-/yaml-loader-0.5.0.tgz#86b1982d84a8e429e6647d93de9a0169e1c15827" - integrity sha512-p9QIzcFSNm4mCw/m5NdyMfN4RE4aFZJWRRb01ERVNGCym8VNbKtw3OYZXnvUIkim6U/EjqE/2yIh9F/msShH9A== - dependencies: - js-yaml "^3.5.2" - -yargs-parser@^11.1.1: - version "11.1.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" - integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^4.1.0, yargs-parser@^4.2.0: - version "4.2.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" - integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= - dependencies: - camelcase "^3.0.0" - -yargs-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" - integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= - dependencies: - camelcase "^3.0.0" - -yargs@6.4.0: - version "6.4.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" - integrity sha1-gW4ahm1VmMzzTlWW3c4i2S2kkNQ= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - window-size "^0.2.0" - y18n "^3.2.1" - yargs-parser "^4.1.0" - -yargs@6.6.0: - version "6.6.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" - integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^4.2.0" - -yargs@^12.0.5: - version "12.0.5" - resolved "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" - integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== - dependencies: - cliui "^4.0.0" - decamelize "^1.2.0" - find-up "^3.0.0" - get-caller-file "^1.0.1" - os-locale "^3.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1 || ^4.0.0" - yargs-parser "^11.1.1" - -yargs@^3.32.0: - version "3.32.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" - integrity sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU= - dependencies: - camelcase "^2.0.1" - cliui "^3.0.3" - decamelize "^1.1.1" - os-locale "^1.4.0" - string-width "^1.0.1" - window-size "^0.1.4" - y18n "^3.2.0" - -yargs@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" - integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^5.0.0" - -yeast@0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" - integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= diff --git a/example-integrations/vue/package.json b/example-integrations/vue/package.json index d558bf59c8..98a1f2af0e 100644 --- a/example-integrations/vue/package.json +++ b/example-integrations/vue/package.json @@ -17,10 +17,9 @@ ], "dependencies": { "@bolt/babel-preset-bolt": "^2.4.3", - "@bolt/browserslist-config": "^2.4.3", - "@bolt/build-tools": "^2.4.3", + "@bolt/build-tools": "^2.4.4", "@bolt/components-button": "^2.4.0", - "@bolt/components-image": "^2.3.1", + "@bolt/components-image": "^2.4.0", "@bolt/components-text": "^2.4.0", "@bolt/config-eslint": "^2.4.0", "@bolt/core": "^2.4.0", @@ -70,4 +69,4 @@ "sass-loader": "^7.1.0", "vue-template-compiler": "^2.6.10" } -} \ No newline at end of file +} diff --git a/jest.config.js b/jest.config.js index 86ea3c2b0f..40623d2926 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,6 +2,7 @@ const globby = require('globby'); const testFilesToIgnore = globby.sync([ 'packages/components/**/*.e2e.js', + 'packages/components/**/*.no2e.js', // workaround to disable a few e2e tests 'packages/**/*.data.js', ]); @@ -14,7 +15,9 @@ module.exports = { 'brightcove-player.test.js', 'example-integrations', 'packages/uikit-workshop', + // 'packages/testing/testing-utils/__tests__', 'packages/build-tools/plugins/sass-export-data/tests', + 'packages/build-tools/__tests__/*', 'packages/components/bolt-button/__tests__/button-wc.test.js', 'example-integrations/drupal-lab/web/themes/bolt-starter/__tests__/index.js', // tested separately after the Drupal Lab build 'packages/patternlab-node', diff --git a/lerna.json b/lerna.json index 691a980653..2b44d7f5ef 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "3.10.7", - "version": "2.5.6", + "version": "2.6.0-beta.1", "command": { "publish": { "allowBranch": [ @@ -26,5 +26,8 @@ "**/__snapshots__/**" ], "npmClient": "yarn", + "npmClientArgs": [ + "--ignore-optional" + ], "useWorkspaces": true } diff --git a/package.json b/package.json index 34e8e8a7c2..eb9da098f2 100644 --- a/package.json +++ b/package.json @@ -23,12 +23,20 @@ "workspaces": { "packages": [ "docs-site", + "docs-site/src/components/banner", + "docs-site/src/components/docs-search", + "docs-site/src/components/radio-switch", "packages/*", "packages/*/*", + "packages/build-tools/__tests__/*", "packages/build-tools/plugins/*", - "docs-site/src/components/radio-switch", - "docs-site/src/components/docs-search", - "docs-site/src/components/banner" + "scripts" + ], + "nohoist": [ + "lazysizes", + "**/lazysizes", + "get-own-property-symbols", + "**/get-own-property-symbols" ] }, "scripts": { @@ -55,19 +63,25 @@ "setup:php": "npx lerna exec --parallel --scope @bolt/twig-renderer --scope @bolt/drupal-twig-extensions --scope @bolt/core-php --scope @bolt/website -- composer install --prefer-dist --quiet", "setup:quick": "yarn install --production && yarn run setup:php", "start": "cd docs-site && yarn run start", - "test": "npm-run-all --parallel test:js test:php test:monorepo", + "test": "npm-run-all --parallel --aggregate-output test:js test:php test:monorepo test:build-tools", "test:e2e:full": "./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.js --env chrome,firefox,ie11", "test:e2e:full-live": " NOW_URL=https://boltdesignsystem.com ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.js --env chrome,firefox,ie11", - "test:e2e:full-local": "NOW_URL=http://localhost:3000 ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.local.js --env chrome,firefox,safari", + "test:e2e:full-local": "NOW_URL=http://localhost:3000 ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.local.js --env chrome,safari", "test:e2e:full-master": " NOW_URL=https://master.boltdesignsystem.com ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.js --env chrome,firefox,ie11", "test:e2e:quick-live": " NOW_URL=https://boltdesignsystem.com ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.local.js", "test:e2e:quick-local": "NOW_URL=http://localhost:3000 ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.local.js", "test:e2e:quick-master": " NOW_URL=https://master.boltdesignsystem.com ./node_modules/.bin/nightwatch --config packages/testing/testing-nightwatch/nightwatch.local.js", "pretest:js": "npm run setup:php", - "test:js": "NODE_ENV='test' jest --all --colors --maxWorkers=1", + "jest": "jest --maxWorkers=3 --all --colors", + "test:js": "NODE_ENV='test' jest --all --colors 'packages|scripts' --passWithNoTests ", + "test:js:quick": "NODE_ENV='test' jest --colors \"$(bolt-list-pkg-paths-changed)\" --passWithNoTests", "test:js:update": "yarn run test:js -u", - "test:monorepo": "jest __tests__/monorepo.test.js -c jest.config.quick.js", - "test:php": "cd packages/core-php -- composer run test" + "test:monorepo": "jest ./__tests__/monorepo -c jest.config.quick.js --noStackTrace", + "test:build-tools": "cd packages/build-tools && yarn run test", + "test:php": "cd packages/core-php -- composer run test", + "test:pkgs": "lerna run test", + "test:types": "tsc", + "postinstall": "patch-package" }, "husky": { "hooks": { @@ -81,6 +95,7 @@ ] }, "config": { + "puppeteer_skip_chromium_download": true, "commitizen": { "path": "./node_modules/@instructure/cz-lerna-changelog" } @@ -89,31 +104,41 @@ "extends @bolt/browserslist-config" ], "dependencies": { - "@commitlint/cli": "^7.6.1", - "@commitlint/config-conventional": "^7.6.0", - "@instructure/cz-lerna-changelog": "^6.2.0", - "@open-wc/testing-helpers": "^0.9.4", - "ci-utils": "^0.5.0", + "conf": "^5.0.0", + "get-port": "^5.0.0", + "patch-package": "^6.1.2", + "postinstall-postinstall": "^2.0.0", + "@commitlint/cli": "^8.0.0", + "@commitlint/config-conventional": "^8.0.0", + "@instructure/cz-lerna-changelog": "^6.6.0", + "@open-wc/testing-helpers": "^1.0.10", + "ci-utils": "^0.6.0", "commitizen": "^3.1.1", "conventional-changelog-cli": "^2.0.21", "cz-conventional-changelog": "^2.1.0", - "eslint": "^5.16.0", - "eslint-plugin-react": "^7.13.0", - "globby": "^9.2.0", + "eslint": "^6.0.1", + "eslint-plugin-react": "^7.14.2", + "eslint-plugin-prettier": "^3.1.0", + "globby": "^10.0.1", + "@bolt/testing-utils": "^2.6.0-beta.1", + "find-pkg": "^2.0.0", "haunted": "^4.4.0", - "husky": "^2.3.0", + "husky": "^3.0.0", "jest": "^24.8.0", - "jsonwebtoken": "^8.4.0", - "lerna": "^3.14.1", - "lit-element": "^2.1.0", - "lit-html": "^1.1.0", - "now": "15.3.0", + "jsonwebtoken": "^8.5.1", + "lerna": "^3.15.0", + "lit-element": "^2.2.0", + "lit-html": "^1.1.1", "npm-run-all": "^4.1.5", "proxy-polyfill": "^0.3.0", - "release-it": "^12.2.2", - "semantic-release": "^15.13.12" + "release-it": "^12.3.2", + "semantic-release": "^15.13.18", + "typescript": "^3.5.3" }, "publishConfig": { "access": "public" + }, + "devDependencies": { + "@types/jest": "^24.0.15" } -} \ No newline at end of file +} diff --git a/packages/analytics/autolink/CHANGELOG.md b/packages/analytics/autolink/CHANGELOG.md index 3882ff1d58..210336610a 100644 --- a/packages/analytics/autolink/CHANGELOG.md +++ b/packages/analytics/autolink/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix lint issue ([9e82e93](https://github.com/bolt-design-system/bolt/commit/9e82e93)) +* update @bolt/analytics-autolink to catch errors thrown if a Google Analytics `analytics.js` script tag doesn't exist on the page. ([41bd669](https://github.com/bolt-design-system/bolt/commit/41bd669)) + + + + + ## [2.5.1](https://github.com/bolt-design-system/bolt/compare/v2.5.0...v2.5.1) (2019-06-21) **Note:** Version bump only for package @bolt/analytics-autolink diff --git a/packages/analytics/autolink/__tests__/autolink.test.js b/packages/analytics/autolink/__tests__/autolink.test.js index 90bc9ebc1c..f6b9a13c00 100644 --- a/packages/analytics/autolink/__tests__/autolink.test.js +++ b/packages/analytics/autolink/__tests__/autolink.test.js @@ -3,18 +3,13 @@ const path = require('path'); const timeout = 90000; describe('analytics autolinker', () => { - let page, context; - - beforeAll(async () => { - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); + let page; beforeEach(async () => { - page = await context.newPage(); + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { + waitUntil: 'networkidle0', timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); await page.addScriptTag({ @@ -22,6 +17,10 @@ describe('analytics autolinker', () => { }); }, timeout); + afterEach(async () => { + await page.close(); + }); + test('autolinker does not modify component URLs already containing an _ga query string', async function() { await page.addScriptTag({ type: 'module', @@ -41,7 +40,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga=1234'); - }, 60000); + }, 120000); test('autolinker updates the URLs of a with an external url (2nd in the config) + rendering to the Shadow DOM', async function() { await page.addScriptTag({ @@ -62,7 +61,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); test('autolinker tracks the URLs of a with an external url (2nd in the config) + rendering to the Shadow DOM - even after re-rendering', async function() { await page.addScriptTag({ @@ -73,7 +72,7 @@ describe('analytics autolinker', () => { await page.evaluate(() => { const btn = document.createElement('bolt-button'); btn.textContent = 'External URL - Shadow DOM Test'; - btn.setAttribute('url', 'https://www.pega.com'); + btn.setAttribute('url', 'https://developer.mozilla.org'); document.body.appendChild(btn); }); @@ -91,7 +90,7 @@ describe('analytics autolinker', () => { expect(currentUrl).toContain('_ga'); expect(currentUrl).toContain('brightcove.com'); - }, 60000); + }, 120000); test('autolinker updates the URLs of a with an external url + rendering to the Shadow DOM', async function() { await page.addScriptTag({ @@ -112,7 +111,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); test('autolinker updates the URLs of s with external urls + render to the light DOM', async function() { await page.addScriptTag({ @@ -134,7 +133,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); test('autolinker does not track s with urls not containing domains in the config', async function() { await page.addScriptTag({ @@ -145,7 +144,7 @@ describe('analytics autolinker', () => { await page.evaluate(() => { const btn = document.createElement('bolt-button'); btn.textContent = 'External URL - Untracked Domain'; - btn.setAttribute('url', 'https://www.pega.com'); + btn.setAttribute('url', 'https://developer.mozilla.org'); document.body.appendChild(btn); }); @@ -155,7 +154,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).not.toContain('_ga'); - }, 60000); + }, 120000); test('autolinker updates the URLs of a with an external url + rendering to the Shadow DOM', async function() { await page.addScriptTag({ @@ -177,7 +176,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); test('autolinker updates the URLs of a with an external url + rendering to the light DOM', async function() { await page.addScriptTag({ @@ -199,7 +198,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); test('autolinker does not track s with urls not containing domains in the config', async function() { await page.addScriptTag({ @@ -211,7 +210,7 @@ describe('analytics autolinker', () => { const link = document.createElement('bolt-link'); link.textContent = 'External URL - Untracked Domain'; link.style.display = 'inline-block'; // for some strange reason, without any :host styles or this, puppeteer can't seem to find this DOM node to click on - link.setAttribute('url', 'https://www.pega.com'); + link.setAttribute('url', 'https://developer.mozilla.org'); document.body.appendChild(link); }); @@ -221,7 +220,7 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).not.toContain('_ga'); - }, 60000); + }, 120000); test('the correct inline config for specifying autolink domains inside Drupal exists', async function() { await page.addScriptTag({ @@ -238,8 +237,8 @@ describe('analytics autolinker', () => { return window.drupalSettings.google_analytics.trackCrossDomains[0]; }); - expect(config).toBe('pega.com'); - }, 60000); + expect(config).toBe('developer.mozilla.org'); + }, 120000); test('allow Drupal to configure which domains get configured / tracked by autolink.', async function() { await page.addScriptTag({ @@ -254,7 +253,7 @@ describe('analytics autolinker', () => { const btn = document.createElement('bolt-button'); btn.textContent = 'External URL - Normally Untracked But Now Tracked Domain'; - btn.setAttribute('url', 'https://www.pega.com'); + btn.setAttribute('url', 'https://developer.mozilla.org'); document.body.appendChild(btn); }); @@ -264,5 +263,5 @@ describe('analytics autolinker', () => { const currentUrl = await page.url(); expect(currentUrl).toContain('_ga'); - }, 60000); + }, 120000); }); diff --git a/packages/analytics/autolink/__tests__/fixtures/test-analytics.drupal-config.data.js b/packages/analytics/autolink/__tests__/fixtures/test-analytics.drupal-config.data.js index b4e09ad13a..02bb33ba3d 100644 --- a/packages/analytics/autolink/__tests__/fixtures/test-analytics.drupal-config.data.js +++ b/packages/analytics/autolink/__tests__/fixtures/test-analytics.drupal-config.data.js @@ -1,7 +1,7 @@ // example configuration of how data used to mock up the GA config getting used in Drupal window.drupalSettings = { google_analytics: { - trackCrossDomains: ['pega.com'], + trackCrossDomains: ['developer.mozilla.org'], }, }; diff --git a/packages/analytics/autolink/index.js b/packages/analytics/autolink/index.js index f1baf804ee..c164eeff64 100644 --- a/packages/analytics/autolink/index.js +++ b/packages/analytics/autolink/index.js @@ -45,7 +45,15 @@ function handleClickTracking(e, elem) { } else { link = e.target; } - const trackers = ga.getAll(); + + // account for ga.getAll not existing on the page + let trackers; + try { + trackers = ga.getAll(); + } catch (err) { + console.warn(err); + return; + } try { window.bolt.autolink.domains = diff --git a/packages/analytics/autolink/package.json b/packages/analytics/autolink/package.json index 67e09a54b1..4ba89ee0b6 100644 --- a/packages/analytics/autolink/package.json +++ b/packages/analytics/autolink/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/analytics-autolink", "description": "Adds Google Analytics tracking support to the Bolt Design System.", - "version": "2.5.1", + "version": "2.6.0-beta.1", "license": "MIT", "main": "index.js", "keywords": [ diff --git a/packages/analytics/autotrack/CHANGELOG.md b/packages/analytics/autotrack/CHANGELOG.md index 5f94620fb8..ec23a50fca 100644 --- a/packages/analytics/autotrack/CHANGELOG.md +++ b/packages/analytics/autotrack/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* update @bolt/analytics-autotrack package to catch a JS error thrown if `window.drupalSettings.google_analytics.trackCrossDomains` isn't defined ([5919c48](https://github.com/bolt-design-system/bolt/commit/5919c48)) + + + + + ## [2.4.2](https://github.com/bolt-design-system/bolt/compare/v2.4.1...v2.4.2) (2019-05-24) diff --git a/packages/analytics/autotrack/index.js b/packages/analytics/autotrack/index.js index 978000e7da..0cf9c5f90b 100644 --- a/packages/analytics/autotrack/index.js +++ b/packages/analytics/autotrack/index.js @@ -306,10 +306,17 @@ const createTracker = () => { // // Loads the Linker plugin ga('require', 'linker'); - ga( - 'linker:autoLink', - window.drupalSettings.google_analytics.trackCrossDomains, - ); + let trackedDomains = []; + try { + trackedDomains = window.drupalSettings.google_analytics.trackCrossDomains; + } catch { + // default domains to track if no global data defined + trackedDomains = window.bolt.autolink.domains || []; + } + + if (trackedDomains.length >= 1) { + ga('linker:autoLink', trackedDomains); + } // // Log hits in non-production environments. // if (process.env.NODE_ENV !== 'production') { diff --git a/packages/analytics/autotrack/package.json b/packages/analytics/autotrack/package.json index b9d710251f..93358f12ef 100644 --- a/packages/analytics/autotrack/package.json +++ b/packages/analytics/autotrack/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/analytics-autotrack", "description": "Adds automatic Google Analytics Autolink tracking support to every linkable component in the Bolt Design System.", - "version": "2.4.2", + "version": "2.6.0-beta.1", "license": "MIT", "private": true, "main": "index.js", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index b3db08bba0..849f3c5d66 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/api + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/api diff --git a/packages/api/index.test.js b/packages/api/index.test.js index c235bf243e..9654e37094 100644 --- a/packages/api/index.test.js +++ b/packages/api/index.test.js @@ -9,13 +9,13 @@ describe('Test the Bolt Twig Renderer API', () => { const result = await render(buttonTemplate, buttonData); expect(result.ok).toEqual(true); - }); + }, 10000); test('handles missing data', async () => { const result = await render(buttonTemplate); expect(result.ok).toEqual(true); - }); + }, 10000); test('handles non-existent template path', async () => { const result = await render('@bolt-components-button/button2.twig', { @@ -23,7 +23,7 @@ describe('Test the Bolt Twig Renderer API', () => { }); expect(result.ok).toEqual(false); - }); + }, 10000); test('renders the button component correctly', async () => { const result = await render(buttonTemplate, { @@ -31,7 +31,7 @@ describe('Test the Bolt Twig Renderer API', () => { }); expect(result.html).toMatchSnapshot(); - }); + }, 10000); test('renders attributes on the button component correctly', async () => { const result = await render(buttonTemplate, { @@ -42,7 +42,7 @@ describe('Test the Bolt Twig Renderer API', () => { }); expect(result.html).toMatchSnapshot(); - }); + }, 10000); test('renders the secondary button correctly', async () => { const result = await render(buttonTemplate, { @@ -51,5 +51,5 @@ describe('Test the Bolt Twig Renderer API', () => { }); expect(result.html).toMatchSnapshot(); - }); + }, 10000); }); diff --git a/packages/api/package.json b/packages/api/package.json index da2c85611c..d00a11e521 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/api", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Bolt API Endpoint", "author": "Salem Ghoweri", "license": "MIT", @@ -9,8 +9,8 @@ "url": "git+https://github.com/bolt-design-system/bolt.git" }, "dependencies": { - "@bolt/components-button": "^2.5.6", - "@bolt/twig-renderer": "^2.5.2", + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/twig-renderer": "^2.6.0-beta.1", "really-relaxed-json": "^0.2.24" }, "publishConfig": { diff --git a/packages/build-tools/CHANGELOG.md b/packages/build-tools/CHANGELOG.md index 9c750c38c8..3483c4b926 100644 --- a/packages/build-tools/CHANGELOG.md +++ b/packages/build-tools/CHANGELOG.md @@ -3,6 +3,41 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* add missing log dependency to cli.js ([63ee6e3](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/63ee6e3)) +* add new option to the image task to optionally disable image compression; used when making / running VRTs ([6cd2d9a](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/6cd2d9a)) +* address prettier issue ([226dec3](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/226dec3)) +* bump dependency versions used in build tool tests ([ee425c0](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/ee425c0)) +* cherry pick build tools updates from https://github.com/bolt-design-system/bolt/pull/1323 ([0676e3a](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/0676e3a)) +* fix eslint errors ([6d7f6a4](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/6d7f6a4)) +* fix eslint issue + update Drupal Lab patch ([0082e19](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/0082e19)) +* fix image task to properly generate srcsets in prod mode ([332ffda](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/332ffda)) +* fix webpack prettier issue ([d784e7d](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/d784e7d)) +* make sure config schema path can be resolved in the build tools CLI ([239e4cc](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/239e4cc)) +* make sure the config-file CLI args work together with the default cosmic config behavior ([8a303b8](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/8a303b8)) +* prettify CSS result from the @bolt/build-tools before doing snapshot diff ([a50ffa5](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/a50ffa5)) +* quote the `lang` global JS data to fix JS error getting thrown ([ce3ee2c](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/ce3ee2c)) +* update build tool tests to format CSS before comparing results ([90cefe0](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/90cefe0)) +* update internal @bolt/build-tools references to utils to globally use the NPM namespaced version so the config store matches across the board ([200bb63](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/200bb63)) +* update Jest snapshot for the build tools ([a324904](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/a324904)) +* update Jest snapshot for the build tools ([acac6a6](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/acac6a6)) +* update Jest snapshots for build tools ([4bc99cb](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/4bc99cb)) + + +### Features + +* add 'env' to global JS, wrap 'env' and 'lang' in JSON.stringify ([99f1a11](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/99f1a11)) +* cherry pick a build tools update to reuse the same browser tab you already had open when starting up / restarting the @bolt/build-tools ([b0a29f8](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/b0a29f8)) +* update Webpack to handle .cur files (cursor file fallback when needed) ([01602ac](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/commit/01602ac)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/compare/v2.5.5...v2.5.6) (2019-07-30) diff --git a/packages/build-tools/__tests__/multi-lang/.boltrc.multi-lang.js b/packages/build-tools/__tests__/multi-lang/.boltrc.multi-lang.js new file mode 100644 index 0000000000..b5acac50f4 --- /dev/null +++ b/packages/build-tools/__tests__/multi-lang/.boltrc.multi-lang.js @@ -0,0 +1,17 @@ +// Older method for generating a Japanese language-specific version of the build +const config = { + lang: ['en', 'ja'], + env: 'drupal', // @todo: we really need to refactor this to allow running just whatever tasks you need (more easily / more intuitively) + buildDir: './dist-lang/build', + dataDir: './dist-lang/build/data', + wwwDir: './dist-lang', + components: { + global: [ + '@bolt/components-button', + '@bolt/global', + ], + individual: [], + } +}; + +module.exports = config; diff --git a/packages/build-tools/__tests__/multi-lang/CHANGELOG.md b/packages/build-tools/__tests__/multi-lang/CHANGELOG.md new file mode 100644 index 0000000000..d305e5e084 --- /dev/null +++ b/packages/build-tools/__tests__/multi-lang/CHANGELOG.md @@ -0,0 +1,15 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* bump dependency versions used in build tool tests ([ee425c0](https://github.com/bolt-design-system/bolt/commit/ee425c0)) +* prettify CSS result from the @bolt/build-tools before doing snapshot diff ([a50ffa5](https://github.com/bolt-design-system/bolt/commit/a50ffa5)) +* update build tool tests to format CSS before comparing results ([90cefe0](https://github.com/bolt-design-system/bolt/commit/90cefe0)) +* update Jest snapshot for the build tools ([acac6a6](https://github.com/bolt-design-system/bolt/commit/acac6a6)) +* update Jest snapshots for build tools ([4bc99cb](https://github.com/bolt-design-system/bolt/commit/4bc99cb)) diff --git a/packages/build-tools/__tests__/multi-lang/__snapshots__/index.js.snap b/packages/build-tools/__tests__/multi-lang/__snapshots__/index.js.snap new file mode 100644 index 0000000000..e57c123433 --- /dev/null +++ b/packages/build-tools/__tests__/multi-lang/__snapshots__/index.js.snap @@ -0,0 +1,27351 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Tests to confirm that the latest upcoming release of the @bolt/build-tools is compiling as expected Check JSON data for colors was generated and outputted by the @bolt/build-tools 1`] = ` +Object { + "black": Object { + "base": "rgb(21, 22, 25)", + }, + "gray": Object { + "base": "rgb(141, 142, 153)", + "dark": "rgb(92, 93, 102)", + "light": "rgb(224, 226, 235)", + "xdark": "rgb(46, 46, 51)", + "xlight": "rgb(246, 246, 249)", + }, + "indigo": Object { + "base": "rgb(31, 38, 86)", + "dark": "rgb(22, 26, 60)", + "light": "rgb(84, 93, 166)", + "xdark": "rgb(6, 9, 35)", + "xlight": "rgb(171, 179, 242)", + }, + "orange": Object { + "base": "rgb(232, 75, 23)", + "dark": "rgb(181, 59, 18)", + "light": "rgb(255, 140, 102)", + "xdark": "rgb(102, 26, 0)", + "xlight": "rgb(255, 198, 179)", + }, + "teal": Object { + "base": "rgb(0, 153, 153)", + "dark": "rgb(10, 102, 102)", + "light": "rgb(122, 205, 205)", + "xdark": "rgb(0, 51, 51)", + "xlight": "rgb(183, 230, 230)", + }, + "white": Object { + "base": "rgb(255, 255, 255)", + }, + "yellow": Object { + "base": "rgb(255, 204, 77)", + "dark": "rgb(232, 173, 23)", + "light": "rgb(255, 226, 153)", + "xdark": "rgb(102, 73, 0)", + "xlight": "rgb(255, 241, 204)", + }, +} +`; + +exports[`Tests to confirm that the latest upcoming release of the @bolt/build-tools is compiling as expected Check that the Japanese-specific CSS bundle was generated and contains the correct font 1`] = ` +"@charset \\"UTF-8\\"; +bolt-button { + display: -webkit-inline-box; + display: inline-flex; + outline: 0; +} +:host { + display: -webkit-inline-box; + display: inline-flex; +} +.c-bolt-button { + padding: 0; + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + outline: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + font-weight: 600; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + position: relative; + -webkit-transform: translateZ(0); + transform: translateZ(0); + text-decoration: none; + vertical-align: middle; + cursor: pointer; + border-radius: 3px; + border-width: 1px; + border-style: solid; + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08); + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) + ); + will-change: box-shadow; +} +.js-fonts-loaded .c-bolt-button { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); +} +.c-bolt-button:before { + content: \\"\\"; + display: block; + opacity: 0.2; + position: absolute; + top: 0; + left: 0; + z-index: -5; + width: 100%; + height: 100%; + pointer-events: none; + border-radius: 3px; + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 2px 1px rgba(6, 10, 36, 0.08) + ); + will-change: box-shadow; +} +.c-bolt-button.is-focus:not(.is-hover):not(.is-disabled), +.c-bolt-button:focus:not(:hover):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + box-shadow: 0 -1px 2px rgba(var(--bolt-theme-background), 1), + 0 1px 2px rgba(var(--bolt-theme-background), 1), 0 0 5px #3b99fc, + 0 -1px 0.65rem #3b99fc, 0 1px 0.65rem #3b99fc; +} +.c-bolt-button--primary { + color: rgba(var(--bolt-theme-text-on-primary), 1); + border-color: rgba(var(--bolt-theme-primary), 1); + background-color: rgba(var(--bolt-theme-primary), 1); +} +.c-bolt-button--primary.is-hover, +.c-bolt-button--primary:hover { + color: rgba(var(--bolt-theme-text-on-primary-lighten-15), 1); + border-color: rgba(var(--bolt-theme-primary-lighten-15), 1); + background-color: rgba(var(--bolt-theme-primary-lighten-15), 1); + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16); +} +.c-bolt-button--primary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--primary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + color: rgba(var(--bolt-theme-text-on-primary-darken-15), 1); + border-color: rgba(var(--bolt-theme-primary-darken-15), 1); + background-color: rgba(var(--bolt-theme-primary-darken-15), 1); +} +.c-bolt-button--primary.is-active, +.c-bolt-button--primary:active { + color: rgba(var(--bolt-theme-text-on-primary-darken-25), 1); + border-color: rgba(var(--bolt-theme-primary-darken-25), 1); + background-color: rgba(var(--bolt-theme-primary-darken-25), 1); + -webkit-transform: translate3d(0, 1px, 0); + transform: translate3d(0, 1px, 0); +} +.c-bolt-button--secondary { + color: rgba(var(--bolt-theme-text-on-secondary), 1); + border-color: rgba(var(--bolt-theme-secondary), 1); + background-color: rgba(var(--bolt-theme-secondary), 1); +} +.c-bolt-button--secondary.is-hover, +.c-bolt-button--secondary:hover { + color: rgba(var(--bolt-theme-text-on-secondary-lighten-5), 1); + border-color: rgba(var(--bolt-theme-secondary-lighten-5), 1); + background-color: rgba(var(--bolt-theme-secondary-lighten-5), 1); + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16); +} +.c-bolt-button--secondary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--secondary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + color: rgba(var(--bolt-theme-text-on-secondary-darken-3), 1); + border-color: rgba(var(--bolt-theme-secondary-darken-3), 1); + background-color: rgba(var(--bolt-theme-secondary-darken-3), 1); +} +.c-bolt-button--secondary.is-active, +.c-bolt-button--secondary:active { + color: rgba(var(--bolt-theme-text-on-secondary-darken-10), 1); + border-color: rgba(var(--bolt-theme-secondary-darken-10), 1); + background-color: rgba(var(--bolt-theme-secondary-darken-10), 1); + -webkit-transform: translate3d(0, 1px, 0); + transform: translate3d(0, 1px, 0); +} +.c-bolt-button--text { + opacity: 1; + color: rgba(var(--bolt-theme-headline-link), 1); + text-decoration: none; + border-color: transparent; +} +.c-bolt-button--text, +.c-bolt-button--text.c-bolt-button--disabled, +.c-bolt-button--text[disabled] { + background-color: transparent; +} +.c-bolt-button--text, +.c-bolt-button--text:before { + box-shadow: none; +} +.c-bolt-button--text.is-hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--text:hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + opacity: 0.8; +} +.c-bolt-button--text.is-active, +.c-bolt-button--text.is-focus.is-active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--text:active, +.c-bolt-button--text:focus:active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + opacity: 0.6; +} +.c-bolt-button--disabled, +.c-bolt-button[disabled], +[aria-disabled=\\"true\\"] .c-bolt-button { + cursor: not-allowed; +} +.c-bolt-button--disabled, +.c-bolt-button--disabled.is-active, +.c-bolt-button--disabled.is-hover, +.c-bolt-button--disabled:active, +.c-bolt-button--disabled:hover, +.c-bolt-button--disabled:visited, +.c-bolt-button[disabled], +.c-bolt-button[disabled].is-active, +.c-bolt-button[disabled].is-hover, +.c-bolt-button[disabled]:active, +.c-bolt-button[disabled]:hover, +.c-bolt-button[disabled]:visited, +[aria-disabled=\\"true\\"] .c-bolt-button, +[aria-disabled=\\"true\\"] .c-bolt-button.is-active, +[aria-disabled=\\"true\\"] .c-bolt-button.is-hover, +[aria-disabled=\\"true\\"] .c-bolt-button:active, +[aria-disabled=\\"true\\"] .c-bolt-button:hover, +[aria-disabled=\\"true\\"] .c-bolt-button:visited { + color: rgba(var(--bolt-theme-text-disabled), 1); +} +.c-bolt-button--disabled:not(.c-bolt-button--text), +.c-bolt-button--disabled:not(.c-bolt-button--text).is-active, +.c-bolt-button--disabled:not(.c-bolt-button--text).is-hover, +.c-bolt-button--disabled:not(.c-bolt-button--text):active, +.c-bolt-button--disabled:not(.c-bolt-button--text):hover, +.c-bolt-button--disabled:not(.c-bolt-button--text):visited, +.c-bolt-button[disabled]:not(.c-bolt-button--text), +.c-bolt-button[disabled]:not(.c-bolt-button--text).is-active, +.c-bolt-button[disabled]:not(.c-bolt-button--text).is-hover, +.c-bolt-button[disabled]:not(.c-bolt-button--text):active, +.c-bolt-button[disabled]:not(.c-bolt-button--text):hover, +.c-bolt-button[disabled]:not(.c-bolt-button--text):visited, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text), +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text).is-active, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text).is-hover, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):active, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):hover, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):visited { + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08); + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + opacity: 1; + -webkit-transform: none; + transform: none; + border-color: rgba(var(--bolt-theme-disabled), 1); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) + ); + background-color: rgba(var(--bolt-theme-disabled), 1); + will-change: box-shadow; +} +.c-bolt-button--disabled.is-active:before, +.c-bolt-button--disabled.is-hover:before, +.c-bolt-button--disabled:active:before, +.c-bolt-button--disabled:before, +.c-bolt-button--disabled:hover:before, +.c-bolt-button[disabled].is-active:before, +.c-bolt-button[disabled].is-hover:before, +.c-bolt-button[disabled]:active:before, +.c-bolt-button[disabled]:before, +.c-bolt-button[disabled]:hover:before, +[aria-disabled=\\"true\\"] .c-bolt-button.is-active:before, +[aria-disabled=\\"true\\"] .c-bolt-button.is-hover:before, +[aria-disabled=\\"true\\"] .c-bolt-button:active:before, +[aria-disabled=\\"true\\"] .c-bolt-button:before, +[aria-disabled=\\"true\\"] .c-bolt-button:hover:before { + display: none; +} +.c-bolt-button--uppercase { + text-transform: uppercase; +} +.c-bolt-button--lowercase { + text-transform: lowercase; +} +.c-bolt-button--capitalize { + text-transform: capitalize; +} +.c-bolt-button--medium { + padding: 0.577rem 1.4rem; + font-size: 0.8rem; + line-height: 1.595; +} +.c-bolt-button--medium.c-bolt-button--icon-only { + width: 2.431rem; + min-height: 2.431rem; +} +.c-bolt-button--xsmall { + padding: 0.206rem 0.5rem; + font-size: 0.8rem; + line-height: 1.595; +} +.c-bolt-button--xsmall.c-bolt-button--icon-only { + width: 1.688rem; + min-height: 1.688rem; +} +.c-bolt-button--small { + padding: 0.289rem 0.7rem; + font-size: 0.8rem; + line-height: 1.595; +} +.c-bolt-button--small.c-bolt-button--icon-only { + width: 1.853rem; + min-height: 1.853rem; +} +.c-bolt-button--large { + padding: 0.577rem 1.4rem; + font-size: 1rem; + line-height: 1.815; +} +.c-bolt-button--large.c-bolt-button--icon-only { + width: 2.97rem; + min-height: 2.97rem; +} +.c-bolt-button--xlarge { + padding: 1.155rem 2.8rem; + font-size: 1.125rem; + line-height: 1.595; +} +.c-bolt-button--xlarge.c-bolt-button--icon-only { + width: 4.104rem; + min-height: 4.104rem; +} +.c-bolt-button--icon-only { + padding: 0; +} +.c-bolt-button--icon-only .c-bolt-button__icon, +.c-bolt-button--icon-only .c-bolt-button__item { + margin: 0; +} +.c-bolt-button--icon-only .c-bolt-button__item { + opacity: 0; + width: 0; + overflow: hidden; + color: transparent; + text-indent: -99999em; + white-space: nowrap; +} +.c-bolt-button--icon-only .c-bolt-button__icon-sizer { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); +} +.c-bolt-button--icon-only.c-bolt-button--xsmall .c-bolt-button__icon-sizer { + font-size: 1em; +} +.c-bolt-button--icon-only.c-bolt-button--small .c-bolt-button__icon-sizer { + font-size: 1.25em; +} +.c-bolt-button--icon-only.c-bolt-button--medium .c-bolt-button__icon-sizer { + font-size: 1.5em; +} +.c-bolt-button--icon-only.c-bolt-button--large .c-bolt-button__icon-sizer { + font-size: 1.75em; +} +.c-bolt-button--icon-only.c-bolt-button--xlarge .c-bolt-button__icon-sizer { + font-size: 2em; +} +.c-bolt-button--full, +bolt-button[width=\\"full\\"] { + width: 100%; +} +:host([width=\\"full\\"]) { + width: 100%; +} +@media (max-width: 37.499em) { + .c-bolt-button--full\\\\@small, + bolt-button[width=\\"full@small\\"] { + width: 100%; + } + :host([width=\\"full@small\\"]) { + width: 100%; + } +} +.c-bolt-button--border-radius-regular, +.c-bolt-button--border-radius-regular:before, +bolt-button[border-radius=\\"regular\\"] { + border-radius: 3px; +} +.c-bolt-button--border-radius-full, +.c-bolt-button--border-radius-full:before, +bolt-button[border-radius=\\"full\\"] { + border-radius: 50em; +} +.c-bolt-button__icon.is-empty { + display: none; +} +.c-bolt-button__icon:not(.is-empty) { + display: -webkit-box; + display: flex; +} +.c-bolt-button__item { + display: -webkit-inline-box; + display: inline-flex; + text-align: left; + text-align: start; +} +.c-bolt-button__icon:not(.is-empty) .c-bolt-button__icon-sizer { + display: -webkit-box; + display: flex; +} +.c-bolt-button:not(.c-bolt-button--icon-only) + .c-bolt-button__icon:not(.is-empty) + + .c-bolt-button__item, +.c-bolt-button:not(.c-bolt-button--icon-only) + .c-bolt-button__item + + .c-bolt-button__icon:not(.is-empty) { + margin-left: 0.25rem; +} +.c-bolt-button--center { + -webkit-box-pack: center; + justify-content: center; +} +.c-bolt-button--start { + -webkit-box-pack: start; + justify-content: flex-start; +} +.c-bolt-button--end { + -webkit-box-pack: end; + justify-content: flex-end; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 400; + src: url(/build/fonts/opensans-regular.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-regular.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 400; + src: url(/build/fonts/opensans-italic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-italic.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 600; + src: url(/build/fonts/opensans-semibold.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-semibold.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 600; + src: url(/build/fonts/opensans-semibolditalic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-semibolditalic.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 800; + src: url(/build/fonts/opensans-extrabold.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-extrabold.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 800; + src: url(/build/fonts/opensans-extrabolditalic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-extrabolditalic.woff) format(\\"woff\\"); + font-display: swap; +} +*, +:after, +:before { + -webkit-font-feature-settings: \\"kern\\"; + font-feature-settings: \\"kern\\"; + -webkit-font-kerning: normal; + font-kerning: normal; + box-sizing: border-box; + -webkit-tap-highlight-color: transparent; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +html { + line-height: 1.15; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +main, +menu, +nav, +section { + display: block; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +a { + background-color: transparent; + -webkit-text-decoration-skip: objects; + color: inherit; + text-decoration: none; +} +abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} +b, +strong { + font-weight: bolder; +} +dfn { + font-style: italic; +} +mark { + background-color: #ff0; + color: #000; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +audio, +canvas, +video { + display: inline-block; +} +audio:not([controls]) { + display: none; + height: 0; +} +img { + border-style: none; + max-width: 100%; +} +svg:not(:root) { + overflow: hidden; +} +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; + font-size: 100%; + line-height: 1.15; + margin: 0; +} +button, +input { + overflow: visible; +} +button, +select { + text-transform: none; +} +[type=\\"reset\\"], +[type=\\"submit\\"], +button, +html [type=\\"button\\"] { + -webkit-appearance: button; +} +[type=\\"button\\"]::-moz-focus-inner, +[type=\\"reset\\"]::-moz-focus-inner, +[type=\\"submit\\"]::-moz-focus-inner, +button::-moz-focus-inner { + border-style: none; + padding: 0; +} +[type=\\"button\\"]:-moz-focusring, +[type=\\"reset\\"]:-moz-focusring, +[type=\\"submit\\"]:-moz-focusring, +button:-moz-focusring { + outline: 1px dotted ButtonText; +} +[type=\\"checkbox\\"], +[type=\\"radio\\"] { + box-sizing: border-box; + padding: 0; +} +[type=\\"number\\"]::-webkit-inner-spin-button, +[type=\\"number\\"]::-webkit-outer-spin-button { + height: auto; +} +[type=\\"search\\"] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +[type=\\"search\\"]::-webkit-search-cancel-button, +[type=\\"search\\"]::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} +legend { + box-sizing: border-box; + display: table; + max-width: 100%; + color: inherit; + white-space: normal; +} +progress { + display: inline-block; + vertical-align: baseline; +} +textarea { + overflow: auto; +} +summary { + display: list-item; +} +[hidden], +template { + display: none; +} +address, +blockquote, +body, +dd, +details, +dl, +fieldset, +figure, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +legend, +ol, +p, +pre, +summary, +table, +ul { + margin: 0; + padding: 0; +} +::-moz-selection { + text-shadow: none; + background-color: #abb3f2; +} +::selection { + text-shadow: none; + background-color: #abb3f2; +} +li > ol, +li > ul { + margin-bottom: 0; +} +table { + width: 100%; + border-spacing: 0; + border-collapse: collapse; +} +fieldset { + min-width: 0; + border: 0; +} +address, +blockquote, +details, +dl, +fieldset, +hr, +legend, +ol, +p, +pre, +summary, +table, +ul { + margin-bottom: 1.155rem; +} +dd, +ol, +ul { + margin-left: 1.4rem; +} +code, +pre { + white-space: -moz-pre-wrap; + white-space: -o-pre-wrap; + white-space: pre-wrap; + word-spacing: normal; + word-break: normal; + word-wrap: break-word; + color: rgba(var(--bolt-theme-text), 1); + text-align: left; + border-radius: 3px; +} +pre { + padding: 0.289rem 0.7rem; + overflow-y: auto; + overflow-x: auto; + display: block; + background-color: rgba(84, 93, 166, 0.08); +} +code { + margin: 0; + padding: 2px 0.25rem 2px 0.3rem; + font-family: monospace, monospace; + font-family: var(--bolt-font-family-code); + font-weight: 400; + font-size: 0.9rem; + line-height: 1.661; + display: inline; + letter-spacing: 0.05rem; + background-color: rgba(84, 93, 166, 0.08); +} +.js-fonts-loaded code { + font-family: monospace, monospace; + font-family: var(--bolt-font-family-code); +} +pre code { + padding: 0; + display: block; + background-color: transparent; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin-bottom: 0.412rem; + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-heading); + font-size: 1.125rem; + line-height: 1.595; + font-weight: 700; +} +.js-fonts-loaded h1, +.js-fonts-loaded h2, +.js-fonts-loaded h3, +.js-fonts-loaded h4, +.js-fonts-loaded h5, +.js-fonts-loaded h6 { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-heading); +} +h1:last-child, +h2:last-child, +h3:last-child, +h4:last-child, +h5:last-child, +h6:last-child { + margin-bottom: 0; +} +hr { + box-sizing: content-box; + height: 0; + overflow: visible; + opacity: 0.2; + width: 100%; + border-top-color: var(--bolt-theme-border, currentColor); + margin-top: 1.155rem; + margin-bottom: 1.155rem; +} +a:not([class]) { + color: #545da6; + text-decoration: underline; +} +.t-bolt-light a:not([class]), +.t-bolt-xlight a:not([class]) { + color: #545da6; +} +.t-bolt-dark a:not([class]), +.t-bolt-medium a:not([class]), +.t-bolt-xdark a:not([class]) { + color: #fff; +} +details:hover { + cursor: pointer; +} +html { + font-size: 14px; + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); + --bolt-font-family-body: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + --bolt-font-family-bodySubset: -apple-system, BlinkMacSystemFont, + ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, + YuGothic, Yu Gothic, メイリオ, Meiryo, MS ゴシック, MS Gothic, + HiraKakuProN-W3, TakaoExゴシック, TakaoExGothic, MotoyaLCedar, + Droid Sans Japanese, sans-serif; + --bolt-font-family-heading: -apple-system, BlinkMacSystemFont, + ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, + YuGothic, Yu Gothic, メイリオ, Meiryo, MS ゴシック, MS Gothic, + HiraKakuProN-W3, TakaoExゴシック, TakaoExGothic, MotoyaLCedar, + Droid Sans Japanese, sans-serif; + --bolt-font-family-code: monospace, monospace; +} +@media (min-width: 320px) { + html { + font-size: calc(1.25vw + 10px); + } +} +@media (min-width: 400px) { + html { + font-size: calc(0.1vw + 14.6px); + } +} +@media (min-width: 1400px) { + html { + font-size: calc(0.385vw + 10.615px); + } +} +@media (min-width: 1920px) { + html { + font-size: 18px; + } +} +html.js-fonts-loaded { + --bolt-font-family-body: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + --bolt-font-family-bodySubset: -apple-system, BlinkMacSystemFont, + ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, + YuGothic, Yu Gothic, メイリオ, Meiryo, MS ゴシック, MS Gothic, + HiraKakuProN-W3, TakaoExゴシック, TakaoExGothic, MotoyaLCedar, + Droid Sans Japanese, sans-serif; + --bolt-font-family-heading: -apple-system, BlinkMacSystemFont, + ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, + YuGothic, Yu Gothic, メイリオ, Meiryo, MS ゴシック, MS Gothic, + HiraKakuProN-W3, TakaoExゴシック, TakaoExGothic, MotoyaLCedar, + Droid Sans Japanese, sans-serif; + --bolt-font-family-code: monospace, monospace; + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; +} +body { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); + font-size: 1rem; + line-height: 1.815; + width: 100%; + margin: 0; + color: #060923; +} +.js-fonts-loaded body { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); +} +p:last-child { + margin-bottom: 1px; +} +small { + font-size: 0.8rem; + line-height: 1.595; +} +tfoot, +thead { + white-space: nowrap; +} +td, +th { + font-size: 0.9rem; + line-height: 1.661; +} +tfoot td, +thead th { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-heading); + font-weight: 700; +} +.js-fonts-loaded tfoot td, +.js-fonts-loaded thead th { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-heading); +} +td { + vertical-align: top; +} +.o-bolt-bare-list, +bolt-bare-list > * { + margin: 0; + padding: 0; + list-style: none; +} +.o-bolt-block, +.o-bolt-block__body { + display: block; +} +.o-bolt-block--flush > .o-bolt-block__image { + margin-bottom: 0; +} +.o-bolt-block--xsmall > .o-bolt-block__image { + margin-bottom: 0.412rem; +} +.o-bolt-block--small > .o-bolt-block__image { + margin-bottom: 0.577rem; +} +.o-bolt-block--medium > .o-bolt-block__image { + margin-bottom: 1.155rem; +} +.o-bolt-block--large > .o-bolt-block__image { + margin-bottom: 2.31rem; +} +.o-bolt-block--left { + text-align: left; +} +.o-bolt-block--center { + text-align: center; +} +.o-bolt-block--right { + text-align: right; +} +.o-bolt-crop { + display: block; + position: relative; + overflow: hidden; +} +.o-bolt-crop__content { + position: absolute; + top: 0; + left: 0; + min-width: 100%; + max-width: none; + min-height: 100%; +} +.o-bolt-crop--right > .o-bolt-crop__content { + right: 0; + left: auto; +} +.o-bolt-crop--bottom > .o-bolt-crop__content { + top: auto; + bottom: 0; +} +.o-bolt-crop--center > .o-bolt-crop__content { + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.o-bolt-crop--1\\\\:1 { + padding-bottom: 100%; +} +.o-bolt-crop--4\\\\:3 { + padding-bottom: 75%; +} +.o-bolt-crop--3\\\\:4 { + padding-bottom: 133.333%; +} +.o-bolt-crop--16\\\\:9 { + padding-bottom: 56.25%; +} +.o-bolt-flag { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; +} +.o-bolt-flag:not(:last-child) { + margin-bottom: 1.155rem; +} +.o-bolt-flag__body { + flex-basis: auto; + -webkit-box-flex: 1; + flex-grow: 1; + flex-shrink: 1; + width: 100%; +} +.o-bolt-flag--rev { + direction: rtl; +} +.o-bolt-flag--rev > .o-bolt-flag__body { + direction: ltr; +} +.o-bolt-flag--top { + -webkit-box-align: start; + align-items: flex-start; + vertical-align: top; +} +.o-bolt-flag--middle { + -webkit-box-align: center; + align-items: center; + vertical-align: middle; +} +.o-bolt-flag--bottom { + -webkit-box-align: end; + align-items: flex-end; + vertical-align: bottom; +} +.o-bolt-flag--small > .o-bolt-flag__figure { + margin-right: 0.7rem; +} +.o-bolt-flag--medium > .o-bolt-flag__figure { + margin-right: 1.4rem; +} +.o-bolt-grid { + -webkit-box-flex: 1; + flex: 1 1 auto; + margin: 0 0 0 -1.4rem; + padding: 0; + list-style: none; + font-size: 0; +} +.o-bolt-grid__cell { + display: inline-block; + padding-left: 1.4rem; + vertical-align: top; + font-size: 1rem; +} +.o-bolt-grid--rev { + direction: rtl; +} +.o-bolt-grid--rev > .o-bolt-grid__cell { + direction: ltr; +} +.o-bolt-grid--full { + margin-left: 0; +} +.o-bolt-grid--full > .o-bolt-grid__cell { + padding-left: 0; +} +.o-bolt-grid--center { + -webkit-box-pack: center; + justify-content: center; + text-align: center; +} +.o-bolt-grid--center > .o-bolt-grid__cell { + text-align: left; +} +.o-bolt-grid--middle.o-bolt-grid--flex { + -webkit-box-align: center; + align-items: center; +} +.o-bolt-grid--middle > .o-bolt-grid__cell { + vertical-align: middle; +} +.o-bolt-grid--bottom > .o-bolt-grid__cell { + vertical-align: bottom; +} +.o-bolt-grid--right { + -webkit-box-pack: end; + justify-content: flex-end; + text-align: right; +} +.o-bolt-grid--right > .o-bolt-grid__cell { + text-align: left; +} +.o-bolt-grid__cell--middle { + -ms-grid-row-align: center; + align-self: center; + vertical-align: middle; +} +.o-bolt-grid__cell--top { + align-self: flex-start; + vertical-align: top; +} +.o-bolt-grid__cell--bottom { + align-self: flex-end; + vertical-align: bottom; +} +.o-bolt-grid--small { + margin-left: -0.7rem; +} +.o-bolt-grid--small > .o-bolt-grid__cell { + padding-left: 0.7rem; +} +.o-bolt-grid--large { + margin-left: -2.8rem; +} +.o-bolt-grid--large > .o-bolt-grid__cell { + padding-left: 2.8rem; +} +.o-bolt-grid--xlarge { + margin-left: -2.8rem; +} +.o-bolt-grid--xlarge > .o-bolt-grid__cell { + padding-left: 2.8rem; +} +.o-bolt-grid--flex { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; +} +.o-bolt-grid--matrix { + margin-bottom: -1.155rem; +} +.o-bolt-grid--matrix > .o-bolt-grid__cell { + padding-bottom: 1.155rem; +} +bolt-inline-list { + display: block; +} +bolt-inline-list:not(:last-child) { + margin-bottom: 0.577rem; +} +.o-bolt-inline-list { + display: block; + margin: 0; + padding: 0; + list-style: none; + letter-spacing: -0.35em; +} +.o-bolt-inline-list__item { + display: inline-block; + letter-spacing: normal; +} +.o-bolt-inline-list--delimited + > .o-bolt-inline-list__item:not(:last-child):after { + content: \\"|\\"; + color: currentColor; +} +.o-bolt-inline-list--xsmall.o-bolt-inline-list--matrix { + margin-bottom: -0.412rem; +} +.o-bolt-inline-list--xsmall.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item { + margin-bottom: 0.412rem; +} +.o-bolt-inline-list--xsmall > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 0.5rem; +} +.o-bolt-inline-list--xsmall > .o-bolt-inline-list__item:not(:last-child):after { + margin-left: 0.5rem; +} +.o-bolt-inline-list--small.o-bolt-inline-list--matrix { + margin-bottom: -0.577rem; +} +.o-bolt-inline-list--small.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item { + margin-bottom: 0.577rem; +} +.o-bolt-inline-list--small > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 0.7rem; +} +.o-bolt-inline-list--small > .o-bolt-inline-list__item:not(:last-child):after { + margin-left: 0.7rem; +} +.o-bolt-inline-list--medium.o-bolt-inline-list--matrix { + margin-bottom: -1.155rem; +} +.o-bolt-inline-list--medium.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item:after { + margin-bottom: 1.155rem; +} +.o-bolt-inline-list--medium > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 1.4rem; +} +.o-bolt-inline-list--medium > .o-bolt-inline-list__item:after { + margin-left: 1.4rem; +} +.o-bolt-island--small { + padding: 0.577rem 0.7rem; +} +.o-bolt-island, +.o-bolt-island--medium { + padding: 1.155rem 1.4rem; +} +.o-bolt-island--large { + padding: 2.31rem 2.8rem; +} +.o-bolt-ui-list { + margin: 0; + padding: 0; + list-style: none; +} +.o-bolt-ui-list__item { + position: relative; +} +.o-bolt-ui-list__item:not(:last-child) { + border-bottom-color: rgba(var(--bolt-theme-border), 0.2); + border-bottom-style: solid; + border-bottom-width: 1px; +} +.o-bolt-ui-list__item > :last-child { + margin-bottom: 0; +} +.o-bolt-ui-list--medium > .o-bolt-ui-list__item, +.o-bolt-ui-list > .o-bolt-ui-list__item { + padding: 1.155rem 0; +} +.o-bolt-ui-list--collapsed > .o-bolt-ui-list__item { + padding: 0; +} +.o-bolt-ui-list--xxsmall > .o-bolt-ui-list__item { + padding: 0.206rem 0; +} +.o-bolt-ui-list--xsmall > .o-bolt-ui-list__item { + padding: 0.412rem 0; +} +.o-bolt-ui-list--borderless > .o-bolt-ui-list__item { + border-bottom-width: 0; +} +.o-bolt-ui-list--small > .o-bolt-ui-list__item { + padding: 0.577rem 0; +} +.o-bolt-ui-list--medium > .o-bolt-ui-list__item { + padding: 1.155rem 0; +} +.o-bolt-ui-list--large > .o-bolt-ui-list__item { + padding: 2.31rem 0; +} +.o-bolt-wrapper { + padding-left: 1.4rem; + padding-right: 1.4rem; + margin-left: auto; + margin-right: auto; + display: block; +} +@media (min-width: 50em) { + .o-bolt-wrapper { + padding-left: 2.8rem; + padding-right: 2.8rem; + } +} +.o-bolt-wrapper, +.o-bolt-wrapper--xxlarge { + max-width: 1400px; +} +.o-bolt-wrapper--medium { + max-width: 800px; + padding: 0; +} +.t-bolt-xlight, +:root { + --bolt-theme-background: 255, 255, 255; + --bolt-theme-border: 22, 26, 60; + --bolt-theme-contrast-filter: none; + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 84, 93, 166; + --bolt-theme-headline: 31, 38, 86; + --bolt-theme-link: 84, 93, 166; + --bolt-theme-primary: 84, 93, 166; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 21, 22, 25; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 255, 255, 255; + --bolt-theme-primary-lighten-5: 93, 101, 170; + --bolt-theme-text-on-primary-lighten-5: 255, 255, 255; + --bolt-theme-primary-lighten-10: 101, 109, 175; + --bolt-theme-text-on-primary-lighten-10: 255, 255, 255; + --bolt-theme-primary-lighten-15: 110, 117, 179; + --bolt-theme-text-on-primary-lighten-15: 255, 255, 255; + --bolt-theme-primary-lighten-20: 118, 125, 184; + --bolt-theme-text-on-primary-lighten-20: 255, 255, 255; + --bolt-theme-primary-lighten-25: 127, 134, 188; + --bolt-theme-text-on-primary-lighten-25: 255, 255, 255; + --bolt-theme-primary-darken-3: 82, 91, 162; + --bolt-theme-text-on-primary-darken-3: 255, 255, 255; + --bolt-theme-primary-darken-5: 81, 89, 159; + --bolt-theme-text-on-primary-darken-5: 255, 255, 255; + --bolt-theme-primary-darken-10: 78, 86, 152; + --bolt-theme-text-on-primary-darken-10: 255, 255, 255; + --bolt-theme-primary-darken-15: 75, 82, 145; + --bolt-theme-text-on-primary-darken-15: 255, 255, 255; + --bolt-theme-primary-darken-20: 71, 79, 138; + --bolt-theme-text-on-primary-darken-20: 255, 255, 255; + --bolt-theme-primary-darken-25: 68, 75, 131; + --bolt-theme-text-on-primary-darken-25: 255, 255, 255; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #151619; + color: rgba(var(--bolt-theme-text), 1); + background-color: #fff; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-light { + --bolt-theme-background: 246, 246, 249; + --bolt-theme-border: 22, 26, 60; + --bolt-theme-contrast-filter: none; + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 84, 93, 166; + --bolt-theme-headline: 31, 38, 86; + --bolt-theme-link: 84, 93, 166; + --bolt-theme-primary: 84, 93, 166; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 21, 22, 25; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 255, 255, 255; + --bolt-theme-primary-lighten-5: 93, 101, 170; + --bolt-theme-text-on-primary-lighten-5: 255, 255, 255; + --bolt-theme-primary-lighten-10: 101, 109, 175; + --bolt-theme-text-on-primary-lighten-10: 255, 255, 255; + --bolt-theme-primary-lighten-15: 110, 117, 179; + --bolt-theme-text-on-primary-lighten-15: 255, 255, 255; + --bolt-theme-primary-lighten-20: 118, 125, 184; + --bolt-theme-text-on-primary-lighten-20: 255, 255, 255; + --bolt-theme-primary-lighten-25: 127, 134, 188; + --bolt-theme-text-on-primary-lighten-25: 255, 255, 255; + --bolt-theme-primary-darken-3: 82, 91, 162; + --bolt-theme-text-on-primary-darken-3: 255, 255, 255; + --bolt-theme-primary-darken-5: 81, 89, 159; + --bolt-theme-text-on-primary-darken-5: 255, 255, 255; + --bolt-theme-primary-darken-10: 78, 86, 152; + --bolt-theme-text-on-primary-darken-10: 255, 255, 255; + --bolt-theme-primary-darken-15: 75, 82, 145; + --bolt-theme-text-on-primary-darken-15: 255, 255, 255; + --bolt-theme-primary-darken-20: 71, 79, 138; + --bolt-theme-text-on-primary-darken-20: 255, 255, 255; + --bolt-theme-primary-darken-25: 68, 75, 131; + --bolt-theme-text-on-primary-darken-25: 255, 255, 255; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #151619; + color: rgba(var(--bolt-theme-text), 1); + background-color: #f6f6f9; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-dark { + --bolt-theme-background: 31, 38, 86; + --bolt-theme-border: 255, 255, 255; + --bolt-theme-contrast-filter: grayscale(100%) invert(100%) brightness(150%); + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 255, 255, 255; + --bolt-theme-headline: 255, 255, 255; + --bolt-theme-link: 255, 255, 255; + --bolt-theme-primary: 255, 204, 77; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 255, 255, 255; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 21, 22, 25; + --bolt-theme-primary-lighten-5: 255, 207, 86; + --bolt-theme-text-on-primary-lighten-5: 21, 22, 25; + --bolt-theme-primary-lighten-10: 255, 209, 95; + --bolt-theme-text-on-primary-lighten-10: 21, 22, 25; + --bolt-theme-primary-lighten-15: 255, 212, 104; + --bolt-theme-text-on-primary-lighten-15: 21, 22, 25; + --bolt-theme-primary-lighten-20: 255, 214, 113; + --bolt-theme-text-on-primary-lighten-20: 21, 22, 25; + --bolt-theme-primary-lighten-25: 255, 217, 122; + --bolt-theme-text-on-primary-lighten-25: 21, 22, 25; + --bolt-theme-primary-darken-3: 248, 199, 75; + --bolt-theme-text-on-primary-darken-3: 21, 22, 25; + --bolt-theme-primary-darken-5: 243, 195, 74; + --bolt-theme-text-on-primary-darken-5: 21, 22, 25; + --bolt-theme-primary-darken-10: 232, 186, 72; + --bolt-theme-text-on-primary-darken-10: 21, 22, 25; + --bolt-theme-primary-darken-15: 220, 177, 69; + --bolt-theme-text-on-primary-darken-15: 21, 22, 25; + --bolt-theme-primary-darken-20: 208, 168, 67; + --bolt-theme-text-on-primary-darken-20: 21, 22, 25; + --bolt-theme-primary-darken-25: 197, 159, 64; + --bolt-theme-text-on-primary-darken-25: 21, 22, 25; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #fff; + color: rgba(var(--bolt-theme-text), 1); + background-color: #1f2656; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-xdark { + --bolt-theme-background: 22, 26, 60; + --bolt-theme-border: 255, 255, 255; + --bolt-theme-contrast-filter: grayscale(100%) invert(100%) brightness(150%); + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 255, 255, 255; + --bolt-theme-headline: 255, 255, 255; + --bolt-theme-link: 255, 255, 255; + --bolt-theme-primary: 255, 204, 77; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 255, 255, 255; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 21, 22, 25; + --bolt-theme-primary-lighten-5: 255, 207, 86; + --bolt-theme-text-on-primary-lighten-5: 21, 22, 25; + --bolt-theme-primary-lighten-10: 255, 209, 95; + --bolt-theme-text-on-primary-lighten-10: 21, 22, 25; + --bolt-theme-primary-lighten-15: 255, 212, 104; + --bolt-theme-text-on-primary-lighten-15: 21, 22, 25; + --bolt-theme-primary-lighten-20: 255, 214, 113; + --bolt-theme-text-on-primary-lighten-20: 21, 22, 25; + --bolt-theme-primary-lighten-25: 255, 217, 122; + --bolt-theme-text-on-primary-lighten-25: 21, 22, 25; + --bolt-theme-primary-darken-3: 248, 199, 75; + --bolt-theme-text-on-primary-darken-3: 21, 22, 25; + --bolt-theme-primary-darken-5: 243, 195, 74; + --bolt-theme-text-on-primary-darken-5: 21, 22, 25; + --bolt-theme-primary-darken-10: 232, 186, 72; + --bolt-theme-text-on-primary-darken-10: 21, 22, 25; + --bolt-theme-primary-darken-15: 220, 177, 69; + --bolt-theme-text-on-primary-darken-15: 21, 22, 25; + --bolt-theme-primary-darken-20: 208, 168, 67; + --bolt-theme-text-on-primary-darken-20: 21, 22, 25; + --bolt-theme-primary-darken-25: 197, 159, 64; + --bolt-theme-text-on-primary-darken-25: 21, 22, 25; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #fff; + color: rgba(var(--bolt-theme-text), 1); + background-color: #161a3c; + background-color: rgba(var(--bolt-theme-background), 1); +} +.u-bolt-border-radius-small { + border-radius: 3px !important; +} +.u-bolt-border-radius-large { + border-radius: 0.75em !important; +} +.u-bolt-border-radius-full { + border-radius: 100em !important; +} +.u-bolt-clearfix:after, +.u-bolt-clearfix:before { + content: \\" \\" !important; + display: table !important; +} +.u-bolt-clearfix:after { + clear: both !important; +} +.u-bolt-color-indigo-xdark { + color: #060923 !important; +} +.u-bolt-color-indigo-dark { + color: #161a3c !important; +} +.u-bolt-color-indigo { + color: #1f2656 !important; +} +.u-bolt-color-indigo-light { + color: #545da6 !important; +} +.u-bolt-color-indigo-xlight { + color: #abb3f2 !important; +} +.u-bolt-color-yellow-xdark { + color: #664900 !important; +} +.u-bolt-color-yellow-dark { + color: #e8ad17 !important; +} +.u-bolt-color-yellow { + color: #ffcc4d !important; +} +.u-bolt-color-yellow-light { + color: #ffe299 !important; +} +.u-bolt-color-yellow-xlight { + color: #fff1cc !important; +} +.u-bolt-color-teal-xdark { + color: #033 !important; +} +.u-bolt-color-teal-dark { + color: #0a6666 !important; +} +.u-bolt-color-teal { + color: #099 !important; +} +.u-bolt-color-teal-light { + color: #7acdcd !important; +} +.u-bolt-color-teal-xlight { + color: #b7e6e6 !important; +} +.u-bolt-color-orange-xdark { + color: #661a00 !important; +} +.u-bolt-color-orange-dark { + color: #b53b12 !important; +} +.u-bolt-color-orange { + color: #e84b17 !important; +} +.u-bolt-color-orange-light { + color: #ff8c66 !important; +} +.u-bolt-color-orange-xlight { + color: #ffc6b3 !important; +} +.u-bolt-color-gray-xdark { + color: #2e2e33 !important; +} +.u-bolt-color-gray-dark { + color: #5c5d66 !important; +} +.u-bolt-color-gray { + color: #8d8e99 !important; +} +.u-bolt-color-gray-light { + color: #e0e2eb !important; +} +.u-bolt-color-gray-xlight { + color: #f6f6f9 !important; +} +.u-bolt-color-black { + color: #151619 !important; +} +.u-bolt-color-white { + color: #fff !important; +} +.u-bolt-color-blue-dark { + color: #005380 !important; +} +.u-bolt-color-blue { + color: #0074b3 !important; +} +.u-bolt-color-blue-light { + color: #d6f1ff !important; +} +.u-bolt-color-success-dark { + color: #256940 !important; +} +.u-bolt-color-success { + color: #357e38 !important; +} +.u-bolt-color-success-light { + color: #dbf0dc !important; +} +.u-bolt-color-error-dark { + color: #9d2315 !important; +} +.u-bolt-color-error { + color: #b42818 !important; +} +.u-bolt-color-error-light { + color: #fad5d1 !important; +} +.u-bolt-color-warning-dark { + color: #cfb317 !important; +} +.u-bolt-color-warning { + color: #e8cd30 !important; +} +.u-bolt-color-warning-light { + color: #faf4d1 !important; +} +.u-bolt-color-social-facebook { + color: #3a579c !important; +} +.u-bolt-color-social-twitter { + color: #00aceb !important; +} +.u-bolt-color-social-linkedin { + color: #0476b4 !important; +} +.u-bolt-block { + display: block !important; +} +.u-bolt-inline-block { + display: inline-block !important; +} +.u-bolt-inline { + display: inline !important; +} +.u-bolt-table { + display: table !important; +} +.u-bolt-table-row { + display: table-row !important; +} +.u-bolt-table-cell { + display: table-cell !important; +} +.u-bolt-hidden { + display: none !important; +} +.u-bolt-flex { + display: -webkit-box !important; + display: flex !important; +} +.u-bolt-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; +} +.u-bolt-flex-grow { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; +} +.u-bolt-flex-shrink { + flex-shrink: 1 !important; +} +.u-bolt-flex-basis-auto { + flex-basis: auto !important; +} +.u-bolt-height-xxsmall { + height: 0.25rem !important; +} +.u-bolt-height-xsmall { + height: 0.5rem !important; +} +.u-bolt-height-small { + height: 0.7rem !important; +} +.u-bolt-height-medium { + height: 1.4rem !important; +} +.u-bolt-height-large { + height: 2.8rem !important; +} +.u-bolt-height-xlarge { + height: 5.6rem !important; +} +.u-bolt-height-xxlarge { + height: 11.2rem !important; +} +.u-bolt-height-none { + height: 0 !important; +} +.u-bolt-height-auto { + height: auto !important; +} +.u-bolt-height-full { + height: 100% !important; +} +.u-bolt-height-screen { + height: 100vh !important; +} +.u-bolt-min-height-xxsmall { + min-height: 0.25rem !important; +} +.u-bolt-min-height-xsmall { + min-height: 0.5rem !important; +} +.u-bolt-min-height-small { + min-height: 0.7rem !important; +} +.u-bolt-min-height-medium { + min-height: 1.4rem !important; +} +.u-bolt-min-height-large { + min-height: 2.8rem !important; +} +.u-bolt-min-height-xlarge { + min-height: 5.6rem !important; +} +.u-bolt-min-height-xxlarge { + min-height: 11.2rem !important; +} +.u-bolt-min-height-none { + min-height: 0 !important; +} +.u-bolt-min-height-auto { + min-height: auto !important; +} +.u-bolt-min-height-full { + min-height: 100% !important; +} +.u-bolt-min-height-screen { + min-height: 100vh !important; +} +.u-bolt-opacity-0 { + opacity: 0; +} +@media (min-width: 20em) { + .u-bolt-block\\\\@xxsmall { + display: block !important; + } + .u-bolt-inline-block\\\\@xxsmall { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxsmall { + display: inline !important; + } + .u-bolt-table\\\\@xxsmall { + display: table !important; + } + .u-bolt-table-row\\\\@xxsmall { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxsmall { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxsmall { + display: none !important; + } + .u-bolt-flex\\\\@xxsmall { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxsmall { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxsmall { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxsmall { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxsmall { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@xxsmall { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@xxsmall { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@xxsmall { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@xxsmall { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@xxsmall { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxsmall { + height: auto !important; + } + .u-bolt-height-full\\\\@xxsmall { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxsmall { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxsmall { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxsmall { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxsmall { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@xxsmall { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@xxsmall { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxsmall { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxsmall { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@xxsmall { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxsmall { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxsmall { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxsmall { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxsmall { + opacity: 0; + } +} +@media (min-width: 25em) { + .u-bolt-block\\\\@xsmall { + display: block !important; + } + .u-bolt-inline-block\\\\@xsmall { + display: inline-block !important; + } + .u-bolt-inline\\\\@xsmall { + display: inline !important; + } + .u-bolt-table\\\\@xsmall { + display: table !important; + } + .u-bolt-table-row\\\\@xsmall { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xsmall { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xsmall { + display: none !important; + } + .u-bolt-flex\\\\@xsmall { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xsmall { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xsmall { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xsmall { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xsmall { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@xsmall { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@xsmall { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@xsmall { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@xsmall { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@xsmall { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xsmall { + height: auto !important; + } + .u-bolt-height-full\\\\@xsmall { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xsmall { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xsmall { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xsmall { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xsmall { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@xsmall { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@xsmall { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@xsmall { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xsmall { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@xsmall { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xsmall { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xsmall { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xsmall { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xsmall { + opacity: 0; + } +} +@media (min-width: 37.5em) { + .u-bolt-block\\\\@small { + display: block !important; + } + .u-bolt-inline-block\\\\@small { + display: inline-block !important; + } + .u-bolt-inline\\\\@small { + display: inline !important; + } + .u-bolt-table\\\\@small { + display: table !important; + } + .u-bolt-table-row\\\\@small { + display: table-row !important; + } + .u-bolt-table-cell\\\\@small { + display: table-cell !important; + } + .u-bolt-hidden\\\\@small { + display: none !important; + } + .u-bolt-flex\\\\@small { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@small { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@small { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@small { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@small { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@small { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@small { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@small { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@small { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@small { + height: 0 !important; + } + .u-bolt-height-auto\\\\@small { + height: auto !important; + } + .u-bolt-height-full\\\\@small { + height: 100% !important; + } + .u-bolt-height-screen\\\\@small { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@small { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@small { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@small { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@small { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@small { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@small { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@small { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@small { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@small { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@small { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@small { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@small { + opacity: 0; + } +} +@media (min-width: 50em) { + .u-bolt-block\\\\@medium { + display: block !important; + } + .u-bolt-inline-block\\\\@medium { + display: inline-block !important; + } + .u-bolt-inline\\\\@medium { + display: inline !important; + } + .u-bolt-table\\\\@medium { + display: table !important; + } + .u-bolt-table-row\\\\@medium { + display: table-row !important; + } + .u-bolt-table-cell\\\\@medium { + display: table-cell !important; + } + .u-bolt-hidden\\\\@medium { + display: none !important; + } + .u-bolt-flex\\\\@medium { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@medium { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@medium { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@medium { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@medium { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@medium { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@medium { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@medium { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@medium { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@medium { + height: 0 !important; + } + .u-bolt-height-auto\\\\@medium { + height: auto !important; + } + .u-bolt-height-full\\\\@medium { + height: 100% !important; + } + .u-bolt-height-screen\\\\@medium { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@medium { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@medium { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@medium { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@medium { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@medium { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@medium { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@medium { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@medium { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@medium { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@medium { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@medium { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@medium { + opacity: 0; + } +} +@media (min-width: 62.5em) { + .u-bolt-block\\\\@large { + display: block !important; + } + .u-bolt-inline-block\\\\@large { + display: inline-block !important; + } + .u-bolt-inline\\\\@large { + display: inline !important; + } + .u-bolt-table\\\\@large { + display: table !important; + } + .u-bolt-table-row\\\\@large { + display: table-row !important; + } + .u-bolt-table-cell\\\\@large { + display: table-cell !important; + } + .u-bolt-hidden\\\\@large { + display: none !important; + } + .u-bolt-flex\\\\@large { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@large { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@large { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@large { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@large { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@large { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@large { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@large { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@large { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@large { + height: 0 !important; + } + .u-bolt-height-auto\\\\@large { + height: auto !important; + } + .u-bolt-height-full\\\\@large { + height: 100% !important; + } + .u-bolt-height-screen\\\\@large { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@large { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@large { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@large { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@large { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@large { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@large { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@large { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@large { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@large { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@large { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@large { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@large { + opacity: 0; + } +} +@media (min-width: 75em) { + .u-bolt-block\\\\@xlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xlarge { + display: inline !important; + } + .u-bolt-table\\\\@xlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xlarge { + display: none !important; + } + .u-bolt-flex\\\\@xlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xlarge { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@xlarge { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@xlarge { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@xlarge { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@xlarge { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@xlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xlarge { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@xlarge { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@xlarge { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@xlarge { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xlarge { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@xlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xlarge { + opacity: 0; + } +} +@media (min-width: 87.5em) { + .u-bolt-block\\\\@xxlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xxlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxlarge { + display: inline !important; + } + .u-bolt-table\\\\@xxlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xxlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxlarge { + display: none !important; + } + .u-bolt-flex\\\\@xxlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxlarge { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@xxlarge { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@xxlarge { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@xxlarge { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@xxlarge { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@xxlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xxlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxlarge { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@xxlarge { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@xxlarge { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxlarge { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxlarge { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@xxlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxlarge { + opacity: 0; + } +} +@media (min-width: 120em) { + .u-bolt-block\\\\@xxxlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xxxlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxxlarge { + display: inline !important; + } + .u-bolt-table\\\\@xxxlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xxxlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxxlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxxlarge { + display: none !important; + } + .u-bolt-flex\\\\@xxxlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxxlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxxlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxxlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxxlarge { + height: 0.7rem !important; + } + .u-bolt-height-medium\\\\@xxxlarge { + height: 1.4rem !important; + } + .u-bolt-height-large\\\\@xxxlarge { + height: 2.8rem !important; + } + .u-bolt-height-xlarge\\\\@xxxlarge { + height: 5.6rem !important; + } + .u-bolt-height-xxlarge\\\\@xxxlarge { + height: 11.2rem !important; + } + .u-bolt-height-none\\\\@xxxlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxxlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xxxlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxxlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxxlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxxlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxxlarge { + min-height: 0.7rem !important; + } + .u-bolt-min-height-medium\\\\@xxxlarge { + min-height: 1.4rem !important; + } + .u-bolt-min-height-large\\\\@xxxlarge { + min-height: 2.8rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxxlarge { + min-height: 5.6rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxxlarge { + min-height: 11.2rem !important; + } + .u-bolt-min-height-none\\\\@xxxlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxxlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxxlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxxlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxxlarge { + opacity: 0; + } + .u-bolt-opacity-20\\\\@xxxlarge { + opacity: 0.2; + } +} +.u-bolt-opacity-20 { + opacity: 0.2; +} +@media (min-width: 20em) { + .u-bolt-opacity-20\\\\@xxsmall { + opacity: 0.2; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-20\\\\@xsmall { + opacity: 0.2; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-20\\\\@small { + opacity: 0.2; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-20\\\\@medium { + opacity: 0.2; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-20\\\\@large { + opacity: 0.2; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-20\\\\@xlarge { + opacity: 0.2; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-20\\\\@xxlarge { + opacity: 0.2; + } + .u-bolt-opacity-40\\\\@xxlarge { + opacity: 0.4; + } +} +.u-bolt-opacity-40 { + opacity: 0.4; +} +@media (min-width: 20em) { + .u-bolt-opacity-40\\\\@xxsmall { + opacity: 0.4; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-40\\\\@xsmall { + opacity: 0.4; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-40\\\\@small { + opacity: 0.4; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-40\\\\@medium { + opacity: 0.4; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-40\\\\@large { + opacity: 0.4; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-40\\\\@xlarge { + opacity: 0.4; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-40\\\\@xxxlarge { + opacity: 0.4; + } + .u-bolt-opacity-60\\\\@xxxlarge { + opacity: 0.6; + } +} +.u-bolt-opacity-60 { + opacity: 0.6; +} +@media (min-width: 20em) { + .u-bolt-opacity-60\\\\@xxsmall { + opacity: 0.6; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-60\\\\@xsmall { + opacity: 0.6; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-60\\\\@small { + opacity: 0.6; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-60\\\\@medium { + opacity: 0.6; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-60\\\\@large { + opacity: 0.6; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-60\\\\@xlarge { + opacity: 0.6; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-60\\\\@xxlarge { + opacity: 0.6; + } + .u-bolt-opacity-80\\\\@xxlarge { + opacity: 0.8; + } +} +.u-bolt-opacity-80 { + opacity: 0.8; +} +@media (min-width: 20em) { + .u-bolt-opacity-80\\\\@xxsmall { + opacity: 0.8; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-80\\\\@xsmall { + opacity: 0.8; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-80\\\\@small { + opacity: 0.8; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-80\\\\@medium { + opacity: 0.8; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-80\\\\@large { + opacity: 0.8; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-80\\\\@xlarge { + opacity: 0.8; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-80\\\\@xxxlarge { + opacity: 0.8; + } + .u-bolt-opacity-100\\\\@xxxlarge { + opacity: 1; + } +} +.u-bolt-opacity-100 { + opacity: 1; +} +@media (min-width: 20em) { + .u-bolt-opacity-100\\\\@xxsmall { + opacity: 1; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-100\\\\@xsmall { + opacity: 1; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-100\\\\@small { + opacity: 1; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-100\\\\@medium { + opacity: 1; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-100\\\\@large { + opacity: 1; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-100\\\\@xlarge { + opacity: 1; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-100\\\\@xxlarge { + opacity: 1; + } + .u-bolt-opacity-25\\\\@xxlarge { + opacity: 0.2; + } +} +.u-bolt-opacity-25 { + opacity: 0.2; +} +@media (min-width: 20em) { + .u-bolt-opacity-25\\\\@xxsmall { + opacity: 0.2; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-25\\\\@xsmall { + opacity: 0.2; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-25\\\\@small { + opacity: 0.2; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-25\\\\@medium { + opacity: 0.2; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-25\\\\@large { + opacity: 0.2; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-25\\\\@xlarge { + opacity: 0.2; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-25\\\\@xxxlarge { + opacity: 0.2; + } + .u-bolt-opacity-50\\\\@xxxlarge { + opacity: 0.6; + } +} +.u-bolt-opacity-50 { + opacity: 0.6; +} +@media (min-width: 20em) { + .u-bolt-opacity-50\\\\@xxsmall { + opacity: 0.6; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-50\\\\@xsmall { + opacity: 0.6; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-50\\\\@small { + opacity: 0.6; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-50\\\\@medium { + opacity: 0.6; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-50\\\\@large { + opacity: 0.6; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-50\\\\@xlarge { + opacity: 0.6; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-50\\\\@xxlarge { + opacity: 0.6; + } + .u-bolt-opacity-75\\\\@xxlarge { + opacity: 0.8; + } +} +.u-bolt-opacity-75 { + opacity: 0.8; +} +.u-bolt-overflow-hidden { + overflow: hidden !important; +} +.u-bolt-overflow-scroll { + overflow: scroll !important; +} +.u-bolt-overflow-auto { + overflow: auto !important; +} +.u-bolt-shadow--level-10, +.u-bolt-shadow--level-10--hoverable, +.u-bolt-shadow-level-10, +.u-bolt-shadow-level-10-hoverable { + box-shadow: 0 1px 2px 1px rgba(6, 10, 36, 0.08) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-10--hoverable:hover, +.u-bolt-shadow-level-10-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; +} +.u-bolt-shadow--level-20, +.u-bolt-shadow--level-20--hoverable, +.u-bolt-shadow-level-20, +.u-bolt-shadow-level-20-hoverable { + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-20--hoverable:hover, +.u-bolt-shadow-level-20-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16) !important; +} +.u-bolt-shadow--level-30, +.u-bolt-shadow--level-30--hoverable, +.u-bolt-shadow-level-30, +.u-bolt-shadow-level-30-hoverable { + box-shadow: 0 8px 15px 1px rgba(6, 10, 36, 0.1), + 0 18px 24px 1px rgba(6, 10, 36, 0.12) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-30--hoverable:hover, +.u-bolt-shadow-level-30-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 8px 15px 1px rgba(6, 10, 36, 0.1), + 0 24px 36px 1px rgba(6, 10, 36, 0.18), 0 35px 50px 0 rgba(6, 10, 36, 0.25) !important; +} +.u-bolt-shadow--level-40, +.u-bolt-shadow--level-40--hoverable, +.u-bolt-shadow-level-40, +.u-bolt-shadow-level-40-hoverable { + box-shadow: 0 10px 20px 1px rgba(6, 10, 36, 0.1), + 0 24px 36px 1px rgba(6, 10, 36, 0.18) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-40--hoverable:hover, +.u-bolt-shadow-level-40-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 20px 1px rgba(6, 10, 36, 0.1), + 0 36px 49px 1px rgba(6, 10, 36, 0.2), 0 45px 65px 0 rgba(6, 10, 36, 0.3) !important; +} +.u-bolt-shadow--level-50, +.u-bolt-shadow--level-50--hoverable, +.u-bolt-shadow-level-50, +.u-bolt-shadow-level-50-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 40px 48px 1px rgba(6, 10, 36, 0.25) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-50--hoverable:hover, +.u-bolt-shadow-level-50-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 50px 70px 1px rgba(6, 10, 36, 0.2), 0 55px 80px 0 rgba(6, 10, 36, 0.3) !important; +} +.u-bolt-shadow--level-60, +.u-bolt-shadow--level-60--hoverable, +.u-bolt-shadow-level-60, +.u-bolt-shadow-level-60-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 50px 60px 1px rgba(6, 10, 36, 0.4) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-60--hoverable:hover, +.u-bolt-shadow-level-60-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 70px 80px 1px rgba(6, 10, 36, 0.2), 0 80px 120px 0 rgba(6, 10, 36, 0.35) !important; +} +.u-bolt-shadow--level-70, +.u-bolt-shadow--level-70--hoverable, +.u-bolt-shadow-level-70, +.u-bolt-shadow-level-70-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 80px 90px 1px rgba(6, 10, 36, 0.4) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-70--hoverable:hover, +.u-bolt-shadow-level-70-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 110px 130px 1px rgba(6, 10, 36, 0.25), + 0 130px 150px 0 rgba(6, 10, 36, 0.35) !important; +} +.u-bolt-padding-none { + padding: 0 !important; +} +.u-bolt-padding-auto { + padding: auto !important; +} +.u-bolt-padding-xxsmall { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small { + padding: 0.577rem 0.7rem !important; +} +.u-bolt-padding-medium { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-large { + padding: 2.31rem 2.8rem !important; +} +.u-bolt-padding-xlarge { + padding: 4.62rem 5.6rem !important; +} +.u-bolt-padding-xxlarge { + padding: 9.24rem 11.2rem !important; +} +.u-bolt-padding { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-none-squished { + padding: 0 !important; +} +.u-bolt-padding-auto-squished { + padding: auto !important; +} +.u-bolt-padding-xxsmall-squished { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall-squished { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small-squished { + padding: 0.577rem 0.7rem !important; +} +.u-bolt-padding-medium-squished { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-large-squished { + padding: 2.31rem 2.8rem !important; +} +.u-bolt-padding-xlarge-squished { + padding: 4.62rem 5.6rem !important; +} +.u-bolt-padding-xxlarge-squished { + padding: 9.24rem 11.2rem !important; +} +.u-bolt-padding-squished { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-none-stretched { + padding: 0 !important; +} +.u-bolt-padding-auto-stretched { + padding: auto !important; +} +.u-bolt-padding-xxsmall-stretched { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall-stretched { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small-stretched { + padding: 0.577rem 0.7rem !important; +} +.u-bolt-padding-medium-stretched { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-large-stretched { + padding: 2.31rem 2.8rem !important; +} +.u-bolt-padding-xlarge-stretched { + padding: 4.62rem 5.6rem !important; +} +.u-bolt-padding-xxlarge-stretched { + padding: 9.24rem 11.2rem !important; +} +.u-bolt-padding-stretched { + padding: 1.155rem 1.4rem !important; +} +.u-bolt-padding-top-none { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto { + padding-top: auto !important; +} +.u-bolt-padding-top-xxsmall { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small { + padding-top: 0.577rem !important; +} +.u-bolt-padding-top-medium { + padding-top: 1.155rem !important; +} +.u-bolt-padding-top-large { + padding-top: 2.31rem !important; +} +.u-bolt-padding-top-xlarge { + padding-top: 4.62rem !important; +} +.u-bolt-padding-top-xxlarge { + padding-top: 9.24rem !important; +} +.u-bolt-padding-top { + padding-top: 1.155rem !important; +} +.u-bolt-padding-top-none-squished { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto-squished { + padding-top: auto !important; +} +.u-bolt-padding-top-xxsmall-squished { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall-squished { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small-squished { + padding-top: 0.577rem !important; +} +.u-bolt-padding-top-medium-squished { + padding-top: 1.155rem !important; +} +.u-bolt-padding-top-large-squished { + padding-top: 2.31rem !important; +} +.u-bolt-padding-top-xlarge-squished { + padding-top: 4.62rem !important; +} +.u-bolt-padding-top-xxlarge-squished { + padding-top: 9.24rem !important; +} +.u-bolt-padding-top-squished { + padding-top: 1.155rem !important; +} +.u-bolt-padding-top-none-stretched { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto-stretched { + padding-top: auto !important; +} +.u-bolt-padding-top-xxsmall-stretched { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall-stretched { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small-stretched { + padding-top: 0.577rem !important; +} +.u-bolt-padding-top-medium-stretched { + padding-top: 1.155rem !important; +} +.u-bolt-padding-top-large-stretched { + padding-top: 2.31rem !important; +} +.u-bolt-padding-top-xlarge-stretched { + padding-top: 4.62rem !important; +} +.u-bolt-padding-top-xxlarge-stretched { + padding-top: 9.24rem !important; +} +.u-bolt-padding-top-stretched { + padding-top: 1.155rem !important; +} +.u-bolt-padding-right-none { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto { + padding-right: auto !important; +} +.u-bolt-padding-right-xxsmall { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small { + padding-right: 0.7rem !important; +} +.u-bolt-padding-right-medium { + padding-right: 1.4rem !important; +} +.u-bolt-padding-right-large { + padding-right: 2.8rem !important; +} +.u-bolt-padding-right-xlarge { + padding-right: 5.6rem !important; +} +.u-bolt-padding-right-xxlarge { + padding-right: 11.2rem !important; +} +.u-bolt-padding-right { + padding-right: 1.4rem !important; +} +.u-bolt-padding-right-none-squished { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto-squished { + padding-right: auto !important; +} +.u-bolt-padding-right-xxsmall-squished { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall-squished { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small-squished { + padding-right: 0.7rem !important; +} +.u-bolt-padding-right-medium-squished { + padding-right: 1.4rem !important; +} +.u-bolt-padding-right-large-squished { + padding-right: 2.8rem !important; +} +.u-bolt-padding-right-xlarge-squished { + padding-right: 5.6rem !important; +} +.u-bolt-padding-right-xxlarge-squished { + padding-right: 11.2rem !important; +} +.u-bolt-padding-right-squished { + padding-right: 1.4rem !important; +} +.u-bolt-padding-right-none-stretched { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto-stretched { + padding-right: auto !important; +} +.u-bolt-padding-right-xxsmall-stretched { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall-stretched { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small-stretched { + padding-right: 0.7rem !important; +} +.u-bolt-padding-right-medium-stretched { + padding-right: 1.4rem !important; +} +.u-bolt-padding-right-large-stretched { + padding-right: 2.8rem !important; +} +.u-bolt-padding-right-xlarge-stretched { + padding-right: 5.6rem !important; +} +.u-bolt-padding-right-xxlarge-stretched { + padding-right: 11.2rem !important; +} +.u-bolt-padding-right-stretched { + padding-right: 1.4rem !important; +} +.u-bolt-padding-bottom-none { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom-xxsmall { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small { + padding-bottom: 0.577rem !important; +} +.u-bolt-padding-bottom-medium { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-bottom-large { + padding-bottom: 2.31rem !important; +} +.u-bolt-padding-bottom-xlarge { + padding-bottom: 4.62rem !important; +} +.u-bolt-padding-bottom-xxlarge { + padding-bottom: 9.24rem !important; +} +.u-bolt-padding-bottom { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-bottom-none-squished { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto-squished { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom-xxsmall-squished { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall-squished { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small-squished { + padding-bottom: 0.577rem !important; +} +.u-bolt-padding-bottom-medium-squished { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-bottom-large-squished { + padding-bottom: 2.31rem !important; +} +.u-bolt-padding-bottom-xlarge-squished { + padding-bottom: 4.62rem !important; +} +.u-bolt-padding-bottom-xxlarge-squished { + padding-bottom: 9.24rem !important; +} +.u-bolt-padding-bottom-squished { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-bottom-none-stretched { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto-stretched { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom-xxsmall-stretched { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall-stretched { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small-stretched { + padding-bottom: 0.577rem !important; +} +.u-bolt-padding-bottom-medium-stretched { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-bottom-large-stretched { + padding-bottom: 2.31rem !important; +} +.u-bolt-padding-bottom-xlarge-stretched { + padding-bottom: 4.62rem !important; +} +.u-bolt-padding-bottom-xxlarge-stretched { + padding-bottom: 9.24rem !important; +} +.u-bolt-padding-bottom-stretched { + padding-bottom: 1.155rem !important; +} +.u-bolt-padding-left-none { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto { + padding-left: auto !important; +} +.u-bolt-padding-left-xxsmall { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small { + padding-left: 0.7rem !important; +} +.u-bolt-padding-left-medium { + padding-left: 1.4rem !important; +} +.u-bolt-padding-left-large { + padding-left: 2.8rem !important; +} +.u-bolt-padding-left-xlarge { + padding-left: 5.6rem !important; +} +.u-bolt-padding-left-xxlarge { + padding-left: 11.2rem !important; +} +.u-bolt-padding-left { + padding-left: 1.4rem !important; +} +.u-bolt-padding-left-none-squished { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto-squished { + padding-left: auto !important; +} +.u-bolt-padding-left-xxsmall-squished { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall-squished { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small-squished { + padding-left: 0.7rem !important; +} +.u-bolt-padding-left-medium-squished { + padding-left: 1.4rem !important; +} +.u-bolt-padding-left-large-squished { + padding-left: 2.8rem !important; +} +.u-bolt-padding-left-xlarge-squished { + padding-left: 5.6rem !important; +} +.u-bolt-padding-left-xxlarge-squished { + padding-left: 11.2rem !important; +} +.u-bolt-padding-left-squished { + padding-left: 1.4rem !important; +} +.u-bolt-padding-left-none-stretched { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto-stretched { + padding-left: auto !important; +} +.u-bolt-padding-left-xxsmall-stretched { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall-stretched { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small-stretched { + padding-left: 0.7rem !important; +} +.u-bolt-padding-left-medium-stretched { + padding-left: 1.4rem !important; +} +.u-bolt-padding-left-large-stretched { + padding-left: 2.8rem !important; +} +.u-bolt-padding-left-xlarge-stretched { + padding-left: 5.6rem !important; +} +.u-bolt-padding-left-xxlarge-stretched { + padding-left: 11.2rem !important; +} +.u-bolt-padding-left-stretched { + padding-left: 1.4rem !important; +} +.u-bolt-margin-none { + margin: 0 !important; +} +.u-bolt-margin-auto { + margin: auto !important; +} +.u-bolt-margin-xxsmall { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small { + margin: 0.577rem 0.7rem !important; +} +.u-bolt-margin-medium { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-large { + margin: 2.31rem 2.8rem !important; +} +.u-bolt-margin-xlarge { + margin: 4.62rem 5.6rem !important; +} +.u-bolt-margin-xxlarge { + margin: 9.24rem 11.2rem !important; +} +.u-bolt-margin { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-none-squished { + margin: 0 !important; +} +.u-bolt-margin-auto-squished { + margin: auto !important; +} +.u-bolt-margin-xxsmall-squished { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall-squished { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small-squished { + margin: 0.577rem 0.7rem !important; +} +.u-bolt-margin-medium-squished { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-large-squished { + margin: 2.31rem 2.8rem !important; +} +.u-bolt-margin-xlarge-squished { + margin: 4.62rem 5.6rem !important; +} +.u-bolt-margin-xxlarge-squished { + margin: 9.24rem 11.2rem !important; +} +.u-bolt-margin-squished { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-none-stretched { + margin: 0 !important; +} +.u-bolt-margin-auto-stretched { + margin: auto !important; +} +.u-bolt-margin-xxsmall-stretched { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall-stretched { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small-stretched { + margin: 0.577rem 0.7rem !important; +} +.u-bolt-margin-medium-stretched { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-large-stretched { + margin: 2.31rem 2.8rem !important; +} +.u-bolt-margin-xlarge-stretched { + margin: 4.62rem 5.6rem !important; +} +.u-bolt-margin-xxlarge-stretched { + margin: 9.24rem 11.2rem !important; +} +.u-bolt-margin-stretched { + margin: 1.155rem 1.4rem !important; +} +.u-bolt-margin-top-none { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto { + margin-top: auto !important; +} +.u-bolt-margin-top-xxsmall { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small { + margin-top: 0.577rem !important; +} +.u-bolt-margin-top-medium { + margin-top: 1.155rem !important; +} +.u-bolt-margin-top-large { + margin-top: 2.31rem !important; +} +.u-bolt-margin-top-xlarge { + margin-top: 4.62rem !important; +} +.u-bolt-margin-top-xxlarge { + margin-top: 9.24rem !important; +} +.u-bolt-margin-top { + margin-top: 1.155rem !important; +} +.u-bolt-margin-top-none-squished { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto-squished { + margin-top: auto !important; +} +.u-bolt-margin-top-xxsmall-squished { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall-squished { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small-squished { + margin-top: 0.577rem !important; +} +.u-bolt-margin-top-medium-squished { + margin-top: 1.155rem !important; +} +.u-bolt-margin-top-large-squished { + margin-top: 2.31rem !important; +} +.u-bolt-margin-top-xlarge-squished { + margin-top: 4.62rem !important; +} +.u-bolt-margin-top-xxlarge-squished { + margin-top: 9.24rem !important; +} +.u-bolt-margin-top-squished { + margin-top: 1.155rem !important; +} +.u-bolt-margin-top-none-stretched { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto-stretched { + margin-top: auto !important; +} +.u-bolt-margin-top-xxsmall-stretched { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall-stretched { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small-stretched { + margin-top: 0.577rem !important; +} +.u-bolt-margin-top-medium-stretched { + margin-top: 1.155rem !important; +} +.u-bolt-margin-top-large-stretched { + margin-top: 2.31rem !important; +} +.u-bolt-margin-top-xlarge-stretched { + margin-top: 4.62rem !important; +} +.u-bolt-margin-top-xxlarge-stretched { + margin-top: 9.24rem !important; +} +.u-bolt-margin-top-stretched { + margin-top: 1.155rem !important; +} +.u-bolt-margin-right-none { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto { + margin-right: auto !important; +} +.u-bolt-margin-right-xxsmall { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small { + margin-right: 0.7rem !important; +} +.u-bolt-margin-right-medium { + margin-right: 1.4rem !important; +} +.u-bolt-margin-right-large { + margin-right: 2.8rem !important; +} +.u-bolt-margin-right-xlarge { + margin-right: 5.6rem !important; +} +.u-bolt-margin-right-xxlarge { + margin-right: 11.2rem !important; +} +.u-bolt-margin-right { + margin-right: 1.4rem !important; +} +.u-bolt-margin-right-none-squished { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto-squished { + margin-right: auto !important; +} +.u-bolt-margin-right-xxsmall-squished { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall-squished { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small-squished { + margin-right: 0.7rem !important; +} +.u-bolt-margin-right-medium-squished { + margin-right: 1.4rem !important; +} +.u-bolt-margin-right-large-squished { + margin-right: 2.8rem !important; +} +.u-bolt-margin-right-xlarge-squished { + margin-right: 5.6rem !important; +} +.u-bolt-margin-right-xxlarge-squished { + margin-right: 11.2rem !important; +} +.u-bolt-margin-right-squished { + margin-right: 1.4rem !important; +} +.u-bolt-margin-right-none-stretched { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto-stretched { + margin-right: auto !important; +} +.u-bolt-margin-right-xxsmall-stretched { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall-stretched { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small-stretched { + margin-right: 0.7rem !important; +} +.u-bolt-margin-right-medium-stretched { + margin-right: 1.4rem !important; +} +.u-bolt-margin-right-large-stretched { + margin-right: 2.8rem !important; +} +.u-bolt-margin-right-xlarge-stretched { + margin-right: 5.6rem !important; +} +.u-bolt-margin-right-xxlarge-stretched { + margin-right: 11.2rem !important; +} +.u-bolt-margin-right-stretched { + margin-right: 1.4rem !important; +} +.u-bolt-margin-bottom-none { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom-xxsmall { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small { + margin-bottom: 0.577rem !important; +} +.u-bolt-margin-bottom-medium { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-bottom-large { + margin-bottom: 2.31rem !important; +} +.u-bolt-margin-bottom-xlarge { + margin-bottom: 4.62rem !important; +} +.u-bolt-margin-bottom-xxlarge { + margin-bottom: 9.24rem !important; +} +.u-bolt-margin-bottom { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-bottom-none-squished { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto-squished { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom-xxsmall-squished { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall-squished { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small-squished { + margin-bottom: 0.577rem !important; +} +.u-bolt-margin-bottom-medium-squished { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-bottom-large-squished { + margin-bottom: 2.31rem !important; +} +.u-bolt-margin-bottom-xlarge-squished { + margin-bottom: 4.62rem !important; +} +.u-bolt-margin-bottom-xxlarge-squished { + margin-bottom: 9.24rem !important; +} +.u-bolt-margin-bottom-squished { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-bottom-none-stretched { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto-stretched { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom-xxsmall-stretched { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall-stretched { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small-stretched { + margin-bottom: 0.577rem !important; +} +.u-bolt-margin-bottom-medium-stretched { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-bottom-large-stretched { + margin-bottom: 2.31rem !important; +} +.u-bolt-margin-bottom-xlarge-stretched { + margin-bottom: 4.62rem !important; +} +.u-bolt-margin-bottom-xxlarge-stretched { + margin-bottom: 9.24rem !important; +} +.u-bolt-margin-bottom-stretched { + margin-bottom: 1.155rem !important; +} +.u-bolt-margin-left-none { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto { + margin-left: auto !important; +} +.u-bolt-margin-left-xxsmall { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small { + margin-left: 0.7rem !important; +} +.u-bolt-margin-left-medium { + margin-left: 1.4rem !important; +} +.u-bolt-margin-left-large { + margin-left: 2.8rem !important; +} +.u-bolt-margin-left-xlarge { + margin-left: 5.6rem !important; +} +.u-bolt-margin-left-xxlarge { + margin-left: 11.2rem !important; +} +.u-bolt-margin-left { + margin-left: 1.4rem !important; +} +.u-bolt-margin-left-none-squished { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto-squished { + margin-left: auto !important; +} +.u-bolt-margin-left-xxsmall-squished { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall-squished { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small-squished { + margin-left: 0.7rem !important; +} +.u-bolt-margin-left-medium-squished { + margin-left: 1.4rem !important; +} +.u-bolt-margin-left-large-squished { + margin-left: 2.8rem !important; +} +.u-bolt-margin-left-xlarge-squished { + margin-left: 5.6rem !important; +} +.u-bolt-margin-left-xxlarge-squished { + margin-left: 11.2rem !important; +} +.u-bolt-margin-left-squished { + margin-left: 1.4rem !important; +} +.u-bolt-margin-left-none-stretched { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto-stretched { + margin-left: auto !important; +} +.u-bolt-margin-left-xxsmall-stretched { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall-stretched { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small-stretched { + margin-left: 0.7rem !important; +} +.u-bolt-margin-left-medium-stretched { + margin-left: 1.4rem !important; +} +.u-bolt-margin-left-large-stretched { + margin-left: 2.8rem !important; +} +.u-bolt-margin-left-xlarge-stretched { + margin-left: 5.6rem !important; +} +.u-bolt-margin-left-xxlarge-stretched { + margin-left: 11.2rem !important; +} +.u-bolt-margin-left-stretched { + margin-left: 1.4rem !important; +} +@media (min-width: 20em) { + .u-bolt-opacity-75\\\\@xxsmall { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@xxsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@xxsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@xxsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@xxsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@xxsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@xxsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@xxsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@xxsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@xxsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@xxsmall { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@xxsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@xxsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@xxsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@xxsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@xxsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@xxsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@xxsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@xxsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@xxsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@xxsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@xxsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@xxsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@xxsmall { + margin-left: 1.4rem !important; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-75\\\\@xsmall { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@xsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@xsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@xsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@xsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xsmall { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@xsmall { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xsmall { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xsmall { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@xsmall { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@xsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xsmall { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xsmall { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xsmall { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xsmall { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@xsmall { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@xsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xsmall { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xsmall { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xsmall { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xsmall { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@xsmall { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@xsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xsmall { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xsmall { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xsmall { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xsmall { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@xsmall { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@xsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xsmall { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xsmall { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xsmall { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xsmall { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@xsmall { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@xsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@xsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@xsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@xsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xsmall { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@xsmall { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xsmall { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xsmall { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@xsmall { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@xsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xsmall { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xsmall { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xsmall { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xsmall { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@xsmall { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@xsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xsmall { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xsmall { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xsmall { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xsmall { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@xsmall { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@xsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xsmall { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xsmall { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xsmall { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xsmall { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@xsmall { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@xsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@xsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@xsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@xsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xsmall { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xsmall { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xsmall { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xsmall { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xsmall { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@xsmall { + margin-left: 1.4rem !important; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-75\\\\@small { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@small { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@small { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@small { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@small { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@small { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@small { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@small { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@small { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@small { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@small { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@small { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@small { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@small { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@small { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@small { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@small { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@small { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@small { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@small { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@small { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@small { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@small { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@small { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@small { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@small { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@small { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@small { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@small { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@small { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@small { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@small { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@small { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@small { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@small { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@small { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@small { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@small { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@small { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@small { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@small { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@small { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@small { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@small { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@small { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@small { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@small { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@small { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@small { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@small { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@small { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@small { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@small { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@small { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@small { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@small { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@small { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@small { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@small { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@small { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@small { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@small { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@small { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@small { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@small { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@small { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@small { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@small { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@small { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@small { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@small { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@small { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@small { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@small { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@small { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@small { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@small { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@small { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@small { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@small { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@small { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@small { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@small { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@small { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@small { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@small { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@small { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@small { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@small { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@small { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@small { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@small { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@small { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@small { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@small { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@small { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@small { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@small { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@small { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@small { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@small { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@small { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@small { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@small { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@small { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@small { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@small { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@small { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@small { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@small { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@small { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@small { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@small { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@small { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@small { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@small { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@small { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@small { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@small { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@small { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@small { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@small { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@small { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@small { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@small { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@small { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@small { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@small { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@small { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@small { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@small { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@small { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@small { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@small { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@small { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@small { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@small { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@small { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@small { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@small { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@small { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@small { + margin-left: 1.4rem !important; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-75\\\\@medium { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@medium { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@medium { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@medium { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@medium { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@medium { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@medium { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@medium { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@medium { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@medium { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@medium { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@medium { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@medium { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@medium { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@medium { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@medium { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@medium { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@medium { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@medium { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@medium { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@medium { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@medium { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@medium { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@medium { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@medium { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@medium { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@medium { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@medium { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@medium { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@medium { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@medium { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@medium { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@medium { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@medium { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@medium { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@medium { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@medium { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@medium { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@medium { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@medium { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@medium { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@medium { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@medium { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@medium { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@medium { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@medium { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@medium { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@medium { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@medium { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@medium { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@medium { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@medium { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@medium { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@medium { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@medium { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@medium { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@medium { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@medium { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@medium { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@medium { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@medium { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@medium { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@medium { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@medium { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@medium { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@medium { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@medium { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@medium { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@medium { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@medium { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@medium { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@medium { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@medium { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@medium { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@medium { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@medium { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@medium { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@medium { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@medium { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@medium { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@medium { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@medium { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@medium { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@medium { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@medium { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@medium { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@medium { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@medium { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@medium { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@medium { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@medium { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@medium { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@medium { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@medium { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@medium { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@medium { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@medium { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@medium { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@medium { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@medium { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@medium { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@medium { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@medium { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@medium { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@medium { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@medium { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@medium { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@medium { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@medium { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@medium { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@medium { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@medium { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@medium { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@medium { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@medium { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@medium { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@medium { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@medium { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@medium { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@medium { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@medium { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@medium { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@medium { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@medium { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@medium { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@medium { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@medium { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@medium { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@medium { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@medium { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@medium { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@medium { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@medium { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@medium { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@medium { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@medium { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@medium { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@medium { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@medium { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@medium { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@medium { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@medium { + margin-left: 1.4rem !important; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-75\\\\@large { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@large { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@large { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@large { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@large { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@large { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@large { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@large { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@large { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@large { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@large { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@large { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@large { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@large { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@large { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@large { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@large { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@large { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@large { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@large { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@large { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@large { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@large { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@large { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@large { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@large { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@large { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@large { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@large { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@large { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@large { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@large { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@large { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@large { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@large { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@large { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@large { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@large { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@large { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@large { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@large { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@large { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@large { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@large { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@large { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@large { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@large { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@large { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@large { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@large { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@large { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@large { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@large { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@large { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@large { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@large { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@large { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@large { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@large { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@large { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@large { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@large { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@large { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@large { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@large { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@large { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@large { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@large { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@large { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@large { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@large { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@large { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@large { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@large { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@large { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@large { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@large { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@large { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@large { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@large { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@large { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@large { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@large { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@large { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@large { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@large { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@large { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@large { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@large { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@large { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@large { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@large { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@large { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@large { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@large { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@large { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@large { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@large { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@large { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@large { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@large { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@large { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@large { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@large { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@large { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@large { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@large { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@large { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@large { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@large { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@large { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@large { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@large { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@large { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@large { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@large { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@large { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@large { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@large { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@large { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@large { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@large { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@large { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@large { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@large { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@large { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@large { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@large { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@large { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@large { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@large { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@large { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@large { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@large { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@large { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@large { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@large { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@large { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@large { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@large { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@large { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@large { + margin-left: 1.4rem !important; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-75\\\\@xlarge { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@xlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@xlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@xlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@xlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@xlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@xlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@xlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@xlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@xlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@xlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@xlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@xlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@xlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@xlarge { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@xlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@xlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@xlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@xlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@xlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@xlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@xlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@xlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@xlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@xlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@xlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@xlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@xlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@xlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@xlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@xlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@xlarge { + margin-left: 1.4rem !important; + } +} +@media (min-width: 87.5em) { + .u-bolt-padding-none\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@xxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@xxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@xxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@xxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@xxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@xxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@xxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@xxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@xxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@xxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@xxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@xxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@xxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@xxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@xxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@xxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@xxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@xxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@xxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@xxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@xxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@xxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@xxlarge { + margin-left: 1.4rem !important; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-75\\\\@xxxlarge { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large\\\\@xxxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge\\\\@xxxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-squished\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-squished\\\\@xxxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-squished\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxxlarge { + padding: 0.577rem 0.7rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxxlarge { + padding: 2.31rem 2.8rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxxlarge { + padding: 4.62rem 5.6rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxxlarge { + padding: 9.24rem 11.2rem !important; + } + .u-bolt-padding-stretched\\\\@xxxlarge { + padding: 1.155rem 1.4rem !important; + } + .u-bolt-padding-top-none\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large\\\\@xxxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-squished\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxxlarge { + padding-top: 0.577rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxxlarge { + padding-top: 2.31rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxxlarge { + padding-top: 4.62rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxxlarge { + padding-top: 9.24rem !important; + } + .u-bolt-padding-top-stretched\\\\@xxxlarge { + padding-top: 1.155rem !important; + } + .u-bolt-padding-right-none\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large\\\\@xxxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-squished\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxxlarge { + padding-right: 0.7rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxxlarge { + padding-right: 2.8rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxxlarge { + padding-right: 5.6rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxxlarge { + padding-right: 11.2rem !important; + } + .u-bolt-padding-right-stretched\\\\@xxxlarge { + padding-right: 1.4rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-squished\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxxlarge { + padding-bottom: 0.577rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxxlarge { + padding-bottom: 2.31rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxxlarge { + padding-bottom: 4.62rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxxlarge { + padding-bottom: 9.24rem !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxxlarge { + padding-bottom: 1.155rem !important; + } + .u-bolt-padding-left-none\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large\\\\@xxxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-squished\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxxlarge { + padding-left: 0.7rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxxlarge { + padding-left: 2.8rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxxlarge { + padding-left: 5.6rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxxlarge { + padding-left: 11.2rem !important; + } + .u-bolt-padding-left-stretched\\\\@xxxlarge { + padding-left: 1.4rem !important; + } + .u-bolt-margin-none\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large\\\\@xxxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge\\\\@xxxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-squished\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-squished\\\\@xxxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-squished\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxxlarge { + margin: 0.577rem 0.7rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxxlarge { + margin: 2.31rem 2.8rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxxlarge { + margin: 4.62rem 5.6rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxxlarge { + margin: 9.24rem 11.2rem !important; + } + .u-bolt-margin-stretched\\\\@xxxlarge { + margin: 1.155rem 1.4rem !important; + } + .u-bolt-margin-top-none\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large\\\\@xxxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-squished\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxxlarge { + margin-top: 0.577rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxxlarge { + margin-top: 2.31rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxxlarge { + margin-top: 4.62rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxxlarge { + margin-top: 9.24rem !important; + } + .u-bolt-margin-top-stretched\\\\@xxxlarge { + margin-top: 1.155rem !important; + } + .u-bolt-margin-right-none\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large\\\\@xxxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-squished\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxxlarge { + margin-right: 0.7rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxxlarge { + margin-right: 2.8rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxxlarge { + margin-right: 5.6rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxxlarge { + margin-right: 11.2rem !important; + } + .u-bolt-margin-right-stretched\\\\@xxxlarge { + margin-right: 1.4rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-squished\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxxlarge { + margin-bottom: 0.577rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxxlarge { + margin-bottom: 2.31rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxxlarge { + margin-bottom: 4.62rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxxlarge { + margin-bottom: 9.24rem !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxxlarge { + margin-bottom: 1.155rem !important; + } + .u-bolt-margin-left-none\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium\\\\@xxxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large\\\\@xxxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left\\\\@xxxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-squished\\\\@xxxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxxlarge { + margin-left: 0.7rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxxlarge { + margin-left: 1.4rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxxlarge { + margin-left: 2.8rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxxlarge { + margin-left: 5.6rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxxlarge { + margin-left: 11.2rem !important; + } + .u-bolt-margin-left-stretched\\\\@xxxlarge { + margin-left: 1.4rem !important; + } +} +.u-bolt-text-align-right { + text-align: right !important; + text-align: end !important; +} +.u-bolt-text-align-left { + text-align: left !important; + text-align: start !important; +} +.u-bolt-text-align-center { + text-align: center !important; +} +.u-bolt-text-align-justify { + text-align: justify !important; +} +.u-bolt-text-decoration-none { + text-decoration: none !important; +} +.u-bolt-text-decoration-underline { + text-decoration: underline !important; +} +.u-bolt-text-decoration-line-through { + text-decoration: line-through !important; +} +.u-bolt-visuallyhidden { + position: absolute !important; + width: 1px !important; + height: 1px !important; + overflow: hidden !important; + margin: -1px !important; + padding: 0 !important; + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + white-space: nowrap !important; +} +.u-bolt-width-1\\\\/1 { + width: 100% !important; +} +.u-bolt-width-1\\\\/2 { + width: 50% !important; +} +.u-bolt-width-2\\\\/2 { + width: 100% !important; +} +.u-bolt-width-1\\\\/3 { + width: 33.333% !important; +} +.u-bolt-width-2\\\\/3 { + width: 66.667% !important; +} +.u-bolt-width-3\\\\/3 { + width: 100% !important; +} +.u-bolt-width-1\\\\/4 { + width: 25% !important; +} +.u-bolt-width-2\\\\/4 { + width: 50% !important; +} +.u-bolt-width-3\\\\/4 { + width: 75% !important; +} +.u-bolt-width-4\\\\/4 { + width: 100% !important; +} +.u-bolt-width-1\\\\/5 { + width: 20% !important; +} +.u-bolt-width-2\\\\/5 { + width: 40% !important; +} +.u-bolt-width-3\\\\/5 { + width: 60% !important; +} +.u-bolt-width-4\\\\/5 { + width: 80% !important; +} +.u-bolt-width-5\\\\/5 { + width: 100% !important; +} +.u-bolt-width-1\\\\/6 { + width: 16.667% !important; +} +.u-bolt-width-2\\\\/6 { + width: 33.333% !important; +} +.u-bolt-width-3\\\\/6 { + width: 50% !important; +} +.u-bolt-width-4\\\\/6 { + width: 66.667% !important; +} +.u-bolt-width-5\\\\/6 { + width: 83.333% !important; +} +.u-bolt-width-6\\\\/6 { + width: 100% !important; +} +.u-bolt-width-1\\\\/7 { + width: 14.286% !important; +} +.u-bolt-width-2\\\\/7 { + width: 28.571% !important; +} +.u-bolt-width-3\\\\/7 { + width: 42.857% !important; +} +.u-bolt-width-4\\\\/7 { + width: 57.143% !important; +} +.u-bolt-width-5\\\\/7 { + width: 71.429% !important; +} +.u-bolt-width-6\\\\/7 { + width: 85.714% !important; +} +.u-bolt-width-7\\\\/7 { + width: 100% !important; +} +.u-bolt-width-1\\\\/8 { + width: 12.5% !important; +} +.u-bolt-width-2\\\\/8 { + width: 25% !important; +} +.u-bolt-width-3\\\\/8 { + width: 37.5% !important; +} +.u-bolt-width-4\\\\/8 { + width: 50% !important; +} +.u-bolt-width-5\\\\/8 { + width: 62.5% !important; +} +.u-bolt-width-6\\\\/8 { + width: 75% !important; +} +.u-bolt-width-7\\\\/8 { + width: 87.5% !important; +} +.u-bolt-width-8\\\\/8 { + width: 100% !important; +} +.u-bolt-width-1\\\\/9 { + width: 11.111% !important; +} +.u-bolt-width-2\\\\/9 { + width: 22.222% !important; +} +.u-bolt-width-3\\\\/9 { + width: 33.333% !important; +} +.u-bolt-width-4\\\\/9 { + width: 44.444% !important; +} +.u-bolt-width-5\\\\/9 { + width: 55.556% !important; +} +.u-bolt-width-6\\\\/9 { + width: 66.667% !important; +} +.u-bolt-width-7\\\\/9 { + width: 77.778% !important; +} +.u-bolt-width-8\\\\/9 { + width: 88.889% !important; +} +.u-bolt-width-9\\\\/9 { + width: 100% !important; +} +.u-bolt-width-1\\\\/10 { + width: 10% !important; +} +.u-bolt-width-2\\\\/10 { + width: 20% !important; +} +.u-bolt-width-3\\\\/10 { + width: 30% !important; +} +.u-bolt-width-4\\\\/10 { + width: 40% !important; +} +.u-bolt-width-5\\\\/10 { + width: 50% !important; +} +.u-bolt-width-6\\\\/10 { + width: 60% !important; +} +.u-bolt-width-7\\\\/10 { + width: 70% !important; +} +.u-bolt-width-8\\\\/10 { + width: 80% !important; +} +.u-bolt-width-9\\\\/10 { + width: 90% !important; +} +.u-bolt-width-10\\\\/10 { + width: 100% !important; +} +.u-bolt-width-1\\\\/11 { + width: 9.091% !important; +} +.u-bolt-width-2\\\\/11 { + width: 18.182% !important; +} +.u-bolt-width-3\\\\/11 { + width: 27.273% !important; +} +.u-bolt-width-4\\\\/11 { + width: 36.364% !important; +} +.u-bolt-width-5\\\\/11 { + width: 45.455% !important; +} +.u-bolt-width-6\\\\/11 { + width: 54.545% !important; +} +.u-bolt-width-7\\\\/11 { + width: 63.636% !important; +} +.u-bolt-width-8\\\\/11 { + width: 72.727% !important; +} +.u-bolt-width-9\\\\/11 { + width: 81.818% !important; +} +.u-bolt-width-10\\\\/11 { + width: 90.909% !important; +} +.u-bolt-width-11\\\\/11 { + width: 100% !important; +} +.u-bolt-width-1\\\\/12 { + width: 8.333% !important; +} +.u-bolt-width-2\\\\/12 { + width: 16.667% !important; +} +.u-bolt-width-3\\\\/12 { + width: 25% !important; +} +.u-bolt-width-4\\\\/12 { + width: 33.333% !important; +} +.u-bolt-width-5\\\\/12 { + width: 41.667% !important; +} +.u-bolt-width-6\\\\/12 { + width: 50% !important; +} +.u-bolt-width-7\\\\/12 { + width: 58.333% !important; +} +.u-bolt-width-8\\\\/12 { + width: 66.667% !important; +} +.u-bolt-width-9\\\\/12 { + width: 75% !important; +} +.u-bolt-width-10\\\\/12 { + width: 83.333% !important; +} +.u-bolt-width-11\\\\/12 { + width: 91.667% !important; +} +.u-bolt-width-12\\\\/12 { + width: 100% !important; +} +@media (min-width: 20em) { + .u-bolt-width-1\\\\/1\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxsmall { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxsmall { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxsmall { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxsmall { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxsmall { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxsmall { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxsmall { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxsmall { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxsmall { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxsmall { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxsmall { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxsmall { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxsmall { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxsmall { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxsmall { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxsmall { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxsmall { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxsmall { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxsmall { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxsmall { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxsmall { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxsmall { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxsmall { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxsmall { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxsmall { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxsmall { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxsmall { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxsmall { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxsmall { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxsmall { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxsmall { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxsmall { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxsmall { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxsmall { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxsmall { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxsmall { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxsmall { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxsmall { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxsmall { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxsmall { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxsmall { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxsmall { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxsmall { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxsmall { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxsmall { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxsmall { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxsmall { + width: 100% !important; + } +} +@media (min-width: 25em) { + .u-bolt-width-1\\\\/1\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xsmall { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xsmall { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xsmall { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xsmall { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xsmall { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xsmall { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xsmall { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xsmall { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xsmall { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xsmall { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xsmall { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xsmall { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xsmall { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xsmall { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xsmall { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xsmall { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xsmall { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xsmall { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xsmall { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xsmall { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xsmall { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xsmall { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xsmall { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xsmall { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xsmall { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xsmall { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xsmall { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xsmall { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xsmall { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xsmall { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xsmall { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xsmall { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xsmall { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xsmall { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xsmall { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xsmall { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xsmall { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xsmall { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xsmall { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xsmall { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xsmall { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xsmall { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xsmall { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xsmall { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xsmall { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xsmall { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xsmall { + width: 100% !important; + } +} +@media (min-width: 37.5em) { + .u-bolt-width-1\\\\/1\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@small { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@small { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@small { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@small { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@small { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@small { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@small { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@small { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@small { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@small { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@small { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@small { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@small { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@small { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@small { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@small { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@small { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@small { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@small { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@small { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@small { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@small { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@small { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@small { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@small { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@small { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@small { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@small { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@small { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@small { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@small { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@small { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@small { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@small { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@small { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@small { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@small { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@small { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@small { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@small { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@small { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@small { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@small { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@small { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@small { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@small { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@small { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@small { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@small { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@small { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@small { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@small { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@small { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@small { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@small { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@small { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@small { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@small { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@small { + width: 100% !important; + } +} +@media (min-width: 50em) { + .u-bolt-width-1\\\\/1\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@medium { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@medium { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@medium { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@medium { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@medium { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@medium { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@medium { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@medium { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@medium { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@medium { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@medium { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@medium { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@medium { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@medium { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@medium { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@medium { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@medium { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@medium { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@medium { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@medium { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@medium { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@medium { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@medium { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@medium { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@medium { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@medium { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@medium { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@medium { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@medium { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@medium { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@medium { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@medium { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@medium { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@medium { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@medium { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@medium { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@medium { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@medium { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@medium { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@medium { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@medium { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@medium { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@medium { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@medium { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@medium { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@medium { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@medium { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@medium { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@medium { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@medium { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@medium { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@medium { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@medium { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@medium { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@medium { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@medium { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@medium { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@medium { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@medium { + width: 100% !important; + } +} +@media (min-width: 62.5em) { + .u-bolt-width-1\\\\/1\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@large { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@large { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@large { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@large { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@large { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@large { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@large { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@large { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@large { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@large { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@large { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@large { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@large { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@large { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@large { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@large { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@large { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@large { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@large { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@large { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@large { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@large { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@large { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@large { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@large { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@large { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@large { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@large { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@large { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@large { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@large { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@large { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@large { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@large { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@large { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@large { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@large { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@large { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@large { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@large { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@large { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@large { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@large { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@large { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@large { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@large { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@large { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@large { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@large { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@large { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@large { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@large { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@large { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@large { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@large { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@large { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@large { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@large { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@large { + width: 100% !important; + } +} +@media (min-width: 75em) { + .u-bolt-width-1\\\\/1\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xlarge { + width: 100% !important; + } +} +@media (min-width: 87.5em) { + .u-bolt-width-1\\\\/1\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxlarge { + width: 100% !important; + } +} +@media (min-width: 120em) { + .u-bolt-width-1\\\\/1\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxxlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxxlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxxlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxxlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxxlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxxlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxxlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxxlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxxlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxxlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxxlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxxlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxxlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxxlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxxlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxxlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxxlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxxlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxxlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxxlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxxlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxxlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxxlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxxlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxxlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxxlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxxlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxxlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxxlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxxlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxxlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxxlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxxlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxxlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxxlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxxlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxxlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxxlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxxlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxxlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxxlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxxlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxxlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxxlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxxlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxxlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxxlarge { + width: 100% !important; + } +} +.u-bolt-max-width-none { + max-width: none !important; +} +.u-bolt-z-index--fab, +.u-bolt-z-index-fab { + z-index: 300 !important; +} +.u-bolt-z-index--modal, +.u-bolt-z-index-modal { + z-index: 200 !important; +} +.u-bolt-z-index--modalBG, +.u-bolt-z-index-modalBG { + z-index: 180 !important; +} +.u-bolt-z-index--navFixed, +.u-bolt-z-index-navFixed { + z-index: 160 !important; +} +.u-bolt-z-index--tooltip, +.u-bolt-z-index-tooltip { + z-index: 140 !important; +} +.u-bolt-z-index--popover, +.u-bolt-z-index-popover { + z-index: 120 !important; +} +.u-bolt-z-index--nav, +.u-bolt-z-index-nav { + z-index: 100 !important; +} +.u-bolt-z-index--contentTop, +.u-bolt-z-index-contentTop { + z-index: 80 !important; +} +.u-bolt-z-index--content, +.u-bolt-z-index-content { + z-index: 60 !important; +} +.u-bolt-z-index--contentBottom, +.u-bolt-z-index-contentBottom { + z-index: 40 !important; +} +.u-bolt-z-index--backgroundTop, +.u-bolt-z-index-backgroundTop { + z-index: 20 !important; +} +.u-bolt-z-index--background, +.u-bolt-z-index-background { + z-index: 0 !important; +} +.u-bolt-z-index--backgroundBottom, +.u-bolt-z-index-backgroundBottom { + z-index: -20 !important; +} +bolt-icon { + display: inline-block; + -webkit-transform: translateZ(0); + transform: translateZ(0); + width: 1em; + height: 1em; + vertical-align: middle; + -webkit-transition: inherit; + transition: inherit; +} +bolt-icon:not(:resolved) { + height: 0; + padding-bottom: 100%; +} +:host { + display: inline-block; + vertical-align: middle; +} +.c-bolt-icon { + position: relative; +} +.c-bolt-icon__icon { + display: block; + box-sizing: border-box; + position: relative; + z-index: 60; + width: 1em; + height: 1em; + color: var(--bolt-theme-icon); + pointer-events: none; +} +.c-bolt-icon--small > .c-bolt-icon__icon, +bolt-icon[size=\\"small\\"] { + width: 16px; + height: 16px; +} +.c-bolt-icon--medium > .c-bolt-icon__icon, +bolt-icon[size=\\"medium\\"] { + width: 24px; + height: 24px; +} +.c-bolt-icon--large > .c-bolt-icon__icon, +bolt-icon[size=\\"large\\"] { + width: 32px; + height: 32px; +} +.c-bolt-icon--xlarge > .c-bolt-icon__icon, +bolt-icon[size=\\"xlarge\\"] { + width: 64px; + height: 64px; +} +.c-bolt-icon--xlarge > .c-bolt-icon__icon { + padding: 16px; +} +.c-bolt-icon--small > .c-bolt-icon__icon { + stroke: currentColor; + stroke-width: 1px; +} +.c-bolt-icon__background-shape { + opacity: 0.1; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); + z-index: 40; + width: 100%; + height: 0; + padding-bottom: 100%; + background-color: currentColor; +} +.c-bolt-icon__background-shape--circle { + border-radius: 50%; +} +.c-bolt-icon__background-shape--square { + border-radius: 3px; +} +.c-bolt-icon--teal { + color: #fff; + --bolt-theme-icon: #fff; + --bolt-theme-icon-background: #099; + --bolt-theme-icon-background-opacity: 1; +} +.c-bolt-icon--teal .c-bolt-icon__background-shape { + opacity: 1; + background-color: #099; +} +@supports (--css: variables) { + .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity, 0.1); + background-color: var( + --bolt-theme-icon-background, + var(--bolt-theme-primary-text-default, currentColor) + ); + } + .c-bolt-icon--teal { + color: var(--bolt-theme-icon); + } + .c-bolt-icon--teal .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity); + background-color: var(--bolt-theme-icon-background); + } +} +.c-bolt-icon--blue { + color: #0074b3; + --bolt-theme-icon: #0074b3; + --bolt-theme-icon-background: #fff; + --bolt-theme-icon-background-opacity: 1; +} +.c-bolt-icon--blue .c-bolt-icon__background-shape { + opacity: 1; + background-color: #fff; +} +@supports (--css: variables) { + .c-bolt-icon--blue { + color: var(--bolt-theme-icon); + } + .c-bolt-icon--blue .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity); + background-color: var(--bolt-theme-icon-background); + } +} +.c-bolt-icon__background { + fill: currentColor; + fill: var(--bolt-theme-text, currentColor); +} +bolt-link { + outline: 0; +} +:host { + outline: 0; +} +.c-bolt-link { + padding: 0; + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); + display: inline; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + opacity: 1; + margin-left: -0.25rem; + color: rgba(var(--bolt-theme-link), 1); + text-decoration: underline; + cursor: pointer; + border: none; + background: 0 0; + -webkit-transition: 0.2s ease-in-out; + transition: 0.2s ease-in-out; +} +.js-fonts-loaded .c-bolt-link { + font-family: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, + Hiragino Kaku Gothic ProN, 游ゴシック, 游ゴシック体, YuGothic, Yu Gothic, + メイリオ, Meiryo, MS ゴシック, MS Gothic, HiraKakuProN-W3, TakaoExゴシック, + TakaoExGothic, MotoyaLCedar, Droid Sans Japanese, sans-serif; + font-family: var(--bolt-font-family-body); +} +.c-bolt-link:hover { + opacity: 0.8; +} +.c-bolt-link:active, +.c-bolt-link:focus:active { + opacity: 0.6; +} +.c-bolt-link--display-flex { + display: -webkit-inline-box; + display: inline-flex; +} +.c-bolt-link--display-flex.c-bolt-link--valign-start { + -webkit-box-align: start; + align-items: flex-start; +} +.c-bolt-link--display-flex.c-bolt-link--valign-center { + -webkit-box-align: center; + align-items: center; +} +.c-bolt-link--display-inline .c-bolt-link__icon { + display: inline; + white-space: nowrap; +} +.c-bolt-link__icon, +.c-bolt-link__text { + padding-left: 0.25rem; +} +.c-bolt-link__text { + display: inline; +} +.c-bolt-link--headline { + color: rgba(var(--bolt-theme-headline-link), 1); + text-decoration: none; +} +.c-bolt-link--headline:hover { + text-decoration: underline; +} +bolt-figure { + display: block; +} +bolt-figure:not(:last-child) { + margin-bottom: 1.155rem; +} +.c-bolt-figure { + margin: 0; + padding: 0; + display: block; +} +.c-bolt-figure__media { + display: block; +} +.c-bolt-figure__caption { + padding-top: 0.412rem; + font-size: 0.8rem; + line-height: 1.595; + display: block; +} +bolt-ratio { + display: block; + width: 100%; + overflow: hidden; +} +:host { + display: block; + overflow: hidden; +} +.c-bolt-ratio { + display: block; + position: relative; + width: 100%; + --aspect-ratio: 1; +} +@supports (--custom: property) { + bolt-ratio:not(:defined):before { + content: \\"\\"; + display: block; + width: 100%; + padding-bottom: calc(100% / var(--aspect-ratio)); + } + .c-bolt-ratio { + padding-bottom: calc(100% / var(--aspect-ratio)); + } +} +.c-bolt-ratio > *, +.c-bolt-ratio > noscript > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + min-width: 100%; + height: 100%; + min-height: 100%; +} +.c-bolt-ratio ::slotted(*) { + position: absolute; + top: 0; + left: 0; + width: 100%; + min-width: 100%; + height: 100%; + min-height: 100%; +} +" +`; + +exports[`Tests to confirm that the latest upcoming release of the @bolt/build-tools is compiling as expected Check that the default English-specific bolt-global.css file built contains the correct utility class styles for the older u-bolt-margin-bottom syntax. 1`] = ` +"bolt-button { + display: -webkit-inline-box; + display: inline-flex; + outline: 0; +} +:host { + display: -webkit-inline-box; + display: inline-flex; +} +.c-bolt-button { + padding: 0; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + outline: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + font-weight: 600; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + position: relative; + -webkit-transform: translateZ(0); + transform: translateZ(0); + text-decoration: none; + vertical-align: middle; + cursor: pointer; + border-radius: 3px; + border-width: 1px; + border-style: solid; + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08); + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) + ); + will-change: box-shadow; +} +.js-fonts-loaded .c-bolt-button { + font-family: Open Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); +} +.c-bolt-button:before { + content: \\"\\"; + display: block; + opacity: 0.2; + position: absolute; + top: 0; + left: 0; + z-index: -5; + width: 100%; + height: 100%; + pointer-events: none; + border-radius: 3px; + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 2px 1px rgba(6, 10, 36, 0.08) + ); + will-change: box-shadow; +} +.c-bolt-button.is-focus:not(.is-hover):not(.is-disabled), +.c-bolt-button:focus:not(:hover):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + box-shadow: 0 -1px 2px rgba(var(--bolt-theme-background), 1), + 0 1px 2px rgba(var(--bolt-theme-background), 1), 0 0 5px #3b99fc, + 0 -1px 0.65rem #3b99fc, 0 1px 0.65rem #3b99fc; +} +.c-bolt-button--primary { + color: rgba(var(--bolt-theme-text-on-primary), 1); + border-color: rgba(var(--bolt-theme-primary), 1); + background-color: rgba(var(--bolt-theme-primary), 1); +} +.c-bolt-button--primary.is-hover, +.c-bolt-button--primary:hover { + color: rgba(var(--bolt-theme-text-on-primary-lighten-15), 1); + border-color: rgba(var(--bolt-theme-primary-lighten-15), 1); + background-color: rgba(var(--bolt-theme-primary-lighten-15), 1); + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16); +} +.c-bolt-button--primary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--primary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + color: rgba(var(--bolt-theme-text-on-primary-darken-15), 1); + border-color: rgba(var(--bolt-theme-primary-darken-15), 1); + background-color: rgba(var(--bolt-theme-primary-darken-15), 1); +} +.c-bolt-button--primary.is-active, +.c-bolt-button--primary:active { + color: rgba(var(--bolt-theme-text-on-primary-darken-25), 1); + border-color: rgba(var(--bolt-theme-primary-darken-25), 1); + background-color: rgba(var(--bolt-theme-primary-darken-25), 1); + -webkit-transform: translate3d(0, 1px, 0); + transform: translate3d(0, 1px, 0); +} +.c-bolt-button--secondary { + color: rgba(var(--bolt-theme-text-on-secondary), 1); + border-color: rgba(var(--bolt-theme-secondary), 1); + background-color: rgba(var(--bolt-theme-secondary), 1); +} +.c-bolt-button--secondary.is-hover, +.c-bolt-button--secondary:hover { + color: rgba(var(--bolt-theme-text-on-secondary-lighten-5), 1); + border-color: rgba(var(--bolt-theme-secondary-lighten-5), 1); + background-color: rgba(var(--bolt-theme-secondary-lighten-5), 1); + -webkit-transform: translateY(-2px); + transform: translateY(-2px); + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16); +} +.c-bolt-button--secondary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--secondary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + color: rgba(var(--bolt-theme-text-on-secondary-darken-3), 1); + border-color: rgba(var(--bolt-theme-secondary-darken-3), 1); + background-color: rgba(var(--bolt-theme-secondary-darken-3), 1); +} +.c-bolt-button--secondary.is-active, +.c-bolt-button--secondary:active { + color: rgba(var(--bolt-theme-text-on-secondary-darken-10), 1); + border-color: rgba(var(--bolt-theme-secondary-darken-10), 1); + background-color: rgba(var(--bolt-theme-secondary-darken-10), 1); + -webkit-transform: translate3d(0, 1px, 0); + transform: translate3d(0, 1px, 0); +} +.c-bolt-button--text { + opacity: 1; + color: rgba(var(--bolt-theme-headline-link), 1); + text-decoration: none; + border-color: transparent; +} +.c-bolt-button--text, +.c-bolt-button--text.c-bolt-button--disabled, +.c-bolt-button--text[disabled] { + background-color: transparent; +} +.c-bolt-button--text, +.c-bolt-button--text:before { + box-shadow: none; +} +.c-bolt-button--text.is-hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--text:hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + opacity: 0.8; +} +.c-bolt-button--text.is-active, +.c-bolt-button--text.is-focus.is-active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert), +.c-bolt-button--text:active, +.c-bolt-button--text:focus:active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert) { + opacity: 0.6; +} +.c-bolt-button--disabled, +.c-bolt-button[disabled], +[aria-disabled=\\"true\\"] .c-bolt-button { + cursor: not-allowed; +} +.c-bolt-button--disabled, +.c-bolt-button--disabled.is-active, +.c-bolt-button--disabled.is-hover, +.c-bolt-button--disabled:active, +.c-bolt-button--disabled:hover, +.c-bolt-button--disabled:visited, +.c-bolt-button[disabled], +.c-bolt-button[disabled].is-active, +.c-bolt-button[disabled].is-hover, +.c-bolt-button[disabled]:active, +.c-bolt-button[disabled]:hover, +.c-bolt-button[disabled]:visited, +[aria-disabled=\\"true\\"] .c-bolt-button, +[aria-disabled=\\"true\\"] .c-bolt-button.is-active, +[aria-disabled=\\"true\\"] .c-bolt-button.is-hover, +[aria-disabled=\\"true\\"] .c-bolt-button:active, +[aria-disabled=\\"true\\"] .c-bolt-button:hover, +[aria-disabled=\\"true\\"] .c-bolt-button:visited { + color: rgba(var(--bolt-theme-text-disabled), 1); +} +.c-bolt-button--disabled:not(.c-bolt-button--text), +.c-bolt-button--disabled:not(.c-bolt-button--text).is-active, +.c-bolt-button--disabled:not(.c-bolt-button--text).is-hover, +.c-bolt-button--disabled:not(.c-bolt-button--text):active, +.c-bolt-button--disabled:not(.c-bolt-button--text):hover, +.c-bolt-button--disabled:not(.c-bolt-button--text):visited, +.c-bolt-button[disabled]:not(.c-bolt-button--text), +.c-bolt-button[disabled]:not(.c-bolt-button--text).is-active, +.c-bolt-button[disabled]:not(.c-bolt-button--text).is-hover, +.c-bolt-button[disabled]:not(.c-bolt-button--text):active, +.c-bolt-button[disabled]:not(.c-bolt-button--text):hover, +.c-bolt-button[disabled]:not(.c-bolt-button--text):visited, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text), +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text).is-active, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text).is-hover, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):active, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):hover, +[aria-disabled=\\"true\\"] .c-bolt-button:not(.c-bolt-button--text):visited { + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08); + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); + opacity: 1; + -webkit-transform: none; + transform: none; + border-color: rgba(var(--bolt-theme-disabled), 1); + box-shadow: var( + --bolt-button-box-shadow, + 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) + ); + background-color: rgba(var(--bolt-theme-disabled), 1); + will-change: box-shadow; +} +.c-bolt-button--disabled.is-active:before, +.c-bolt-button--disabled.is-hover:before, +.c-bolt-button--disabled:active:before, +.c-bolt-button--disabled:before, +.c-bolt-button--disabled:hover:before, +.c-bolt-button[disabled].is-active:before, +.c-bolt-button[disabled].is-hover:before, +.c-bolt-button[disabled]:active:before, +.c-bolt-button[disabled]:before, +.c-bolt-button[disabled]:hover:before, +[aria-disabled=\\"true\\"] .c-bolt-button.is-active:before, +[aria-disabled=\\"true\\"] .c-bolt-button.is-hover:before, +[aria-disabled=\\"true\\"] .c-bolt-button:active:before, +[aria-disabled=\\"true\\"] .c-bolt-button:before, +[aria-disabled=\\"true\\"] .c-bolt-button:hover:before { + display: none; +} +.c-bolt-button--uppercase { + text-transform: uppercase; +} +.c-bolt-button--lowercase { + text-transform: lowercase; +} +.c-bolt-button--capitalize { + text-transform: capitalize; +} +.c-bolt-button--medium { + padding: 0.825rem 2rem; + font-size: 0.8rem; + line-height: 1.45; +} +.c-bolt-button--medium.c-bolt-button--icon-only { + width: 2.81rem; + min-height: 2.81rem; +} +.c-bolt-button--xsmall { + padding: 0.206rem 0.5rem; + font-size: 0.8rem; + line-height: 1.45; +} +.c-bolt-button--xsmall.c-bolt-button--icon-only { + width: 1.572rem; + min-height: 1.572rem; +} +.c-bolt-button--small { + padding: 0.412rem 1rem; + font-size: 0.8rem; + line-height: 1.45; +} +.c-bolt-button--small.c-bolt-button--icon-only { + width: 1.985rem; + min-height: 1.985rem; +} +.c-bolt-button--large { + padding: 0.825rem 2rem; + font-size: 1rem; + line-height: 1.65; +} +.c-bolt-button--large.c-bolt-button--icon-only { + width: 3.3rem; + min-height: 3.3rem; +} +.c-bolt-button--xlarge { + padding: 1.65rem 4rem; + font-size: 1.111rem; + line-height: 1.45; +} +.c-bolt-button--xlarge.c-bolt-button--icon-only { + width: 4.911rem; + min-height: 4.911rem; +} +.c-bolt-button--icon-only { + padding: 0; +} +.c-bolt-button--icon-only .c-bolt-button__icon, +.c-bolt-button--icon-only .c-bolt-button__item { + margin: 0; +} +.c-bolt-button--icon-only .c-bolt-button__item { + opacity: 0; + width: 0; + overflow: hidden; + color: transparent; + text-indent: -99999em; + white-space: nowrap; +} +.c-bolt-button--icon-only .c-bolt-button__icon-sizer { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); +} +.c-bolt-button--icon-only.c-bolt-button--xsmall .c-bolt-button__icon-sizer { + font-size: 1em; +} +.c-bolt-button--icon-only.c-bolt-button--small .c-bolt-button__icon-sizer { + font-size: 1.25em; +} +.c-bolt-button--icon-only.c-bolt-button--medium .c-bolt-button__icon-sizer { + font-size: 1.5em; +} +.c-bolt-button--icon-only.c-bolt-button--large .c-bolt-button__icon-sizer { + font-size: 1.75em; +} +.c-bolt-button--icon-only.c-bolt-button--xlarge .c-bolt-button__icon-sizer { + font-size: 2em; +} +.c-bolt-button--full, +bolt-button[width=\\"full\\"] { + width: 100%; +} +:host([width=\\"full\\"]) { + width: 100%; +} +@media (max-width: 37.499em) { + .c-bolt-button--full\\\\@small, + bolt-button[width=\\"full@small\\"] { + width: 100%; + } + :host([width=\\"full@small\\"]) { + width: 100%; + } +} +.c-bolt-button--border-radius-regular, +.c-bolt-button--border-radius-regular:before, +bolt-button[border-radius=\\"regular\\"] { + border-radius: 3px; +} +.c-bolt-button--border-radius-full, +.c-bolt-button--border-radius-full:before, +bolt-button[border-radius=\\"full\\"] { + border-radius: 50em; +} +.c-bolt-button__icon.is-empty { + display: none; +} +.c-bolt-button__icon:not(.is-empty) { + display: -webkit-box; + display: flex; +} +.c-bolt-button__item { + display: -webkit-inline-box; + display: inline-flex; + text-align: left; + text-align: start; +} +.c-bolt-button__icon:not(.is-empty) .c-bolt-button__icon-sizer { + display: -webkit-box; + display: flex; +} +.c-bolt-button:not(.c-bolt-button--icon-only) + .c-bolt-button__icon:not(.is-empty) + + .c-bolt-button__item, +.c-bolt-button:not(.c-bolt-button--icon-only) + .c-bolt-button__item + + .c-bolt-button__icon:not(.is-empty) { + margin-left: 0.25rem; +} +.c-bolt-button--center { + -webkit-box-pack: center; + justify-content: center; +} +.c-bolt-button--start { + -webkit-box-pack: start; + justify-content: flex-start; +} +.c-bolt-button--end { + -webkit-box-pack: end; + justify-content: flex-end; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 400; + src: url(/build/fonts/opensans-regular.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-regular.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 400; + src: url(/build/fonts/opensans-italic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-italic.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 600; + src: url(/build/fonts/opensans-semibold.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-semibold.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 600; + src: url(/build/fonts/opensans-semibolditalic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-semibolditalic.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: normal; + font-weight: 800; + src: url(/build/fonts/opensans-extrabold.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-extrabold.woff) format(\\"woff\\"); + font-display: swap; +} +@font-face { + font-family: Open Sans; + font-style: italic; + font-weight: 800; + src: url(/build/fonts/opensans-extrabolditalic.woff2) format(\\"woff2\\"), + url(/build/fonts/opensans-extrabolditalic.woff) format(\\"woff\\"); + font-display: swap; +} +*, +:after, +:before { + -webkit-font-feature-settings: \\"kern\\"; + font-feature-settings: \\"kern\\"; + -webkit-font-kerning: normal; + font-kerning: normal; + box-sizing: border-box; + -webkit-tap-highlight-color: transparent; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +html { + line-height: 1.15; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +main, +menu, +nav, +section { + display: block; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +a { + background-color: transparent; + -webkit-text-decoration-skip: objects; + color: inherit; + text-decoration: none; +} +abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} +b, +strong { + font-weight: bolder; +} +dfn { + font-style: italic; +} +mark { + background-color: #ff0; + color: #000; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +audio, +canvas, +video { + display: inline-block; +} +audio:not([controls]) { + display: none; + height: 0; +} +img { + border-style: none; + max-width: 100%; +} +svg:not(:root) { + overflow: hidden; +} +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; + font-size: 100%; + line-height: 1.15; + margin: 0; +} +button, +input { + overflow: visible; +} +button, +select { + text-transform: none; +} +[type=\\"reset\\"], +[type=\\"submit\\"], +button, +html [type=\\"button\\"] { + -webkit-appearance: button; +} +[type=\\"button\\"]::-moz-focus-inner, +[type=\\"reset\\"]::-moz-focus-inner, +[type=\\"submit\\"]::-moz-focus-inner, +button::-moz-focus-inner { + border-style: none; + padding: 0; +} +[type=\\"button\\"]:-moz-focusring, +[type=\\"reset\\"]:-moz-focusring, +[type=\\"submit\\"]:-moz-focusring, +button:-moz-focusring { + outline: 1px dotted ButtonText; +} +[type=\\"checkbox\\"], +[type=\\"radio\\"] { + box-sizing: border-box; + padding: 0; +} +[type=\\"number\\"]::-webkit-inner-spin-button, +[type=\\"number\\"]::-webkit-outer-spin-button { + height: auto; +} +[type=\\"search\\"] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +[type=\\"search\\"]::-webkit-search-cancel-button, +[type=\\"search\\"]::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} +legend { + box-sizing: border-box; + display: table; + max-width: 100%; + color: inherit; + white-space: normal; +} +progress { + display: inline-block; + vertical-align: baseline; +} +textarea { + overflow: auto; +} +summary { + display: list-item; +} +[hidden], +template { + display: none; +} +address, +blockquote, +body, +dd, +details, +dl, +fieldset, +figure, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +legend, +ol, +p, +pre, +summary, +table, +ul { + margin: 0; + padding: 0; +} +::-moz-selection { + text-shadow: none; + background-color: #abb3f2; +} +::selection { + text-shadow: none; + background-color: #abb3f2; +} +li > ol, +li > ul { + margin-bottom: 0; +} +table { + width: 100%; + border-spacing: 0; + border-collapse: collapse; +} +fieldset { + min-width: 0; + border: 0; +} +address, +blockquote, +details, +dl, +fieldset, +hr, +legend, +ol, +p, +pre, +summary, +table, +ul { + margin-bottom: 1.65rem; +} +dd, +ol, +ul { + margin-left: 2rem; +} +code, +pre { + white-space: -moz-pre-wrap; + white-space: -o-pre-wrap; + white-space: pre-wrap; + word-spacing: normal; + word-break: normal; + word-wrap: break-word; + color: rgba(var(--bolt-theme-text), 1); + text-align: left; + border-radius: 3px; +} +pre { + padding: 0.412rem 1rem; + overflow-y: auto; + overflow-x: auto; + display: block; + background-color: rgba(84, 93, 166, 0.08); +} +code { + margin: 0; + padding: 2px 0.25rem 2px 0.3rem; + font-family: monospace, monospace; + font-family: var(--bolt-font-family-code); + font-weight: 400; + font-size: 0.9rem; + line-height: 1.51; + display: inline; + letter-spacing: 0.05rem; + background-color: rgba(84, 93, 166, 0.08); +} +.js-fonts-loaded code { + font-family: monospace, monospace; + font-family: var(--bolt-font-family-code); +} +pre code { + padding: 0; + display: block; + background-color: transparent; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin-bottom: 0.412rem; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-heading); + font-size: 1.111rem; + line-height: 1.45; + font-weight: 800; +} +.js-fonts-loaded h1, +.js-fonts-loaded h2, +.js-fonts-loaded h3, +.js-fonts-loaded h4, +.js-fonts-loaded h5, +.js-fonts-loaded h6 { + font-family: Open Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-heading); +} +h1:last-child, +h2:last-child, +h3:last-child, +h4:last-child, +h5:last-child, +h6:last-child { + margin-bottom: 0; +} +hr { + box-sizing: content-box; + height: 0; + overflow: visible; + opacity: 0.2; + width: 100%; + border-top-color: var(--bolt-theme-border, currentColor); + margin-top: 1.65rem; + margin-bottom: 1.65rem; +} +a:not([class]) { + color: #545da6; + text-decoration: underline; +} +.t-bolt-light a:not([class]), +.t-bolt-xlight a:not([class]) { + color: #545da6; +} +.t-bolt-dark a:not([class]), +.t-bolt-medium a:not([class]), +.t-bolt-xdark a:not([class]) { + color: #fff; +} +details:hover { + cursor: pointer; +} +html { + font-size: 14px; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); + --bolt-font-family-body: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, + Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + --bolt-font-family-bodySubset: -apple-system, BlinkMacSystemFont, Segoe UI, + Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, + sans-serif; + --bolt-font-family-heading: -apple-system, BlinkMacSystemFont, Segoe UI, + Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, + sans-serif; + --bolt-font-family-code: monospace, monospace; +} +@media (min-width: 320px) { + html { + font-size: calc(1.25vw + 10px); + } +} +@media (min-width: 400px) { + html { + font-size: calc(0.1vw + 14.6px); + } +} +@media (min-width: 1400px) { + html { + font-size: calc(0.385vw + 10.615px); + } +} +@media (min-width: 1920px) { + html { + font-size: 18px; + } +} +html.js-fonts-loaded { + --bolt-font-family-body: Open Sans, Helvetica Neue, sans-serif; + --bolt-font-family-bodySubset: OpenSansSubset, Helvetica Neue, sans-serif; + --bolt-font-family-heading: Open Sans, Helvetica Neue, sans-serif; + --bolt-font-family-code: monospace, monospace; + font-family: Open Sans, Helvetica Neue, sans-serif; +} +body { + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); + font-size: 1rem; + line-height: 1.65; + width: 100%; + margin: 0; + color: #060923; +} +.js-fonts-loaded body { + font-family: Open Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); +} +p:last-child { + margin-bottom: 1px; +} +small { + font-size: 0.8rem; + line-height: 1.45; +} +tfoot, +thead { + white-space: nowrap; +} +td, +th { + font-size: 0.9rem; + line-height: 1.51; +} +tfoot td, +thead th { + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-heading); + font-weight: 800; +} +.js-fonts-loaded tfoot td, +.js-fonts-loaded thead th { + font-family: Open Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-heading); +} +td { + vertical-align: top; +} +.o-bolt-bare-list, +bolt-bare-list > * { + margin: 0; + padding: 0; + list-style: none; +} +.o-bolt-block, +.o-bolt-block__body { + display: block; +} +.o-bolt-block--flush > .o-bolt-block__image { + margin-bottom: 0; +} +.o-bolt-block--xsmall > .o-bolt-block__image { + margin-bottom: 0.412rem; +} +.o-bolt-block--small > .o-bolt-block__image { + margin-bottom: 0.825rem; +} +.o-bolt-block--medium > .o-bolt-block__image { + margin-bottom: 1.65rem; +} +.o-bolt-block--large > .o-bolt-block__image { + margin-bottom: 3.3rem; +} +.o-bolt-block--left { + text-align: left; +} +.o-bolt-block--center { + text-align: center; +} +.o-bolt-block--right { + text-align: right; +} +.o-bolt-crop { + display: block; + position: relative; + overflow: hidden; +} +.o-bolt-crop__content { + position: absolute; + top: 0; + left: 0; + min-width: 100%; + max-width: none; + min-height: 100%; +} +.o-bolt-crop--right > .o-bolt-crop__content { + right: 0; + left: auto; +} +.o-bolt-crop--bottom > .o-bolt-crop__content { + top: auto; + bottom: 0; +} +.o-bolt-crop--center > .o-bolt-crop__content { + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.o-bolt-crop--1\\\\:1 { + padding-bottom: 100%; +} +.o-bolt-crop--4\\\\:3 { + padding-bottom: 75%; +} +.o-bolt-crop--3\\\\:4 { + padding-bottom: 133.333%; +} +.o-bolt-crop--16\\\\:9 { + padding-bottom: 56.25%; +} +.o-bolt-flag { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; +} +.o-bolt-flag:not(:last-child) { + margin-bottom: 1.65rem; +} +.o-bolt-flag__body { + flex-basis: auto; + -webkit-box-flex: 1; + flex-grow: 1; + flex-shrink: 1; + width: 100%; +} +.o-bolt-flag--rev { + direction: rtl; +} +.o-bolt-flag--rev > .o-bolt-flag__body { + direction: ltr; +} +.o-bolt-flag--top { + -webkit-box-align: start; + align-items: flex-start; + vertical-align: top; +} +.o-bolt-flag--middle { + -webkit-box-align: center; + align-items: center; + vertical-align: middle; +} +.o-bolt-flag--bottom { + -webkit-box-align: end; + align-items: flex-end; + vertical-align: bottom; +} +.o-bolt-flag--small > .o-bolt-flag__figure { + margin-right: 1rem; +} +.o-bolt-flag--medium > .o-bolt-flag__figure { + margin-right: 2rem; +} +.o-bolt-grid { + -webkit-box-flex: 1; + flex: 1 1 auto; + margin: 0 0 0 -2rem; + padding: 0; + list-style: none; + font-size: 0; +} +.o-bolt-grid__cell { + display: inline-block; + padding-left: 2rem; + vertical-align: top; + font-size: 1rem; +} +.o-bolt-grid--rev { + direction: rtl; +} +.o-bolt-grid--rev > .o-bolt-grid__cell { + direction: ltr; +} +.o-bolt-grid--full { + margin-left: 0; +} +.o-bolt-grid--full > .o-bolt-grid__cell { + padding-left: 0; +} +.o-bolt-grid--center { + -webkit-box-pack: center; + justify-content: center; + text-align: center; +} +.o-bolt-grid--center > .o-bolt-grid__cell { + text-align: left; +} +.o-bolt-grid--middle.o-bolt-grid--flex { + -webkit-box-align: center; + align-items: center; +} +.o-bolt-grid--middle > .o-bolt-grid__cell { + vertical-align: middle; +} +.o-bolt-grid--bottom > .o-bolt-grid__cell { + vertical-align: bottom; +} +.o-bolt-grid--right { + -webkit-box-pack: end; + justify-content: flex-end; + text-align: right; +} +.o-bolt-grid--right > .o-bolt-grid__cell { + text-align: left; +} +.o-bolt-grid__cell--middle { + -ms-grid-row-align: center; + align-self: center; + vertical-align: middle; +} +.o-bolt-grid__cell--top { + align-self: flex-start; + vertical-align: top; +} +.o-bolt-grid__cell--bottom { + align-self: flex-end; + vertical-align: bottom; +} +.o-bolt-grid--small { + margin-left: -1rem; +} +.o-bolt-grid--small > .o-bolt-grid__cell { + padding-left: 1rem; +} +.o-bolt-grid--large { + margin-left: -4rem; +} +.o-bolt-grid--large > .o-bolt-grid__cell { + padding-left: 4rem; +} +.o-bolt-grid--xlarge { + margin-left: -4rem; +} +.o-bolt-grid--xlarge > .o-bolt-grid__cell { + padding-left: 4rem; +} +.o-bolt-grid--flex { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; +} +.o-bolt-grid--matrix { + margin-bottom: -1.65rem; +} +.o-bolt-grid--matrix > .o-bolt-grid__cell { + padding-bottom: 1.65rem; +} +bolt-inline-list { + display: block; +} +bolt-inline-list:not(:last-child) { + margin-bottom: 0.825rem; +} +.o-bolt-inline-list { + display: block; + margin: 0; + padding: 0; + list-style: none; + letter-spacing: -0.35em; +} +.o-bolt-inline-list__item { + display: inline-block; + letter-spacing: normal; +} +.o-bolt-inline-list--delimited + > .o-bolt-inline-list__item:not(:last-child):after { + content: \\"|\\"; + color: currentColor; +} +.o-bolt-inline-list--xsmall.o-bolt-inline-list--matrix { + margin-bottom: -0.412rem; +} +.o-bolt-inline-list--xsmall.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item { + margin-bottom: 0.412rem; +} +.o-bolt-inline-list--xsmall > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 0.5rem; +} +.o-bolt-inline-list--xsmall > .o-bolt-inline-list__item:not(:last-child):after { + margin-left: 0.5rem; +} +.o-bolt-inline-list--small.o-bolt-inline-list--matrix { + margin-bottom: -0.825rem; +} +.o-bolt-inline-list--small.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item { + margin-bottom: 0.825rem; +} +.o-bolt-inline-list--small > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 1rem; +} +.o-bolt-inline-list--small > .o-bolt-inline-list__item:not(:last-child):after { + margin-left: 1rem; +} +.o-bolt-inline-list--medium.o-bolt-inline-list--matrix { + margin-bottom: -1.65rem; +} +.o-bolt-inline-list--medium.o-bolt-inline-list--matrix + > .o-bolt-inline-list__item:after { + margin-bottom: 1.65rem; +} +.o-bolt-inline-list--medium > .o-bolt-inline-list__item:not(:last-child) { + margin-right: 2rem; +} +.o-bolt-inline-list--medium > .o-bolt-inline-list__item:after { + margin-left: 2rem; +} +.o-bolt-island--small { + padding: 0.825rem 1rem; +} +.o-bolt-island, +.o-bolt-island--medium { + padding: 1.65rem 2rem; +} +.o-bolt-island--large { + padding: 3.3rem 4rem; +} +.o-bolt-ui-list { + margin: 0; + padding: 0; + list-style: none; +} +.o-bolt-ui-list__item { + position: relative; +} +.o-bolt-ui-list__item:not(:last-child) { + border-bottom-color: rgba(var(--bolt-theme-border), 0.2); + border-bottom-style: solid; + border-bottom-width: 1px; +} +.o-bolt-ui-list__item > :last-child { + margin-bottom: 0; +} +.o-bolt-ui-list--medium > .o-bolt-ui-list__item, +.o-bolt-ui-list > .o-bolt-ui-list__item { + padding: 1.65rem 0; +} +.o-bolt-ui-list--collapsed > .o-bolt-ui-list__item { + padding: 0; +} +.o-bolt-ui-list--xxsmall > .o-bolt-ui-list__item { + padding: 0.206rem 0; +} +.o-bolt-ui-list--xsmall > .o-bolt-ui-list__item { + padding: 0.412rem 0; +} +.o-bolt-ui-list--borderless > .o-bolt-ui-list__item { + border-bottom-width: 0; +} +.o-bolt-ui-list--small > .o-bolt-ui-list__item { + padding: 0.825rem 0; +} +.o-bolt-ui-list--medium > .o-bolt-ui-list__item { + padding: 1.65rem 0; +} +.o-bolt-ui-list--large > .o-bolt-ui-list__item { + padding: 3.3rem 0; +} +.o-bolt-wrapper { + padding-left: 2rem; + padding-right: 2rem; + margin-left: auto; + margin-right: auto; + display: block; +} +@media (min-width: 50em) { + .o-bolt-wrapper { + padding-left: 4rem; + padding-right: 4rem; + } +} +.o-bolt-wrapper, +.o-bolt-wrapper--xxlarge { + max-width: 1400px; +} +.o-bolt-wrapper--medium { + max-width: 800px; + padding: 0; +} +.t-bolt-xlight, +:root { + --bolt-theme-background: 255, 255, 255; + --bolt-theme-border: 22, 26, 60; + --bolt-theme-contrast-filter: none; + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 84, 93, 166; + --bolt-theme-headline: 31, 38, 86; + --bolt-theme-link: 84, 93, 166; + --bolt-theme-primary: 84, 93, 166; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 21, 22, 25; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 255, 255, 255; + --bolt-theme-primary-lighten-5: 93, 101, 170; + --bolt-theme-text-on-primary-lighten-5: 255, 255, 255; + --bolt-theme-primary-lighten-10: 101, 109, 175; + --bolt-theme-text-on-primary-lighten-10: 255, 255, 255; + --bolt-theme-primary-lighten-15: 110, 117, 179; + --bolt-theme-text-on-primary-lighten-15: 255, 255, 255; + --bolt-theme-primary-lighten-20: 118, 125, 184; + --bolt-theme-text-on-primary-lighten-20: 255, 255, 255; + --bolt-theme-primary-lighten-25: 127, 134, 188; + --bolt-theme-text-on-primary-lighten-25: 255, 255, 255; + --bolt-theme-primary-darken-3: 82, 91, 162; + --bolt-theme-text-on-primary-darken-3: 255, 255, 255; + --bolt-theme-primary-darken-5: 81, 89, 159; + --bolt-theme-text-on-primary-darken-5: 255, 255, 255; + --bolt-theme-primary-darken-10: 78, 86, 152; + --bolt-theme-text-on-primary-darken-10: 255, 255, 255; + --bolt-theme-primary-darken-15: 75, 82, 145; + --bolt-theme-text-on-primary-darken-15: 255, 255, 255; + --bolt-theme-primary-darken-20: 71, 79, 138; + --bolt-theme-text-on-primary-darken-20: 255, 255, 255; + --bolt-theme-primary-darken-25: 68, 75, 131; + --bolt-theme-text-on-primary-darken-25: 255, 255, 255; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #151619; + color: rgba(var(--bolt-theme-text), 1); + background-color: #fff; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-light { + --bolt-theme-background: 246, 246, 249; + --bolt-theme-border: 22, 26, 60; + --bolt-theme-contrast-filter: none; + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 84, 93, 166; + --bolt-theme-headline: 31, 38, 86; + --bolt-theme-link: 84, 93, 166; + --bolt-theme-primary: 84, 93, 166; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 21, 22, 25; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 255, 255, 255; + --bolt-theme-primary-lighten-5: 93, 101, 170; + --bolt-theme-text-on-primary-lighten-5: 255, 255, 255; + --bolt-theme-primary-lighten-10: 101, 109, 175; + --bolt-theme-text-on-primary-lighten-10: 255, 255, 255; + --bolt-theme-primary-lighten-15: 110, 117, 179; + --bolt-theme-text-on-primary-lighten-15: 255, 255, 255; + --bolt-theme-primary-lighten-20: 118, 125, 184; + --bolt-theme-text-on-primary-lighten-20: 255, 255, 255; + --bolt-theme-primary-lighten-25: 127, 134, 188; + --bolt-theme-text-on-primary-lighten-25: 255, 255, 255; + --bolt-theme-primary-darken-3: 82, 91, 162; + --bolt-theme-text-on-primary-darken-3: 255, 255, 255; + --bolt-theme-primary-darken-5: 81, 89, 159; + --bolt-theme-text-on-primary-darken-5: 255, 255, 255; + --bolt-theme-primary-darken-10: 78, 86, 152; + --bolt-theme-text-on-primary-darken-10: 255, 255, 255; + --bolt-theme-primary-darken-15: 75, 82, 145; + --bolt-theme-text-on-primary-darken-15: 255, 255, 255; + --bolt-theme-primary-darken-20: 71, 79, 138; + --bolt-theme-text-on-primary-darken-20: 255, 255, 255; + --bolt-theme-primary-darken-25: 68, 75, 131; + --bolt-theme-text-on-primary-darken-25: 255, 255, 255; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #151619; + color: rgba(var(--bolt-theme-text), 1); + background-color: #f6f6f9; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-dark { + --bolt-theme-background: 31, 38, 86; + --bolt-theme-border: 255, 255, 255; + --bolt-theme-contrast-filter: grayscale(100%) invert(100%) brightness(150%); + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 255, 255, 255; + --bolt-theme-headline: 255, 255, 255; + --bolt-theme-link: 255, 255, 255; + --bolt-theme-primary: 255, 204, 77; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 255, 255, 255; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 21, 22, 25; + --bolt-theme-primary-lighten-5: 255, 207, 86; + --bolt-theme-text-on-primary-lighten-5: 21, 22, 25; + --bolt-theme-primary-lighten-10: 255, 209, 95; + --bolt-theme-text-on-primary-lighten-10: 21, 22, 25; + --bolt-theme-primary-lighten-15: 255, 212, 104; + --bolt-theme-text-on-primary-lighten-15: 21, 22, 25; + --bolt-theme-primary-lighten-20: 255, 214, 113; + --bolt-theme-text-on-primary-lighten-20: 21, 22, 25; + --bolt-theme-primary-lighten-25: 255, 217, 122; + --bolt-theme-text-on-primary-lighten-25: 21, 22, 25; + --bolt-theme-primary-darken-3: 248, 199, 75; + --bolt-theme-text-on-primary-darken-3: 21, 22, 25; + --bolt-theme-primary-darken-5: 243, 195, 74; + --bolt-theme-text-on-primary-darken-5: 21, 22, 25; + --bolt-theme-primary-darken-10: 232, 186, 72; + --bolt-theme-text-on-primary-darken-10: 21, 22, 25; + --bolt-theme-primary-darken-15: 220, 177, 69; + --bolt-theme-text-on-primary-darken-15: 21, 22, 25; + --bolt-theme-primary-darken-20: 208, 168, 67; + --bolt-theme-text-on-primary-darken-20: 21, 22, 25; + --bolt-theme-primary-darken-25: 197, 159, 64; + --bolt-theme-text-on-primary-darken-25: 21, 22, 25; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #fff; + color: rgba(var(--bolt-theme-text), 1); + background-color: #1f2656; + background-color: rgba(var(--bolt-theme-background), 1); +} +.t-bolt-xdark { + --bolt-theme-background: 22, 26, 60; + --bolt-theme-border: 255, 255, 255; + --bolt-theme-contrast-filter: grayscale(100%) invert(100%) brightness(150%); + --bolt-theme-disabled: 224, 226, 235; + --bolt-theme-headline-link: 255, 255, 255; + --bolt-theme-headline: 255, 255, 255; + --bolt-theme-link: 255, 255, 255; + --bolt-theme-primary: 255, 204, 77; + --bolt-theme-secondary: 255, 255, 255; + --bolt-theme-text-disabled: 141, 142, 153; + --bolt-theme-text: 255, 255, 255; + --bolt-theme-neutral: 141, 142, 153; + --bolt-theme-brand: 31, 38, 86; + --bolt-theme-text-on-primary: 21, 22, 25; + --bolt-theme-primary-lighten-5: 255, 207, 86; + --bolt-theme-text-on-primary-lighten-5: 21, 22, 25; + --bolt-theme-primary-lighten-10: 255, 209, 95; + --bolt-theme-text-on-primary-lighten-10: 21, 22, 25; + --bolt-theme-primary-lighten-15: 255, 212, 104; + --bolt-theme-text-on-primary-lighten-15: 21, 22, 25; + --bolt-theme-primary-lighten-20: 255, 214, 113; + --bolt-theme-text-on-primary-lighten-20: 21, 22, 25; + --bolt-theme-primary-lighten-25: 255, 217, 122; + --bolt-theme-text-on-primary-lighten-25: 21, 22, 25; + --bolt-theme-primary-darken-3: 248, 199, 75; + --bolt-theme-text-on-primary-darken-3: 21, 22, 25; + --bolt-theme-primary-darken-5: 243, 195, 74; + --bolt-theme-text-on-primary-darken-5: 21, 22, 25; + --bolt-theme-primary-darken-10: 232, 186, 72; + --bolt-theme-text-on-primary-darken-10: 21, 22, 25; + --bolt-theme-primary-darken-15: 220, 177, 69; + --bolt-theme-text-on-primary-darken-15: 21, 22, 25; + --bolt-theme-primary-darken-20: 208, 168, 67; + --bolt-theme-text-on-primary-darken-20: 21, 22, 25; + --bolt-theme-primary-darken-25: 197, 159, 64; + --bolt-theme-text-on-primary-darken-25: 21, 22, 25; + --bolt-theme-text-on-secondary: 21, 22, 25; + --bolt-theme-secondary-lighten-5: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-5: 21, 22, 25; + --bolt-theme-secondary-lighten-10: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-10: 21, 22, 25; + --bolt-theme-secondary-lighten-15: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-15: 21, 22, 25; + --bolt-theme-secondary-lighten-20: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-20: 21, 22, 25; + --bolt-theme-secondary-lighten-25: 255, 255, 255; + --bolt-theme-text-on-secondary-lighten-25: 21, 22, 25; + --bolt-theme-secondary-darken-3: 248, 248, 248; + --bolt-theme-text-on-secondary-darken-3: 21, 22, 25; + --bolt-theme-secondary-darken-5: 243, 243, 243; + --bolt-theme-text-on-secondary-darken-5: 21, 22, 25; + --bolt-theme-secondary-darken-10: 232, 232, 232; + --bolt-theme-text-on-secondary-darken-10: 21, 22, 25; + --bolt-theme-secondary-darken-15: 220, 220, 220; + --bolt-theme-text-on-secondary-darken-15: 21, 22, 25; + --bolt-theme-secondary-darken-20: 208, 208, 209; + --bolt-theme-text-on-secondary-darken-20: 21, 22, 25; + --bolt-theme-secondary-darken-25: 197, 197, 197; + --bolt-theme-text-on-secondary-darken-25: 21, 22, 25; + --bolt-theme-text-on-brand: 255, 255, 255; + --bolt-theme-brand-lighten-5: 42, 49, 94; + --bolt-theme-text-on-brand-lighten-5: 255, 255, 255; + --bolt-theme-brand-lighten-10: 53, 60, 103; + --bolt-theme-text-on-brand-lighten-10: 255, 255, 255; + --bolt-theme-brand-lighten-15: 65, 71, 111; + --bolt-theme-text-on-brand-lighten-15: 255, 255, 255; + --bolt-theme-brand-lighten-20: 76, 81, 120; + --bolt-theme-text-on-brand-lighten-20: 255, 255, 255; + --bolt-theme-brand-lighten-25: 87, 92, 128; + --bolt-theme-text-on-brand-lighten-25: 255, 255, 255; + --bolt-theme-brand-darken-3: 31, 38, 84; + --bolt-theme-text-on-brand-darken-3: 255, 255, 255; + --bolt-theme-brand-darken-5: 31, 37, 83; + --bolt-theme-text-on-brand-darken-5: 255, 255, 255; + --bolt-theme-brand-darken-10: 30, 36, 80; + --bolt-theme-text-on-brand-darken-10: 255, 255, 255; + --bolt-theme-brand-darken-15: 30, 36, 77; + --bolt-theme-text-on-brand-darken-15: 255, 255, 255; + --bolt-theme-brand-darken-20: 29, 35, 74; + --bolt-theme-text-on-brand-darken-20: 255, 255, 255; + --bolt-theme-brand-darken-25: 29, 34, 71; + --bolt-theme-text-on-brand-darken-25: 255, 255, 255; + color: #fff; + color: rgba(var(--bolt-theme-text), 1); + background-color: #161a3c; + background-color: rgba(var(--bolt-theme-background), 1); +} +.u-bolt-border-radius-small { + border-radius: 3px !important; +} +.u-bolt-border-radius-large { + border-radius: 0.75em !important; +} +.u-bolt-border-radius-full { + border-radius: 100em !important; +} +.u-bolt-clearfix:after, +.u-bolt-clearfix:before { + content: \\" \\" !important; + display: table !important; +} +.u-bolt-clearfix:after { + clear: both !important; +} +.u-bolt-color-indigo-xdark { + color: #060923 !important; +} +.u-bolt-color-indigo-dark { + color: #161a3c !important; +} +.u-bolt-color-indigo { + color: #1f2656 !important; +} +.u-bolt-color-indigo-light { + color: #545da6 !important; +} +.u-bolt-color-indigo-xlight { + color: #abb3f2 !important; +} +.u-bolt-color-yellow-xdark { + color: #664900 !important; +} +.u-bolt-color-yellow-dark { + color: #e8ad17 !important; +} +.u-bolt-color-yellow { + color: #ffcc4d !important; +} +.u-bolt-color-yellow-light { + color: #ffe299 !important; +} +.u-bolt-color-yellow-xlight { + color: #fff1cc !important; +} +.u-bolt-color-teal-xdark { + color: #033 !important; +} +.u-bolt-color-teal-dark { + color: #0a6666 !important; +} +.u-bolt-color-teal { + color: #099 !important; +} +.u-bolt-color-teal-light { + color: #7acdcd !important; +} +.u-bolt-color-teal-xlight { + color: #b7e6e6 !important; +} +.u-bolt-color-orange-xdark { + color: #661a00 !important; +} +.u-bolt-color-orange-dark { + color: #b53b12 !important; +} +.u-bolt-color-orange { + color: #e84b17 !important; +} +.u-bolt-color-orange-light { + color: #ff8c66 !important; +} +.u-bolt-color-orange-xlight { + color: #ffc6b3 !important; +} +.u-bolt-color-gray-xdark { + color: #2e2e33 !important; +} +.u-bolt-color-gray-dark { + color: #5c5d66 !important; +} +.u-bolt-color-gray { + color: #8d8e99 !important; +} +.u-bolt-color-gray-light { + color: #e0e2eb !important; +} +.u-bolt-color-gray-xlight { + color: #f6f6f9 !important; +} +.u-bolt-color-black { + color: #151619 !important; +} +.u-bolt-color-white { + color: #fff !important; +} +.u-bolt-color-blue-dark { + color: #005380 !important; +} +.u-bolt-color-blue { + color: #0074b3 !important; +} +.u-bolt-color-blue-light { + color: #d6f1ff !important; +} +.u-bolt-color-success-dark { + color: #256940 !important; +} +.u-bolt-color-success { + color: #357e38 !important; +} +.u-bolt-color-success-light { + color: #dbf0dc !important; +} +.u-bolt-color-error-dark { + color: #9d2315 !important; +} +.u-bolt-color-error { + color: #b42818 !important; +} +.u-bolt-color-error-light { + color: #fad5d1 !important; +} +.u-bolt-color-warning-dark { + color: #cfb317 !important; +} +.u-bolt-color-warning { + color: #e8cd30 !important; +} +.u-bolt-color-warning-light { + color: #faf4d1 !important; +} +.u-bolt-color-social-facebook { + color: #3a579c !important; +} +.u-bolt-color-social-twitter { + color: #00aceb !important; +} +.u-bolt-color-social-linkedin { + color: #0476b4 !important; +} +.u-bolt-block { + display: block !important; +} +.u-bolt-inline-block { + display: inline-block !important; +} +.u-bolt-inline { + display: inline !important; +} +.u-bolt-table { + display: table !important; +} +.u-bolt-table-row { + display: table-row !important; +} +.u-bolt-table-cell { + display: table-cell !important; +} +.u-bolt-hidden { + display: none !important; +} +.u-bolt-flex { + display: -webkit-box !important; + display: flex !important; +} +.u-bolt-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; +} +.u-bolt-flex-grow { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; +} +.u-bolt-flex-shrink { + flex-shrink: 1 !important; +} +.u-bolt-flex-basis-auto { + flex-basis: auto !important; +} +.u-bolt-height-xxsmall { + height: 0.25rem !important; +} +.u-bolt-height-xsmall { + height: 0.5rem !important; +} +.u-bolt-height-small { + height: 1rem !important; +} +.u-bolt-height-medium { + height: 2rem !important; +} +.u-bolt-height-large { + height: 4rem !important; +} +.u-bolt-height-xlarge { + height: 8rem !important; +} +.u-bolt-height-xxlarge { + height: 16rem !important; +} +.u-bolt-height-none { + height: 0 !important; +} +.u-bolt-height-auto { + height: auto !important; +} +.u-bolt-height-full { + height: 100% !important; +} +.u-bolt-height-screen { + height: 100vh !important; +} +.u-bolt-min-height-xxsmall { + min-height: 0.25rem !important; +} +.u-bolt-min-height-xsmall { + min-height: 0.5rem !important; +} +.u-bolt-min-height-small { + min-height: 1rem !important; +} +.u-bolt-min-height-medium { + min-height: 2rem !important; +} +.u-bolt-min-height-large { + min-height: 4rem !important; +} +.u-bolt-min-height-xlarge { + min-height: 8rem !important; +} +.u-bolt-min-height-xxlarge { + min-height: 16rem !important; +} +.u-bolt-min-height-none { + min-height: 0 !important; +} +.u-bolt-min-height-auto { + min-height: auto !important; +} +.u-bolt-min-height-full { + min-height: 100% !important; +} +.u-bolt-min-height-screen { + min-height: 100vh !important; +} +.u-bolt-opacity-0 { + opacity: 0; +} +@media (min-width: 20em) { + .u-bolt-block\\\\@xxsmall { + display: block !important; + } + .u-bolt-inline-block\\\\@xxsmall { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxsmall { + display: inline !important; + } + .u-bolt-table\\\\@xxsmall { + display: table !important; + } + .u-bolt-table-row\\\\@xxsmall { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxsmall { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxsmall { + display: none !important; + } + .u-bolt-flex\\\\@xxsmall { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxsmall { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxsmall { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxsmall { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxsmall { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@xxsmall { + height: 2rem !important; + } + .u-bolt-height-large\\\\@xxsmall { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@xxsmall { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@xxsmall { + height: 16rem !important; + } + .u-bolt-height-none\\\\@xxsmall { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxsmall { + height: auto !important; + } + .u-bolt-height-full\\\\@xxsmall { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxsmall { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxsmall { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxsmall { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxsmall { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@xxsmall { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@xxsmall { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxsmall { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxsmall { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@xxsmall { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxsmall { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxsmall { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxsmall { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxsmall { + opacity: 0; + } +} +@media (min-width: 25em) { + .u-bolt-block\\\\@xsmall { + display: block !important; + } + .u-bolt-inline-block\\\\@xsmall { + display: inline-block !important; + } + .u-bolt-inline\\\\@xsmall { + display: inline !important; + } + .u-bolt-table\\\\@xsmall { + display: table !important; + } + .u-bolt-table-row\\\\@xsmall { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xsmall { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xsmall { + display: none !important; + } + .u-bolt-flex\\\\@xsmall { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xsmall { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xsmall { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xsmall { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xsmall { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@xsmall { + height: 2rem !important; + } + .u-bolt-height-large\\\\@xsmall { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@xsmall { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@xsmall { + height: 16rem !important; + } + .u-bolt-height-none\\\\@xsmall { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xsmall { + height: auto !important; + } + .u-bolt-height-full\\\\@xsmall { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xsmall { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xsmall { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xsmall { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xsmall { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@xsmall { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@xsmall { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@xsmall { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xsmall { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@xsmall { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xsmall { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xsmall { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xsmall { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xsmall { + opacity: 0; + } +} +@media (min-width: 37.5em) { + .u-bolt-block\\\\@small { + display: block !important; + } + .u-bolt-inline-block\\\\@small { + display: inline-block !important; + } + .u-bolt-inline\\\\@small { + display: inline !important; + } + .u-bolt-table\\\\@small { + display: table !important; + } + .u-bolt-table-row\\\\@small { + display: table-row !important; + } + .u-bolt-table-cell\\\\@small { + display: table-cell !important; + } + .u-bolt-hidden\\\\@small { + display: none !important; + } + .u-bolt-flex\\\\@small { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@small { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@small { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@small { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@small { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@small { + height: 2rem !important; + } + .u-bolt-height-large\\\\@small { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@small { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@small { + height: 16rem !important; + } + .u-bolt-height-none\\\\@small { + height: 0 !important; + } + .u-bolt-height-auto\\\\@small { + height: auto !important; + } + .u-bolt-height-full\\\\@small { + height: 100% !important; + } + .u-bolt-height-screen\\\\@small { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@small { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@small { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@small { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@small { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@small { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@small { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@small { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@small { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@small { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@small { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@small { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@small { + opacity: 0; + } +} +@media (min-width: 50em) { + .u-bolt-block\\\\@medium { + display: block !important; + } + .u-bolt-inline-block\\\\@medium { + display: inline-block !important; + } + .u-bolt-inline\\\\@medium { + display: inline !important; + } + .u-bolt-table\\\\@medium { + display: table !important; + } + .u-bolt-table-row\\\\@medium { + display: table-row !important; + } + .u-bolt-table-cell\\\\@medium { + display: table-cell !important; + } + .u-bolt-hidden\\\\@medium { + display: none !important; + } + .u-bolt-flex\\\\@medium { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@medium { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@medium { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@medium { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@medium { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@medium { + height: 2rem !important; + } + .u-bolt-height-large\\\\@medium { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@medium { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@medium { + height: 16rem !important; + } + .u-bolt-height-none\\\\@medium { + height: 0 !important; + } + .u-bolt-height-auto\\\\@medium { + height: auto !important; + } + .u-bolt-height-full\\\\@medium { + height: 100% !important; + } + .u-bolt-height-screen\\\\@medium { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@medium { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@medium { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@medium { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@medium { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@medium { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@medium { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@medium { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@medium { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@medium { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@medium { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@medium { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@medium { + opacity: 0; + } +} +@media (min-width: 62.5em) { + .u-bolt-block\\\\@large { + display: block !important; + } + .u-bolt-inline-block\\\\@large { + display: inline-block !important; + } + .u-bolt-inline\\\\@large { + display: inline !important; + } + .u-bolt-table\\\\@large { + display: table !important; + } + .u-bolt-table-row\\\\@large { + display: table-row !important; + } + .u-bolt-table-cell\\\\@large { + display: table-cell !important; + } + .u-bolt-hidden\\\\@large { + display: none !important; + } + .u-bolt-flex\\\\@large { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@large { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@large { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@large { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@large { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@large { + height: 2rem !important; + } + .u-bolt-height-large\\\\@large { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@large { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@large { + height: 16rem !important; + } + .u-bolt-height-none\\\\@large { + height: 0 !important; + } + .u-bolt-height-auto\\\\@large { + height: auto !important; + } + .u-bolt-height-full\\\\@large { + height: 100% !important; + } + .u-bolt-height-screen\\\\@large { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@large { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@large { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@large { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@large { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@large { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@large { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@large { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@large { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@large { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@large { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@large { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@large { + opacity: 0; + } +} +@media (min-width: 75em) { + .u-bolt-block\\\\@xlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xlarge { + display: inline !important; + } + .u-bolt-table\\\\@xlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xlarge { + display: none !important; + } + .u-bolt-flex\\\\@xlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xlarge { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@xlarge { + height: 2rem !important; + } + .u-bolt-height-large\\\\@xlarge { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@xlarge { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@xlarge { + height: 16rem !important; + } + .u-bolt-height-none\\\\@xlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xlarge { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@xlarge { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@xlarge { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@xlarge { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xlarge { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@xlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xlarge { + opacity: 0; + } +} +@media (min-width: 87.5em) { + .u-bolt-block\\\\@xxlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xxlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxlarge { + display: inline !important; + } + .u-bolt-table\\\\@xxlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xxlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxlarge { + display: none !important; + } + .u-bolt-flex\\\\@xxlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxlarge { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@xxlarge { + height: 2rem !important; + } + .u-bolt-height-large\\\\@xxlarge { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@xxlarge { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@xxlarge { + height: 16rem !important; + } + .u-bolt-height-none\\\\@xxlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xxlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxlarge { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@xxlarge { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@xxlarge { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxlarge { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxlarge { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@xxlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxlarge { + opacity: 0; + } +} +@media (min-width: 120em) { + .u-bolt-block\\\\@xxxlarge { + display: block !important; + } + .u-bolt-inline-block\\\\@xxxlarge { + display: inline-block !important; + } + .u-bolt-inline\\\\@xxxlarge { + display: inline !important; + } + .u-bolt-table\\\\@xxxlarge { + display: table !important; + } + .u-bolt-table-row\\\\@xxxlarge { + display: table-row !important; + } + .u-bolt-table-cell\\\\@xxxlarge { + display: table-cell !important; + } + .u-bolt-hidden\\\\@xxxlarge { + display: none !important; + } + .u-bolt-flex\\\\@xxxlarge { + display: -webkit-box !important; + display: flex !important; + } + .u-bolt-inline-flex\\\\@xxxlarge { + display: -webkit-inline-box !important; + display: inline-flex !important; + } + .u-bolt-height-xxsmall\\\\@xxxlarge { + height: 0.25rem !important; + } + .u-bolt-height-xsmall\\\\@xxxlarge { + height: 0.5rem !important; + } + .u-bolt-height-small\\\\@xxxlarge { + height: 1rem !important; + } + .u-bolt-height-medium\\\\@xxxlarge { + height: 2rem !important; + } + .u-bolt-height-large\\\\@xxxlarge { + height: 4rem !important; + } + .u-bolt-height-xlarge\\\\@xxxlarge { + height: 8rem !important; + } + .u-bolt-height-xxlarge\\\\@xxxlarge { + height: 16rem !important; + } + .u-bolt-height-none\\\\@xxxlarge { + height: 0 !important; + } + .u-bolt-height-auto\\\\@xxxlarge { + height: auto !important; + } + .u-bolt-height-full\\\\@xxxlarge { + height: 100% !important; + } + .u-bolt-height-screen\\\\@xxxlarge { + height: 100vh !important; + } + .u-bolt-min-height-xxsmall\\\\@xxxlarge { + min-height: 0.25rem !important; + } + .u-bolt-min-height-xsmall\\\\@xxxlarge { + min-height: 0.5rem !important; + } + .u-bolt-min-height-small\\\\@xxxlarge { + min-height: 1rem !important; + } + .u-bolt-min-height-medium\\\\@xxxlarge { + min-height: 2rem !important; + } + .u-bolt-min-height-large\\\\@xxxlarge { + min-height: 4rem !important; + } + .u-bolt-min-height-xlarge\\\\@xxxlarge { + min-height: 8rem !important; + } + .u-bolt-min-height-xxlarge\\\\@xxxlarge { + min-height: 16rem !important; + } + .u-bolt-min-height-none\\\\@xxxlarge { + min-height: 0 !important; + } + .u-bolt-min-height-auto\\\\@xxxlarge { + min-height: auto !important; + } + .u-bolt-min-height-full\\\\@xxxlarge { + min-height: 100% !important; + } + .u-bolt-min-height-screen\\\\@xxxlarge { + min-height: 100vh !important; + } + .u-bolt-opacity-0\\\\@xxxlarge { + opacity: 0; + } + .u-bolt-opacity-20\\\\@xxxlarge { + opacity: 0.2; + } +} +.u-bolt-opacity-20 { + opacity: 0.2; +} +@media (min-width: 20em) { + .u-bolt-opacity-20\\\\@xxsmall { + opacity: 0.2; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-20\\\\@xsmall { + opacity: 0.2; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-20\\\\@small { + opacity: 0.2; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-20\\\\@medium { + opacity: 0.2; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-20\\\\@large { + opacity: 0.2; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-20\\\\@xlarge { + opacity: 0.2; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-20\\\\@xxlarge { + opacity: 0.2; + } + .u-bolt-opacity-40\\\\@xxlarge { + opacity: 0.4; + } +} +.u-bolt-opacity-40 { + opacity: 0.4; +} +@media (min-width: 20em) { + .u-bolt-opacity-40\\\\@xxsmall { + opacity: 0.4; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-40\\\\@xsmall { + opacity: 0.4; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-40\\\\@small { + opacity: 0.4; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-40\\\\@medium { + opacity: 0.4; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-40\\\\@large { + opacity: 0.4; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-40\\\\@xlarge { + opacity: 0.4; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-40\\\\@xxxlarge { + opacity: 0.4; + } + .u-bolt-opacity-60\\\\@xxxlarge { + opacity: 0.6; + } +} +.u-bolt-opacity-60 { + opacity: 0.6; +} +@media (min-width: 20em) { + .u-bolt-opacity-60\\\\@xxsmall { + opacity: 0.6; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-60\\\\@xsmall { + opacity: 0.6; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-60\\\\@small { + opacity: 0.6; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-60\\\\@medium { + opacity: 0.6; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-60\\\\@large { + opacity: 0.6; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-60\\\\@xlarge { + opacity: 0.6; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-60\\\\@xxlarge { + opacity: 0.6; + } + .u-bolt-opacity-80\\\\@xxlarge { + opacity: 0.8; + } +} +.u-bolt-opacity-80 { + opacity: 0.8; +} +@media (min-width: 20em) { + .u-bolt-opacity-80\\\\@xxsmall { + opacity: 0.8; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-80\\\\@xsmall { + opacity: 0.8; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-80\\\\@small { + opacity: 0.8; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-80\\\\@medium { + opacity: 0.8; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-80\\\\@large { + opacity: 0.8; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-80\\\\@xlarge { + opacity: 0.8; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-80\\\\@xxxlarge { + opacity: 0.8; + } + .u-bolt-opacity-100\\\\@xxxlarge { + opacity: 1; + } +} +.u-bolt-opacity-100 { + opacity: 1; +} +@media (min-width: 20em) { + .u-bolt-opacity-100\\\\@xxsmall { + opacity: 1; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-100\\\\@xsmall { + opacity: 1; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-100\\\\@small { + opacity: 1; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-100\\\\@medium { + opacity: 1; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-100\\\\@large { + opacity: 1; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-100\\\\@xlarge { + opacity: 1; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-100\\\\@xxlarge { + opacity: 1; + } + .u-bolt-opacity-25\\\\@xxlarge { + opacity: 0.2; + } +} +.u-bolt-opacity-25 { + opacity: 0.2; +} +@media (min-width: 20em) { + .u-bolt-opacity-25\\\\@xxsmall { + opacity: 0.2; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-25\\\\@xsmall { + opacity: 0.2; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-25\\\\@small { + opacity: 0.2; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-25\\\\@medium { + opacity: 0.2; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-25\\\\@large { + opacity: 0.2; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-25\\\\@xlarge { + opacity: 0.2; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-25\\\\@xxxlarge { + opacity: 0.2; + } + .u-bolt-opacity-50\\\\@xxxlarge { + opacity: 0.6; + } +} +.u-bolt-opacity-50 { + opacity: 0.6; +} +@media (min-width: 20em) { + .u-bolt-opacity-50\\\\@xxsmall { + opacity: 0.6; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-50\\\\@xsmall { + opacity: 0.6; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-50\\\\@small { + opacity: 0.6; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-50\\\\@medium { + opacity: 0.6; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-50\\\\@large { + opacity: 0.6; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-50\\\\@xlarge { + opacity: 0.6; + } +} +@media (min-width: 87.5em) { + .u-bolt-opacity-50\\\\@xxlarge { + opacity: 0.6; + } + .u-bolt-opacity-75\\\\@xxlarge { + opacity: 0.8; + } +} +.u-bolt-opacity-75 { + opacity: 0.8; +} +.u-bolt-overflow-hidden { + overflow: hidden !important; +} +.u-bolt-overflow-scroll { + overflow: scroll !important; +} +.u-bolt-overflow-auto { + overflow: auto !important; +} +.u-bolt-shadow--level-10, +.u-bolt-shadow--level-10--hoverable, +.u-bolt-shadow-level-10, +.u-bolt-shadow-level-10-hoverable { + box-shadow: 0 1px 2px 1px rgba(6, 10, 36, 0.08) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-10--hoverable:hover, +.u-bolt-shadow-level-10-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; +} +.u-bolt-shadow--level-20, +.u-bolt-shadow--level-20--hoverable, +.u-bolt-shadow-level-20, +.u-bolt-shadow-level-20-hoverable { + box-shadow: 0 1px 4px 1px rgba(6, 10, 36, 0.1), + 0 5px 10px 0 rgba(6, 10, 36, 0.08) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-20--hoverable:hover, +.u-bolt-shadow-level-20-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 1px 8px 1px rgba(6, 10, 36, 0.18), + 0 5px 10px 1px rgba(6, 10, 36, 0.15), 0 15px 30px 0 rgba(6, 10, 36, 0.16) !important; +} +.u-bolt-shadow--level-30, +.u-bolt-shadow--level-30--hoverable, +.u-bolt-shadow-level-30, +.u-bolt-shadow-level-30-hoverable { + box-shadow: 0 8px 15px 1px rgba(6, 10, 36, 0.1), + 0 18px 24px 1px rgba(6, 10, 36, 0.12) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-30--hoverable:hover, +.u-bolt-shadow-level-30-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 8px 15px 1px rgba(6, 10, 36, 0.1), + 0 24px 36px 1px rgba(6, 10, 36, 0.18), 0 35px 50px 0 rgba(6, 10, 36, 0.25) !important; +} +.u-bolt-shadow--level-40, +.u-bolt-shadow--level-40--hoverable, +.u-bolt-shadow-level-40, +.u-bolt-shadow-level-40-hoverable { + box-shadow: 0 10px 20px 1px rgba(6, 10, 36, 0.1), + 0 24px 36px 1px rgba(6, 10, 36, 0.18) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-40--hoverable:hover, +.u-bolt-shadow-level-40-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 20px 1px rgba(6, 10, 36, 0.1), + 0 36px 49px 1px rgba(6, 10, 36, 0.2), 0 45px 65px 0 rgba(6, 10, 36, 0.3) !important; +} +.u-bolt-shadow--level-50, +.u-bolt-shadow--level-50--hoverable, +.u-bolt-shadow-level-50, +.u-bolt-shadow-level-50-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 40px 48px 1px rgba(6, 10, 36, 0.25) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-50--hoverable:hover, +.u-bolt-shadow-level-50-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 50px 70px 1px rgba(6, 10, 36, 0.2), 0 55px 80px 0 rgba(6, 10, 36, 0.3) !important; +} +.u-bolt-shadow--level-60, +.u-bolt-shadow--level-60--hoverable, +.u-bolt-shadow-level-60, +.u-bolt-shadow-level-60-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 50px 60px 1px rgba(6, 10, 36, 0.4) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-60--hoverable:hover, +.u-bolt-shadow-level-60-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 70px 80px 1px rgba(6, 10, 36, 0.2), 0 80px 120px 0 rgba(6, 10, 36, 0.35) !important; +} +.u-bolt-shadow--level-70, +.u-bolt-shadow--level-70--hoverable, +.u-bolt-shadow-level-70, +.u-bolt-shadow-level-70-hoverable { + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 80px 90px 1px rgba(6, 10, 36, 0.4) !important; + -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; + transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; +} +.u-bolt-shadow--level-70--hoverable:hover, +.u-bolt-shadow-level-70-hoverable:hover { + -webkit-transform: translateY(-2px) !important; + transform: translateY(-2px) !important; + box-shadow: 0 10px 30px 1px rgba(6, 10, 36, 0.1), + 0 110px 130px 1px rgba(6, 10, 36, 0.25), + 0 130px 150px 0 rgba(6, 10, 36, 0.35) !important; +} +.u-bolt-padding-none { + padding: 0 !important; +} +.u-bolt-padding-auto { + padding: auto !important; +} +.u-bolt-padding { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-xxsmall { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small { + padding: 0.825rem 1rem !important; +} +.u-bolt-padding-medium { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-large { + padding: 3.3rem 4rem !important; +} +.u-bolt-padding-xlarge { + padding: 6.6rem 8rem !important; +} +.u-bolt-padding-xxlarge { + padding: 13.2rem 16rem !important; +} +.u-bolt-padding-none-squished { + padding: 0 !important; +} +.u-bolt-padding-auto-squished { + padding: auto !important; +} +.u-bolt-padding-squished { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-xxsmall-squished { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall-squished { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small-squished { + padding: 0.825rem 1rem !important; +} +.u-bolt-padding-medium-squished { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-large-squished { + padding: 3.3rem 4rem !important; +} +.u-bolt-padding-xlarge-squished { + padding: 6.6rem 8rem !important; +} +.u-bolt-padding-xxlarge-squished { + padding: 13.2rem 16rem !important; +} +.u-bolt-padding-none-stretched { + padding: 0 !important; +} +.u-bolt-padding-auto-stretched { + padding: auto !important; +} +.u-bolt-padding-stretched { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-xxsmall-stretched { + padding: 0.206rem 0.25rem !important; +} +.u-bolt-padding-xsmall-stretched { + padding: 0.412rem 0.5rem !important; +} +.u-bolt-padding-small-stretched { + padding: 0.825rem 1rem !important; +} +.u-bolt-padding-medium-stretched { + padding: 1.65rem 2rem !important; +} +.u-bolt-padding-large-stretched { + padding: 3.3rem 4rem !important; +} +.u-bolt-padding-xlarge-stretched { + padding: 6.6rem 8rem !important; +} +.u-bolt-padding-xxlarge-stretched { + padding: 13.2rem 16rem !important; +} +.u-bolt-padding-top-none { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto { + padding-top: auto !important; +} +.u-bolt-padding-top { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-xxsmall { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small { + padding-top: 0.825rem !important; +} +.u-bolt-padding-top-medium { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-large { + padding-top: 3.3rem !important; +} +.u-bolt-padding-top-xlarge { + padding-top: 6.6rem !important; +} +.u-bolt-padding-top-xxlarge { + padding-top: 13.2rem !important; +} +.u-bolt-padding-top-none-squished { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto-squished { + padding-top: auto !important; +} +.u-bolt-padding-top-squished { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-xxsmall-squished { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall-squished { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small-squished { + padding-top: 0.825rem !important; +} +.u-bolt-padding-top-medium-squished { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-large-squished { + padding-top: 3.3rem !important; +} +.u-bolt-padding-top-xlarge-squished { + padding-top: 6.6rem !important; +} +.u-bolt-padding-top-xxlarge-squished { + padding-top: 13.2rem !important; +} +.u-bolt-padding-top-none-stretched { + padding-top: 0 !important; +} +.u-bolt-padding-top-auto-stretched { + padding-top: auto !important; +} +.u-bolt-padding-top-stretched { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-xxsmall-stretched { + padding-top: 0.206rem !important; +} +.u-bolt-padding-top-xsmall-stretched { + padding-top: 0.412rem !important; +} +.u-bolt-padding-top-small-stretched { + padding-top: 0.825rem !important; +} +.u-bolt-padding-top-medium-stretched { + padding-top: 1.65rem !important; +} +.u-bolt-padding-top-large-stretched { + padding-top: 3.3rem !important; +} +.u-bolt-padding-top-xlarge-stretched { + padding-top: 6.6rem !important; +} +.u-bolt-padding-top-xxlarge-stretched { + padding-top: 13.2rem !important; +} +.u-bolt-padding-right-none { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto { + padding-right: auto !important; +} +.u-bolt-padding-right { + padding-right: 2rem !important; +} +.u-bolt-padding-right-xxsmall { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small { + padding-right: 1rem !important; +} +.u-bolt-padding-right-medium { + padding-right: 2rem !important; +} +.u-bolt-padding-right-large { + padding-right: 4rem !important; +} +.u-bolt-padding-right-xlarge { + padding-right: 8rem !important; +} +.u-bolt-padding-right-xxlarge { + padding-right: 16rem !important; +} +.u-bolt-padding-right-none-squished { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto-squished { + padding-right: auto !important; +} +.u-bolt-padding-right-squished { + padding-right: 2rem !important; +} +.u-bolt-padding-right-xxsmall-squished { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall-squished { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small-squished { + padding-right: 1rem !important; +} +.u-bolt-padding-right-medium-squished { + padding-right: 2rem !important; +} +.u-bolt-padding-right-large-squished { + padding-right: 4rem !important; +} +.u-bolt-padding-right-xlarge-squished { + padding-right: 8rem !important; +} +.u-bolt-padding-right-xxlarge-squished { + padding-right: 16rem !important; +} +.u-bolt-padding-right-none-stretched { + padding-right: 0 !important; +} +.u-bolt-padding-right-auto-stretched { + padding-right: auto !important; +} +.u-bolt-padding-right-stretched { + padding-right: 2rem !important; +} +.u-bolt-padding-right-xxsmall-stretched { + padding-right: 0.25rem !important; +} +.u-bolt-padding-right-xsmall-stretched { + padding-right: 0.5rem !important; +} +.u-bolt-padding-right-small-stretched { + padding-right: 1rem !important; +} +.u-bolt-padding-right-medium-stretched { + padding-right: 2rem !important; +} +.u-bolt-padding-right-large-stretched { + padding-right: 4rem !important; +} +.u-bolt-padding-right-xlarge-stretched { + padding-right: 8rem !important; +} +.u-bolt-padding-right-xxlarge-stretched { + padding-right: 16rem !important; +} +.u-bolt-padding-bottom-none { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-xxsmall { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small { + padding-bottom: 0.825rem !important; +} +.u-bolt-padding-bottom-medium { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-large { + padding-bottom: 3.3rem !important; +} +.u-bolt-padding-bottom-xlarge { + padding-bottom: 6.6rem !important; +} +.u-bolt-padding-bottom-xxlarge { + padding-bottom: 13.2rem !important; +} +.u-bolt-padding-bottom-none-squished { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto-squished { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom-squished { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-xxsmall-squished { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall-squished { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small-squished { + padding-bottom: 0.825rem !important; +} +.u-bolt-padding-bottom-medium-squished { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-large-squished { + padding-bottom: 3.3rem !important; +} +.u-bolt-padding-bottom-xlarge-squished { + padding-bottom: 6.6rem !important; +} +.u-bolt-padding-bottom-xxlarge-squished { + padding-bottom: 13.2rem !important; +} +.u-bolt-padding-bottom-none-stretched { + padding-bottom: 0 !important; +} +.u-bolt-padding-bottom-auto-stretched { + padding-bottom: auto !important; +} +.u-bolt-padding-bottom-stretched { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-xxsmall-stretched { + padding-bottom: 0.206rem !important; +} +.u-bolt-padding-bottom-xsmall-stretched { + padding-bottom: 0.412rem !important; +} +.u-bolt-padding-bottom-small-stretched { + padding-bottom: 0.825rem !important; +} +.u-bolt-padding-bottom-medium-stretched { + padding-bottom: 1.65rem !important; +} +.u-bolt-padding-bottom-large-stretched { + padding-bottom: 3.3rem !important; +} +.u-bolt-padding-bottom-xlarge-stretched { + padding-bottom: 6.6rem !important; +} +.u-bolt-padding-bottom-xxlarge-stretched { + padding-bottom: 13.2rem !important; +} +.u-bolt-padding-left-none { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto { + padding-left: auto !important; +} +.u-bolt-padding-left { + padding-left: 2rem !important; +} +.u-bolt-padding-left-xxsmall { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small { + padding-left: 1rem !important; +} +.u-bolt-padding-left-medium { + padding-left: 2rem !important; +} +.u-bolt-padding-left-large { + padding-left: 4rem !important; +} +.u-bolt-padding-left-xlarge { + padding-left: 8rem !important; +} +.u-bolt-padding-left-xxlarge { + padding-left: 16rem !important; +} +.u-bolt-padding-left-none-squished { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto-squished { + padding-left: auto !important; +} +.u-bolt-padding-left-squished { + padding-left: 2rem !important; +} +.u-bolt-padding-left-xxsmall-squished { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall-squished { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small-squished { + padding-left: 1rem !important; +} +.u-bolt-padding-left-medium-squished { + padding-left: 2rem !important; +} +.u-bolt-padding-left-large-squished { + padding-left: 4rem !important; +} +.u-bolt-padding-left-xlarge-squished { + padding-left: 8rem !important; +} +.u-bolt-padding-left-xxlarge-squished { + padding-left: 16rem !important; +} +.u-bolt-padding-left-none-stretched { + padding-left: 0 !important; +} +.u-bolt-padding-left-auto-stretched { + padding-left: auto !important; +} +.u-bolt-padding-left-stretched { + padding-left: 2rem !important; +} +.u-bolt-padding-left-xxsmall-stretched { + padding-left: 0.25rem !important; +} +.u-bolt-padding-left-xsmall-stretched { + padding-left: 0.5rem !important; +} +.u-bolt-padding-left-small-stretched { + padding-left: 1rem !important; +} +.u-bolt-padding-left-medium-stretched { + padding-left: 2rem !important; +} +.u-bolt-padding-left-large-stretched { + padding-left: 4rem !important; +} +.u-bolt-padding-left-xlarge-stretched { + padding-left: 8rem !important; +} +.u-bolt-padding-left-xxlarge-stretched { + padding-left: 16rem !important; +} +.u-bolt-margin-none { + margin: 0 !important; +} +.u-bolt-margin-auto { + margin: auto !important; +} +.u-bolt-margin { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-xxsmall { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small { + margin: 0.825rem 1rem !important; +} +.u-bolt-margin-medium { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-large { + margin: 3.3rem 4rem !important; +} +.u-bolt-margin-xlarge { + margin: 6.6rem 8rem !important; +} +.u-bolt-margin-xxlarge { + margin: 13.2rem 16rem !important; +} +.u-bolt-margin-none-squished { + margin: 0 !important; +} +.u-bolt-margin-auto-squished { + margin: auto !important; +} +.u-bolt-margin-squished { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-xxsmall-squished { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall-squished { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small-squished { + margin: 0.825rem 1rem !important; +} +.u-bolt-margin-medium-squished { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-large-squished { + margin: 3.3rem 4rem !important; +} +.u-bolt-margin-xlarge-squished { + margin: 6.6rem 8rem !important; +} +.u-bolt-margin-xxlarge-squished { + margin: 13.2rem 16rem !important; +} +.u-bolt-margin-none-stretched { + margin: 0 !important; +} +.u-bolt-margin-auto-stretched { + margin: auto !important; +} +.u-bolt-margin-stretched { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-xxsmall-stretched { + margin: 0.206rem 0.25rem !important; +} +.u-bolt-margin-xsmall-stretched { + margin: 0.412rem 0.5rem !important; +} +.u-bolt-margin-small-stretched { + margin: 0.825rem 1rem !important; +} +.u-bolt-margin-medium-stretched { + margin: 1.65rem 2rem !important; +} +.u-bolt-margin-large-stretched { + margin: 3.3rem 4rem !important; +} +.u-bolt-margin-xlarge-stretched { + margin: 6.6rem 8rem !important; +} +.u-bolt-margin-xxlarge-stretched { + margin: 13.2rem 16rem !important; +} +.u-bolt-margin-top-none { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto { + margin-top: auto !important; +} +.u-bolt-margin-top { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-xxsmall { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small { + margin-top: 0.825rem !important; +} +.u-bolt-margin-top-medium { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-large { + margin-top: 3.3rem !important; +} +.u-bolt-margin-top-xlarge { + margin-top: 6.6rem !important; +} +.u-bolt-margin-top-xxlarge { + margin-top: 13.2rem !important; +} +.u-bolt-margin-top-none-squished { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto-squished { + margin-top: auto !important; +} +.u-bolt-margin-top-squished { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-xxsmall-squished { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall-squished { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small-squished { + margin-top: 0.825rem !important; +} +.u-bolt-margin-top-medium-squished { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-large-squished { + margin-top: 3.3rem !important; +} +.u-bolt-margin-top-xlarge-squished { + margin-top: 6.6rem !important; +} +.u-bolt-margin-top-xxlarge-squished { + margin-top: 13.2rem !important; +} +.u-bolt-margin-top-none-stretched { + margin-top: 0 !important; +} +.u-bolt-margin-top-auto-stretched { + margin-top: auto !important; +} +.u-bolt-margin-top-stretched { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-xxsmall-stretched { + margin-top: 0.206rem !important; +} +.u-bolt-margin-top-xsmall-stretched { + margin-top: 0.412rem !important; +} +.u-bolt-margin-top-small-stretched { + margin-top: 0.825rem !important; +} +.u-bolt-margin-top-medium-stretched { + margin-top: 1.65rem !important; +} +.u-bolt-margin-top-large-stretched { + margin-top: 3.3rem !important; +} +.u-bolt-margin-top-xlarge-stretched { + margin-top: 6.6rem !important; +} +.u-bolt-margin-top-xxlarge-stretched { + margin-top: 13.2rem !important; +} +.u-bolt-margin-right-none { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto { + margin-right: auto !important; +} +.u-bolt-margin-right { + margin-right: 2rem !important; +} +.u-bolt-margin-right-xxsmall { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small { + margin-right: 1rem !important; +} +.u-bolt-margin-right-medium { + margin-right: 2rem !important; +} +.u-bolt-margin-right-large { + margin-right: 4rem !important; +} +.u-bolt-margin-right-xlarge { + margin-right: 8rem !important; +} +.u-bolt-margin-right-xxlarge { + margin-right: 16rem !important; +} +.u-bolt-margin-right-none-squished { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto-squished { + margin-right: auto !important; +} +.u-bolt-margin-right-squished { + margin-right: 2rem !important; +} +.u-bolt-margin-right-xxsmall-squished { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall-squished { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small-squished { + margin-right: 1rem !important; +} +.u-bolt-margin-right-medium-squished { + margin-right: 2rem !important; +} +.u-bolt-margin-right-large-squished { + margin-right: 4rem !important; +} +.u-bolt-margin-right-xlarge-squished { + margin-right: 8rem !important; +} +.u-bolt-margin-right-xxlarge-squished { + margin-right: 16rem !important; +} +.u-bolt-margin-right-none-stretched { + margin-right: 0 !important; +} +.u-bolt-margin-right-auto-stretched { + margin-right: auto !important; +} +.u-bolt-margin-right-stretched { + margin-right: 2rem !important; +} +.u-bolt-margin-right-xxsmall-stretched { + margin-right: 0.25rem !important; +} +.u-bolt-margin-right-xsmall-stretched { + margin-right: 0.5rem !important; +} +.u-bolt-margin-right-small-stretched { + margin-right: 1rem !important; +} +.u-bolt-margin-right-medium-stretched { + margin-right: 2rem !important; +} +.u-bolt-margin-right-large-stretched { + margin-right: 4rem !important; +} +.u-bolt-margin-right-xlarge-stretched { + margin-right: 8rem !important; +} +.u-bolt-margin-right-xxlarge-stretched { + margin-right: 16rem !important; +} +.u-bolt-margin-bottom-none { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-xxsmall { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small { + margin-bottom: 0.825rem !important; +} +.u-bolt-margin-bottom-medium { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-large { + margin-bottom: 3.3rem !important; +} +.u-bolt-margin-bottom-xlarge { + margin-bottom: 6.6rem !important; +} +.u-bolt-margin-bottom-xxlarge { + margin-bottom: 13.2rem !important; +} +.u-bolt-margin-bottom-none-squished { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto-squished { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom-squished { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-xxsmall-squished { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall-squished { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small-squished { + margin-bottom: 0.825rem !important; +} +.u-bolt-margin-bottom-medium-squished { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-large-squished { + margin-bottom: 3.3rem !important; +} +.u-bolt-margin-bottom-xlarge-squished { + margin-bottom: 6.6rem !important; +} +.u-bolt-margin-bottom-xxlarge-squished { + margin-bottom: 13.2rem !important; +} +.u-bolt-margin-bottom-none-stretched { + margin-bottom: 0 !important; +} +.u-bolt-margin-bottom-auto-stretched { + margin-bottom: auto !important; +} +.u-bolt-margin-bottom-stretched { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-xxsmall-stretched { + margin-bottom: 0.206rem !important; +} +.u-bolt-margin-bottom-xsmall-stretched { + margin-bottom: 0.412rem !important; +} +.u-bolt-margin-bottom-small-stretched { + margin-bottom: 0.825rem !important; +} +.u-bolt-margin-bottom-medium-stretched { + margin-bottom: 1.65rem !important; +} +.u-bolt-margin-bottom-large-stretched { + margin-bottom: 3.3rem !important; +} +.u-bolt-margin-bottom-xlarge-stretched { + margin-bottom: 6.6rem !important; +} +.u-bolt-margin-bottom-xxlarge-stretched { + margin-bottom: 13.2rem !important; +} +.u-bolt-margin-left-none { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto { + margin-left: auto !important; +} +.u-bolt-margin-left { + margin-left: 2rem !important; +} +.u-bolt-margin-left-xxsmall { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small { + margin-left: 1rem !important; +} +.u-bolt-margin-left-medium { + margin-left: 2rem !important; +} +.u-bolt-margin-left-large { + margin-left: 4rem !important; +} +.u-bolt-margin-left-xlarge { + margin-left: 8rem !important; +} +.u-bolt-margin-left-xxlarge { + margin-left: 16rem !important; +} +.u-bolt-margin-left-none-squished { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto-squished { + margin-left: auto !important; +} +.u-bolt-margin-left-squished { + margin-left: 2rem !important; +} +.u-bolt-margin-left-xxsmall-squished { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall-squished { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small-squished { + margin-left: 1rem !important; +} +.u-bolt-margin-left-medium-squished { + margin-left: 2rem !important; +} +.u-bolt-margin-left-large-squished { + margin-left: 4rem !important; +} +.u-bolt-margin-left-xlarge-squished { + margin-left: 8rem !important; +} +.u-bolt-margin-left-xxlarge-squished { + margin-left: 16rem !important; +} +.u-bolt-margin-left-none-stretched { + margin-left: 0 !important; +} +.u-bolt-margin-left-auto-stretched { + margin-left: auto !important; +} +.u-bolt-margin-left-stretched { + margin-left: 2rem !important; +} +.u-bolt-margin-left-xxsmall-stretched { + margin-left: 0.25rem !important; +} +.u-bolt-margin-left-xsmall-stretched { + margin-left: 0.5rem !important; +} +.u-bolt-margin-left-small-stretched { + margin-left: 1rem !important; +} +.u-bolt-margin-left-medium-stretched { + margin-left: 2rem !important; +} +.u-bolt-margin-left-large-stretched { + margin-left: 4rem !important; +} +.u-bolt-margin-left-xlarge-stretched { + margin-left: 8rem !important; +} +.u-bolt-margin-left-xxlarge-stretched { + margin-left: 16rem !important; +} +@media (min-width: 20em) { + .u-bolt-opacity-75\\\\@xxsmall { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@xxsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@xxsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@xxsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxsmall { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@xxsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@xxsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@xxsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxsmall { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxsmall { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxsmall { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@xxsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@xxsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@xxsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxsmall { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@xxsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@xxsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@xxsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxsmall { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxsmall { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxsmall { + margin-left: 16rem !important; + } +} +@media (min-width: 25em) { + .u-bolt-opacity-75\\\\@xsmall { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@xsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@xsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@xsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@xsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@xsmall { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xsmall { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xsmall { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xsmall { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xsmall { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xsmall { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@xsmall { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xsmall { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xsmall { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@xsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xsmall { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xsmall { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xsmall { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xsmall { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xsmall { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xsmall { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xsmall { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xsmall { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xsmall { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@xsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xsmall { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xsmall { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xsmall { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xsmall { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xsmall { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xsmall { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xsmall { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xsmall { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xsmall { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@xsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xsmall { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xsmall { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xsmall { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xsmall { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xsmall { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xsmall { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xsmall { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xsmall { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xsmall { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@xsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xsmall { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xsmall { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xsmall { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xsmall { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xsmall { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xsmall { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xsmall { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xsmall { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xsmall { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xsmall { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xsmall { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@xsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@xsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@xsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@xsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@xsmall { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xsmall { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xsmall { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xsmall { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xsmall { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xsmall { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@xsmall { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xsmall { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xsmall { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@xsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xsmall { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xsmall { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xsmall { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xsmall { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xsmall { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xsmall { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xsmall { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xsmall { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xsmall { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@xsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xsmall { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xsmall { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xsmall { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xsmall { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xsmall { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xsmall { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xsmall { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xsmall { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xsmall { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@xsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xsmall { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xsmall { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xsmall { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xsmall { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xsmall { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xsmall { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xsmall { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xsmall { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xsmall { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@xsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xsmall { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xsmall { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xsmall { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xsmall { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xsmall { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xsmall { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xsmall { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xsmall { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xsmall { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xsmall { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xsmall { + margin-left: 16rem !important; + } +} +@media (min-width: 37.5em) { + .u-bolt-opacity-75\\\\@small { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@small { + padding: auto !important; + } + .u-bolt-padding\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@small { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@small { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@small { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@small { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@small { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@small { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@small { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@small { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@small { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@small { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@small { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@small { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@small { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@small { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@small { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@small { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@small { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@small { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@small { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@small { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@small { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@small { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@small { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@small { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@small { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@small { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@small { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@small { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@small { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@small { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@small { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@small { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@small { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@small { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@small { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@small { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@small { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@small { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@small { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@small { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@small { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@small { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@small { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@small { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@small { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@small { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@small { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@small { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@small { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@small { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@small { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@small { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@small { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@small { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@small { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@small { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@small { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@small { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@small { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@small { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@small { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@small { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@small { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@small { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@small { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@small { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@small { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@small { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@small { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@small { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@small { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@small { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@small { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@small { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@small { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@small { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@small { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@small { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@small { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@small { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@small { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@small { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@small { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@small { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@small { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@small { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@small { + margin: auto !important; + } + .u-bolt-margin\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@small { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@small { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@small { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@small { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@small { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@small { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@small { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@small { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@small { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@small { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@small { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@small { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@small { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@small { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@small { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@small { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@small { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@small { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@small { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@small { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@small { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@small { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@small { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@small { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@small { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@small { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@small { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@small { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@small { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@small { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@small { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@small { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@small { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@small { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@small { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@small { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@small { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@small { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@small { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@small { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@small { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@small { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@small { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@small { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@small { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@small { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@small { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@small { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@small { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@small { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@small { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@small { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@small { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@small { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@small { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@small { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@small { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@small { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@small { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@small { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@small { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@small { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@small { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@small { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@small { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@small { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@small { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@small { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@small { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@small { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@small { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@small { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@small { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@small { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@small { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@small { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@small { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@small { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@small { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@small { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@small { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@small { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@small { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@small { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@small { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@small { + margin-left: 16rem !important; + } +} +@media (min-width: 50em) { + .u-bolt-opacity-75\\\\@medium { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@medium { + padding: auto !important; + } + .u-bolt-padding\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@medium { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@medium { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@medium { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@medium { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@medium { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@medium { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@medium { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@medium { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@medium { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@medium { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@medium { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@medium { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@medium { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@medium { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@medium { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@medium { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@medium { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@medium { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@medium { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@medium { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@medium { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@medium { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@medium { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@medium { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@medium { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@medium { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@medium { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@medium { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@medium { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@medium { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@medium { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@medium { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@medium { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@medium { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@medium { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@medium { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@medium { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@medium { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@medium { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@medium { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@medium { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@medium { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@medium { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@medium { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@medium { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@medium { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@medium { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@medium { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@medium { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@medium { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@medium { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@medium { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@medium { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@medium { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@medium { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@medium { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@medium { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@medium { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@medium { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@medium { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@medium { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@medium { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@medium { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@medium { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@medium { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@medium { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@medium { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@medium { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@medium { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@medium { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@medium { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@medium { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@medium { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@medium { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@medium { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@medium { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@medium { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@medium { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@medium { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@medium { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@medium { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@medium { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@medium { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@medium { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@medium { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@medium { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@medium { + margin: auto !important; + } + .u-bolt-margin\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@medium { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@medium { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@medium { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@medium { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@medium { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@medium { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@medium { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@medium { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@medium { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@medium { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@medium { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@medium { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@medium { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@medium { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@medium { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@medium { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@medium { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@medium { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@medium { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@medium { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@medium { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@medium { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@medium { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@medium { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@medium { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@medium { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@medium { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@medium { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@medium { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@medium { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@medium { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@medium { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@medium { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@medium { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@medium { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@medium { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@medium { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@medium { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@medium { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@medium { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@medium { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@medium { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@medium { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@medium { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@medium { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@medium { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@medium { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@medium { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@medium { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@medium { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@medium { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@medium { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@medium { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@medium { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@medium { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@medium { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@medium { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@medium { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@medium { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@medium { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@medium { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@medium { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@medium { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@medium { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@medium { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@medium { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@medium { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@medium { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@medium { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@medium { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@medium { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@medium { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@medium { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@medium { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@medium { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@medium { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@medium { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@medium { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@medium { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@medium { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@medium { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@medium { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@medium { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@medium { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@medium { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@medium { + margin-left: 16rem !important; + } +} +@media (min-width: 62.5em) { + .u-bolt-opacity-75\\\\@large { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@large { + padding: auto !important; + } + .u-bolt-padding\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@large { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@large { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@large { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@large { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@large { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@large { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@large { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@large { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@large { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@large { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@large { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@large { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@large { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@large { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@large { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@large { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@large { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@large { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@large { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@large { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@large { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@large { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@large { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@large { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@large { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@large { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@large { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@large { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@large { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@large { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@large { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@large { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@large { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@large { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@large { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@large { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@large { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@large { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@large { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@large { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@large { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@large { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@large { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@large { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@large { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@large { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@large { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@large { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@large { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@large { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@large { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@large { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@large { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@large { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@large { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@large { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@large { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@large { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@large { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@large { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@large { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@large { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@large { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@large { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@large { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@large { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@large { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@large { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@large { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@large { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@large { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@large { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@large { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@large { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@large { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@large { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@large { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@large { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@large { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@large { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@large { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@large { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@large { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@large { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@large { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@large { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@large { + margin: auto !important; + } + .u-bolt-margin\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@large { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@large { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@large { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@large { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@large { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@large { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@large { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@large { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@large { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@large { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@large { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@large { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@large { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@large { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@large { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@large { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@large { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@large { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@large { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@large { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@large { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@large { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@large { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@large { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@large { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@large { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@large { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@large { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@large { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@large { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@large { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@large { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@large { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@large { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@large { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@large { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@large { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@large { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@large { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@large { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@large { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@large { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@large { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@large { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@large { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@large { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@large { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@large { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@large { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@large { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@large { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@large { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@large { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@large { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@large { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@large { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@large { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@large { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@large { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@large { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@large { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@large { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@large { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@large { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@large { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@large { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@large { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@large { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@large { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@large { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@large { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@large { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@large { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@large { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@large { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@large { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@large { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@large { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@large { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@large { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@large { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@large { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@large { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@large { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@large { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@large { + margin-left: 16rem !important; + } +} +@media (min-width: 75em) { + .u-bolt-opacity-75\\\\@xlarge { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@xlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@xlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@xlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@xlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@xlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xlarge { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@xlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@xlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@xlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@xlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@xlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xlarge { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@xlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@xlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@xlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@xlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@xlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xlarge { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@xlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@xlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@xlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@xlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@xlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xlarge { + margin-left: 16rem !important; + } +} +@media (min-width: 87.5em) { + .u-bolt-padding-none\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@xxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@xxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@xxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxlarge { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@xxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@xxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@xxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxlarge { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@xxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@xxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@xxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxlarge { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@xxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@xxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@xxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxlarge { + margin-left: 16rem !important; + } +} +@media (min-width: 120em) { + .u-bolt-opacity-75\\\\@xxxlarge { + opacity: 0.8; + } + .u-bolt-padding-none\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small\\\\@xxxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large\\\\@xxxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge\\\\@xxxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge\\\\@xxxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-squished\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-squished\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding-squished\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-squished\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-squished\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-squished\\\\@xxxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-squished\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-squished\\\\@xxxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-squished\\\\@xxxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-squished\\\\@xxxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-none-stretched\\\\@xxxlarge { + padding: 0 !important; + } + .u-bolt-padding-auto-stretched\\\\@xxxlarge { + padding: auto !important; + } + .u-bolt-padding-stretched\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-xxsmall-stretched\\\\@xxxlarge { + padding: 0.206rem 0.25rem !important; + } + .u-bolt-padding-xsmall-stretched\\\\@xxxlarge { + padding: 0.412rem 0.5rem !important; + } + .u-bolt-padding-small-stretched\\\\@xxxlarge { + padding: 0.825rem 1rem !important; + } + .u-bolt-padding-medium-stretched\\\\@xxxlarge { + padding: 1.65rem 2rem !important; + } + .u-bolt-padding-large-stretched\\\\@xxxlarge { + padding: 3.3rem 4rem !important; + } + .u-bolt-padding-xlarge-stretched\\\\@xxxlarge { + padding: 6.6rem 8rem !important; + } + .u-bolt-padding-xxlarge-stretched\\\\@xxxlarge { + padding: 13.2rem 16rem !important; + } + .u-bolt-padding-top-none\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small\\\\@xxxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large\\\\@xxxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge\\\\@xxxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge\\\\@xxxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-squished\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-squished\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-squished\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-squished\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-squished\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-squished\\\\@xxxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-squished\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-squished\\\\@xxxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-squished\\\\@xxxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-squished\\\\@xxxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-top-none-stretched\\\\@xxxlarge { + padding-top: 0 !important; + } + .u-bolt-padding-top-auto-stretched\\\\@xxxlarge { + padding-top: auto !important; + } + .u-bolt-padding-top-stretched\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-xxsmall-stretched\\\\@xxxlarge { + padding-top: 0.206rem !important; + } + .u-bolt-padding-top-xsmall-stretched\\\\@xxxlarge { + padding-top: 0.412rem !important; + } + .u-bolt-padding-top-small-stretched\\\\@xxxlarge { + padding-top: 0.825rem !important; + } + .u-bolt-padding-top-medium-stretched\\\\@xxxlarge { + padding-top: 1.65rem !important; + } + .u-bolt-padding-top-large-stretched\\\\@xxxlarge { + padding-top: 3.3rem !important; + } + .u-bolt-padding-top-xlarge-stretched\\\\@xxxlarge { + padding-top: 6.6rem !important; + } + .u-bolt-padding-top-xxlarge-stretched\\\\@xxxlarge { + padding-top: 13.2rem !important; + } + .u-bolt-padding-right-none\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small\\\\@xxxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large\\\\@xxxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge\\\\@xxxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge\\\\@xxxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-squished\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-squished\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-squished\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-squished\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-squished\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-squished\\\\@xxxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-squished\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-squished\\\\@xxxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-squished\\\\@xxxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-squished\\\\@xxxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-right-none-stretched\\\\@xxxlarge { + padding-right: 0 !important; + } + .u-bolt-padding-right-auto-stretched\\\\@xxxlarge { + padding-right: auto !important; + } + .u-bolt-padding-right-stretched\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-xxsmall-stretched\\\\@xxxlarge { + padding-right: 0.25rem !important; + } + .u-bolt-padding-right-xsmall-stretched\\\\@xxxlarge { + padding-right: 0.5rem !important; + } + .u-bolt-padding-right-small-stretched\\\\@xxxlarge { + padding-right: 1rem !important; + } + .u-bolt-padding-right-medium-stretched\\\\@xxxlarge { + padding-right: 2rem !important; + } + .u-bolt-padding-right-large-stretched\\\\@xxxlarge { + padding-right: 4rem !important; + } + .u-bolt-padding-right-xlarge-stretched\\\\@xxxlarge { + padding-right: 8rem !important; + } + .u-bolt-padding-right-xxlarge-stretched\\\\@xxxlarge { + padding-right: 16rem !important; + } + .u-bolt-padding-bottom-none\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small\\\\@xxxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large\\\\@xxxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge\\\\@xxxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge\\\\@xxxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-squished\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-squished\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-squished\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-squished\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-squished\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-squished\\\\@xxxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-squished\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-squished\\\\@xxxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-squished\\\\@xxxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-squished\\\\@xxxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-bottom-none-stretched\\\\@xxxlarge { + padding-bottom: 0 !important; + } + .u-bolt-padding-bottom-auto-stretched\\\\@xxxlarge { + padding-bottom: auto !important; + } + .u-bolt-padding-bottom-stretched\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-xxsmall-stretched\\\\@xxxlarge { + padding-bottom: 0.206rem !important; + } + .u-bolt-padding-bottom-xsmall-stretched\\\\@xxxlarge { + padding-bottom: 0.412rem !important; + } + .u-bolt-padding-bottom-small-stretched\\\\@xxxlarge { + padding-bottom: 0.825rem !important; + } + .u-bolt-padding-bottom-medium-stretched\\\\@xxxlarge { + padding-bottom: 1.65rem !important; + } + .u-bolt-padding-bottom-large-stretched\\\\@xxxlarge { + padding-bottom: 3.3rem !important; + } + .u-bolt-padding-bottom-xlarge-stretched\\\\@xxxlarge { + padding-bottom: 6.6rem !important; + } + .u-bolt-padding-bottom-xxlarge-stretched\\\\@xxxlarge { + padding-bottom: 13.2rem !important; + } + .u-bolt-padding-left-none\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small\\\\@xxxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large\\\\@xxxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge\\\\@xxxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge\\\\@xxxlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-squished\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-squished\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-squished\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-squished\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-squished\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-squished\\\\@xxxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-squished\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-squished\\\\@xxxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-squished\\\\@xxxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-squished\\\\@xxxlarge { + padding-left: 16rem !important; + } + .u-bolt-padding-left-none-stretched\\\\@xxxlarge { + padding-left: 0 !important; + } + .u-bolt-padding-left-auto-stretched\\\\@xxxlarge { + padding-left: auto !important; + } + .u-bolt-padding-left-stretched\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-xxsmall-stretched\\\\@xxxlarge { + padding-left: 0.25rem !important; + } + .u-bolt-padding-left-xsmall-stretched\\\\@xxxlarge { + padding-left: 0.5rem !important; + } + .u-bolt-padding-left-small-stretched\\\\@xxxlarge { + padding-left: 1rem !important; + } + .u-bolt-padding-left-medium-stretched\\\\@xxxlarge { + padding-left: 2rem !important; + } + .u-bolt-padding-left-large-stretched\\\\@xxxlarge { + padding-left: 4rem !important; + } + .u-bolt-padding-left-xlarge-stretched\\\\@xxxlarge { + padding-left: 8rem !important; + } + .u-bolt-padding-left-xxlarge-stretched\\\\@xxxlarge { + padding-left: 16rem !important; + } + .u-bolt-margin-none\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small\\\\@xxxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large\\\\@xxxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge\\\\@xxxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge\\\\@xxxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-squished\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-squished\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin-squished\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-squished\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-squished\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-squished\\\\@xxxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-squished\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-squished\\\\@xxxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-squished\\\\@xxxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-squished\\\\@xxxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-none-stretched\\\\@xxxlarge { + margin: 0 !important; + } + .u-bolt-margin-auto-stretched\\\\@xxxlarge { + margin: auto !important; + } + .u-bolt-margin-stretched\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-xxsmall-stretched\\\\@xxxlarge { + margin: 0.206rem 0.25rem !important; + } + .u-bolt-margin-xsmall-stretched\\\\@xxxlarge { + margin: 0.412rem 0.5rem !important; + } + .u-bolt-margin-small-stretched\\\\@xxxlarge { + margin: 0.825rem 1rem !important; + } + .u-bolt-margin-medium-stretched\\\\@xxxlarge { + margin: 1.65rem 2rem !important; + } + .u-bolt-margin-large-stretched\\\\@xxxlarge { + margin: 3.3rem 4rem !important; + } + .u-bolt-margin-xlarge-stretched\\\\@xxxlarge { + margin: 6.6rem 8rem !important; + } + .u-bolt-margin-xxlarge-stretched\\\\@xxxlarge { + margin: 13.2rem 16rem !important; + } + .u-bolt-margin-top-none\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small\\\\@xxxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large\\\\@xxxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge\\\\@xxxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge\\\\@xxxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-squished\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-squished\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-squished\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-squished\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-squished\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-squished\\\\@xxxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-squished\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-squished\\\\@xxxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-squished\\\\@xxxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-squished\\\\@xxxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-top-none-stretched\\\\@xxxlarge { + margin-top: 0 !important; + } + .u-bolt-margin-top-auto-stretched\\\\@xxxlarge { + margin-top: auto !important; + } + .u-bolt-margin-top-stretched\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-xxsmall-stretched\\\\@xxxlarge { + margin-top: 0.206rem !important; + } + .u-bolt-margin-top-xsmall-stretched\\\\@xxxlarge { + margin-top: 0.412rem !important; + } + .u-bolt-margin-top-small-stretched\\\\@xxxlarge { + margin-top: 0.825rem !important; + } + .u-bolt-margin-top-medium-stretched\\\\@xxxlarge { + margin-top: 1.65rem !important; + } + .u-bolt-margin-top-large-stretched\\\\@xxxlarge { + margin-top: 3.3rem !important; + } + .u-bolt-margin-top-xlarge-stretched\\\\@xxxlarge { + margin-top: 6.6rem !important; + } + .u-bolt-margin-top-xxlarge-stretched\\\\@xxxlarge { + margin-top: 13.2rem !important; + } + .u-bolt-margin-right-none\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small\\\\@xxxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large\\\\@xxxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge\\\\@xxxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge\\\\@xxxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-squished\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-squished\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-squished\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-squished\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-squished\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-squished\\\\@xxxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-squished\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-squished\\\\@xxxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-squished\\\\@xxxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-squished\\\\@xxxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-right-none-stretched\\\\@xxxlarge { + margin-right: 0 !important; + } + .u-bolt-margin-right-auto-stretched\\\\@xxxlarge { + margin-right: auto !important; + } + .u-bolt-margin-right-stretched\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-xxsmall-stretched\\\\@xxxlarge { + margin-right: 0.25rem !important; + } + .u-bolt-margin-right-xsmall-stretched\\\\@xxxlarge { + margin-right: 0.5rem !important; + } + .u-bolt-margin-right-small-stretched\\\\@xxxlarge { + margin-right: 1rem !important; + } + .u-bolt-margin-right-medium-stretched\\\\@xxxlarge { + margin-right: 2rem !important; + } + .u-bolt-margin-right-large-stretched\\\\@xxxlarge { + margin-right: 4rem !important; + } + .u-bolt-margin-right-xlarge-stretched\\\\@xxxlarge { + margin-right: 8rem !important; + } + .u-bolt-margin-right-xxlarge-stretched\\\\@xxxlarge { + margin-right: 16rem !important; + } + .u-bolt-margin-bottom-none\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small\\\\@xxxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large\\\\@xxxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge\\\\@xxxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge\\\\@xxxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-squished\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-squished\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-squished\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-squished\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-squished\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-squished\\\\@xxxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-squished\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-squished\\\\@xxxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-squished\\\\@xxxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-squished\\\\@xxxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-bottom-none-stretched\\\\@xxxlarge { + margin-bottom: 0 !important; + } + .u-bolt-margin-bottom-auto-stretched\\\\@xxxlarge { + margin-bottom: auto !important; + } + .u-bolt-margin-bottom-stretched\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-xxsmall-stretched\\\\@xxxlarge { + margin-bottom: 0.206rem !important; + } + .u-bolt-margin-bottom-xsmall-stretched\\\\@xxxlarge { + margin-bottom: 0.412rem !important; + } + .u-bolt-margin-bottom-small-stretched\\\\@xxxlarge { + margin-bottom: 0.825rem !important; + } + .u-bolt-margin-bottom-medium-stretched\\\\@xxxlarge { + margin-bottom: 1.65rem !important; + } + .u-bolt-margin-bottom-large-stretched\\\\@xxxlarge { + margin-bottom: 3.3rem !important; + } + .u-bolt-margin-bottom-xlarge-stretched\\\\@xxxlarge { + margin-bottom: 6.6rem !important; + } + .u-bolt-margin-bottom-xxlarge-stretched\\\\@xxxlarge { + margin-bottom: 13.2rem !important; + } + .u-bolt-margin-left-none\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small\\\\@xxxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large\\\\@xxxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge\\\\@xxxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge\\\\@xxxlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-squished\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-squished\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-squished\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-squished\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-squished\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-squished\\\\@xxxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-squished\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-squished\\\\@xxxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-squished\\\\@xxxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-squished\\\\@xxxlarge { + margin-left: 16rem !important; + } + .u-bolt-margin-left-none-stretched\\\\@xxxlarge { + margin-left: 0 !important; + } + .u-bolt-margin-left-auto-stretched\\\\@xxxlarge { + margin-left: auto !important; + } + .u-bolt-margin-left-stretched\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-xxsmall-stretched\\\\@xxxlarge { + margin-left: 0.25rem !important; + } + .u-bolt-margin-left-xsmall-stretched\\\\@xxxlarge { + margin-left: 0.5rem !important; + } + .u-bolt-margin-left-small-stretched\\\\@xxxlarge { + margin-left: 1rem !important; + } + .u-bolt-margin-left-medium-stretched\\\\@xxxlarge { + margin-left: 2rem !important; + } + .u-bolt-margin-left-large-stretched\\\\@xxxlarge { + margin-left: 4rem !important; + } + .u-bolt-margin-left-xlarge-stretched\\\\@xxxlarge { + margin-left: 8rem !important; + } + .u-bolt-margin-left-xxlarge-stretched\\\\@xxxlarge { + margin-left: 16rem !important; + } +} +.u-bolt-text-align-right { + text-align: right !important; + text-align: end !important; +} +.u-bolt-text-align-left { + text-align: left !important; + text-align: start !important; +} +.u-bolt-text-align-center { + text-align: center !important; +} +.u-bolt-text-align-justify { + text-align: justify !important; +} +.u-bolt-text-decoration-none { + text-decoration: none !important; +} +.u-bolt-text-decoration-underline { + text-decoration: underline !important; +} +.u-bolt-text-decoration-line-through { + text-decoration: line-through !important; +} +.u-bolt-visuallyhidden { + position: absolute !important; + width: 1px !important; + height: 1px !important; + overflow: hidden !important; + margin: -1px !important; + padding: 0 !important; + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + white-space: nowrap !important; +} +.u-bolt-width-1\\\\/1 { + width: 100% !important; +} +.u-bolt-width-1\\\\/2 { + width: 50% !important; +} +.u-bolt-width-2\\\\/2 { + width: 100% !important; +} +.u-bolt-width-1\\\\/3 { + width: 33.333% !important; +} +.u-bolt-width-2\\\\/3 { + width: 66.667% !important; +} +.u-bolt-width-3\\\\/3 { + width: 100% !important; +} +.u-bolt-width-1\\\\/4 { + width: 25% !important; +} +.u-bolt-width-2\\\\/4 { + width: 50% !important; +} +.u-bolt-width-3\\\\/4 { + width: 75% !important; +} +.u-bolt-width-4\\\\/4 { + width: 100% !important; +} +.u-bolt-width-1\\\\/5 { + width: 20% !important; +} +.u-bolt-width-2\\\\/5 { + width: 40% !important; +} +.u-bolt-width-3\\\\/5 { + width: 60% !important; +} +.u-bolt-width-4\\\\/5 { + width: 80% !important; +} +.u-bolt-width-5\\\\/5 { + width: 100% !important; +} +.u-bolt-width-1\\\\/6 { + width: 16.667% !important; +} +.u-bolt-width-2\\\\/6 { + width: 33.333% !important; +} +.u-bolt-width-3\\\\/6 { + width: 50% !important; +} +.u-bolt-width-4\\\\/6 { + width: 66.667% !important; +} +.u-bolt-width-5\\\\/6 { + width: 83.333% !important; +} +.u-bolt-width-6\\\\/6 { + width: 100% !important; +} +.u-bolt-width-1\\\\/7 { + width: 14.286% !important; +} +.u-bolt-width-2\\\\/7 { + width: 28.571% !important; +} +.u-bolt-width-3\\\\/7 { + width: 42.857% !important; +} +.u-bolt-width-4\\\\/7 { + width: 57.143% !important; +} +.u-bolt-width-5\\\\/7 { + width: 71.429% !important; +} +.u-bolt-width-6\\\\/7 { + width: 85.714% !important; +} +.u-bolt-width-7\\\\/7 { + width: 100% !important; +} +.u-bolt-width-1\\\\/8 { + width: 12.5% !important; +} +.u-bolt-width-2\\\\/8 { + width: 25% !important; +} +.u-bolt-width-3\\\\/8 { + width: 37.5% !important; +} +.u-bolt-width-4\\\\/8 { + width: 50% !important; +} +.u-bolt-width-5\\\\/8 { + width: 62.5% !important; +} +.u-bolt-width-6\\\\/8 { + width: 75% !important; +} +.u-bolt-width-7\\\\/8 { + width: 87.5% !important; +} +.u-bolt-width-8\\\\/8 { + width: 100% !important; +} +.u-bolt-width-1\\\\/9 { + width: 11.111% !important; +} +.u-bolt-width-2\\\\/9 { + width: 22.222% !important; +} +.u-bolt-width-3\\\\/9 { + width: 33.333% !important; +} +.u-bolt-width-4\\\\/9 { + width: 44.444% !important; +} +.u-bolt-width-5\\\\/9 { + width: 55.556% !important; +} +.u-bolt-width-6\\\\/9 { + width: 66.667% !important; +} +.u-bolt-width-7\\\\/9 { + width: 77.778% !important; +} +.u-bolt-width-8\\\\/9 { + width: 88.889% !important; +} +.u-bolt-width-9\\\\/9 { + width: 100% !important; +} +.u-bolt-width-1\\\\/10 { + width: 10% !important; +} +.u-bolt-width-2\\\\/10 { + width: 20% !important; +} +.u-bolt-width-3\\\\/10 { + width: 30% !important; +} +.u-bolt-width-4\\\\/10 { + width: 40% !important; +} +.u-bolt-width-5\\\\/10 { + width: 50% !important; +} +.u-bolt-width-6\\\\/10 { + width: 60% !important; +} +.u-bolt-width-7\\\\/10 { + width: 70% !important; +} +.u-bolt-width-8\\\\/10 { + width: 80% !important; +} +.u-bolt-width-9\\\\/10 { + width: 90% !important; +} +.u-bolt-width-10\\\\/10 { + width: 100% !important; +} +.u-bolt-width-1\\\\/11 { + width: 9.091% !important; +} +.u-bolt-width-2\\\\/11 { + width: 18.182% !important; +} +.u-bolt-width-3\\\\/11 { + width: 27.273% !important; +} +.u-bolt-width-4\\\\/11 { + width: 36.364% !important; +} +.u-bolt-width-5\\\\/11 { + width: 45.455% !important; +} +.u-bolt-width-6\\\\/11 { + width: 54.545% !important; +} +.u-bolt-width-7\\\\/11 { + width: 63.636% !important; +} +.u-bolt-width-8\\\\/11 { + width: 72.727% !important; +} +.u-bolt-width-9\\\\/11 { + width: 81.818% !important; +} +.u-bolt-width-10\\\\/11 { + width: 90.909% !important; +} +.u-bolt-width-11\\\\/11 { + width: 100% !important; +} +.u-bolt-width-1\\\\/12 { + width: 8.333% !important; +} +.u-bolt-width-2\\\\/12 { + width: 16.667% !important; +} +.u-bolt-width-3\\\\/12 { + width: 25% !important; +} +.u-bolt-width-4\\\\/12 { + width: 33.333% !important; +} +.u-bolt-width-5\\\\/12 { + width: 41.667% !important; +} +.u-bolt-width-6\\\\/12 { + width: 50% !important; +} +.u-bolt-width-7\\\\/12 { + width: 58.333% !important; +} +.u-bolt-width-8\\\\/12 { + width: 66.667% !important; +} +.u-bolt-width-9\\\\/12 { + width: 75% !important; +} +.u-bolt-width-10\\\\/12 { + width: 83.333% !important; +} +.u-bolt-width-11\\\\/12 { + width: 91.667% !important; +} +.u-bolt-width-12\\\\/12 { + width: 100% !important; +} +@media (min-width: 20em) { + .u-bolt-width-1\\\\/1\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxsmall { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxsmall { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxsmall { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxsmall { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxsmall { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxsmall { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxsmall { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxsmall { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxsmall { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxsmall { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxsmall { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxsmall { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxsmall { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxsmall { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxsmall { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxsmall { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxsmall { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxsmall { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxsmall { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxsmall { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxsmall { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxsmall { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxsmall { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxsmall { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxsmall { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxsmall { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxsmall { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxsmall { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxsmall { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxsmall { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxsmall { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxsmall { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxsmall { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxsmall { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxsmall { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxsmall { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxsmall { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxsmall { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxsmall { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxsmall { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxsmall { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxsmall { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxsmall { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxsmall { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxsmall { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxsmall { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxsmall { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxsmall { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxsmall { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxsmall { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxsmall { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxsmall { + width: 100% !important; + } +} +@media (min-width: 25em) { + .u-bolt-width-1\\\\/1\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xsmall { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xsmall { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xsmall { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xsmall { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xsmall { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xsmall { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xsmall { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xsmall { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xsmall { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xsmall { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xsmall { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xsmall { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xsmall { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xsmall { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xsmall { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xsmall { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xsmall { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xsmall { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xsmall { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xsmall { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xsmall { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xsmall { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xsmall { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xsmall { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xsmall { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xsmall { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xsmall { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xsmall { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xsmall { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xsmall { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xsmall { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xsmall { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xsmall { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xsmall { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xsmall { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xsmall { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xsmall { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xsmall { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xsmall { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xsmall { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xsmall { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xsmall { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xsmall { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xsmall { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xsmall { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xsmall { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xsmall { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xsmall { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xsmall { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xsmall { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xsmall { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xsmall { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xsmall { + width: 100% !important; + } +} +@media (min-width: 37.5em) { + .u-bolt-width-1\\\\/1\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@small { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@small { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@small { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@small { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@small { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@small { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@small { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@small { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@small { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@small { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@small { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@small { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@small { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@small { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@small { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@small { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@small { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@small { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@small { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@small { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@small { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@small { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@small { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@small { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@small { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@small { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@small { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@small { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@small { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@small { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@small { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@small { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@small { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@small { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@small { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@small { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@small { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@small { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@small { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@small { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@small { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@small { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@small { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@small { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@small { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@small { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@small { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@small { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@small { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@small { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@small { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@small { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@small { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@small { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@small { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@small { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@small { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@small { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@small { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@small { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@small { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@small { + width: 100% !important; + } +} +@media (min-width: 50em) { + .u-bolt-width-1\\\\/1\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@medium { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@medium { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@medium { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@medium { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@medium { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@medium { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@medium { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@medium { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@medium { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@medium { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@medium { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@medium { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@medium { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@medium { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@medium { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@medium { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@medium { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@medium { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@medium { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@medium { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@medium { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@medium { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@medium { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@medium { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@medium { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@medium { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@medium { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@medium { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@medium { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@medium { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@medium { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@medium { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@medium { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@medium { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@medium { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@medium { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@medium { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@medium { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@medium { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@medium { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@medium { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@medium { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@medium { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@medium { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@medium { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@medium { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@medium { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@medium { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@medium { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@medium { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@medium { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@medium { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@medium { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@medium { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@medium { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@medium { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@medium { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@medium { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@medium { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@medium { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@medium { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@medium { + width: 100% !important; + } +} +@media (min-width: 62.5em) { + .u-bolt-width-1\\\\/1\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@large { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@large { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@large { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@large { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@large { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@large { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@large { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@large { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@large { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@large { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@large { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@large { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@large { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@large { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@large { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@large { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@large { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@large { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@large { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@large { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@large { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@large { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@large { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@large { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@large { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@large { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@large { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@large { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@large { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@large { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@large { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@large { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@large { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@large { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@large { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@large { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@large { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@large { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@large { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@large { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@large { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@large { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@large { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@large { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@large { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@large { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@large { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@large { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@large { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@large { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@large { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@large { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@large { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@large { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@large { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@large { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@large { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@large { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@large { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@large { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@large { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@large { + width: 100% !important; + } +} +@media (min-width: 75em) { + .u-bolt-width-1\\\\/1\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xlarge { + width: 100% !important; + } +} +@media (min-width: 87.5em) { + .u-bolt-width-1\\\\/1\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxlarge { + width: 100% !important; + } +} +@media (min-width: 120em) { + .u-bolt-width-1\\\\/1\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/2\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-2\\\\/2\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/3\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-2\\\\/3\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-3\\\\/3\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/4\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-2\\\\/4\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-3\\\\/4\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-4\\\\/4\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/5\\\\@xxxlarge { + width: 20% !important; + } + .u-bolt-width-2\\\\/5\\\\@xxxlarge { + width: 40% !important; + } + .u-bolt-width-3\\\\/5\\\\@xxxlarge { + width: 60% !important; + } + .u-bolt-width-4\\\\/5\\\\@xxxlarge { + width: 80% !important; + } + .u-bolt-width-5\\\\/5\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/6\\\\@xxxlarge { + width: 16.667% !important; + } + .u-bolt-width-2\\\\/6\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-3\\\\/6\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-4\\\\/6\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-5\\\\/6\\\\@xxxlarge { + width: 83.333% !important; + } + .u-bolt-width-6\\\\/6\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/7\\\\@xxxlarge { + width: 14.286% !important; + } + .u-bolt-width-2\\\\/7\\\\@xxxlarge { + width: 28.571% !important; + } + .u-bolt-width-3\\\\/7\\\\@xxxlarge { + width: 42.857% !important; + } + .u-bolt-width-4\\\\/7\\\\@xxxlarge { + width: 57.143% !important; + } + .u-bolt-width-5\\\\/7\\\\@xxxlarge { + width: 71.429% !important; + } + .u-bolt-width-6\\\\/7\\\\@xxxlarge { + width: 85.714% !important; + } + .u-bolt-width-7\\\\/7\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/8\\\\@xxxlarge { + width: 12.5% !important; + } + .u-bolt-width-2\\\\/8\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-3\\\\/8\\\\@xxxlarge { + width: 37.5% !important; + } + .u-bolt-width-4\\\\/8\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-5\\\\/8\\\\@xxxlarge { + width: 62.5% !important; + } + .u-bolt-width-6\\\\/8\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-7\\\\/8\\\\@xxxlarge { + width: 87.5% !important; + } + .u-bolt-width-8\\\\/8\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/9\\\\@xxxlarge { + width: 11.111% !important; + } + .u-bolt-width-2\\\\/9\\\\@xxxlarge { + width: 22.222% !important; + } + .u-bolt-width-3\\\\/9\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-4\\\\/9\\\\@xxxlarge { + width: 44.444% !important; + } + .u-bolt-width-5\\\\/9\\\\@xxxlarge { + width: 55.556% !important; + } + .u-bolt-width-6\\\\/9\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-7\\\\/9\\\\@xxxlarge { + width: 77.778% !important; + } + .u-bolt-width-8\\\\/9\\\\@xxxlarge { + width: 88.889% !important; + } + .u-bolt-width-9\\\\/9\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/10\\\\@xxxlarge { + width: 10% !important; + } + .u-bolt-width-2\\\\/10\\\\@xxxlarge { + width: 20% !important; + } + .u-bolt-width-3\\\\/10\\\\@xxxlarge { + width: 30% !important; + } + .u-bolt-width-4\\\\/10\\\\@xxxlarge { + width: 40% !important; + } + .u-bolt-width-5\\\\/10\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-6\\\\/10\\\\@xxxlarge { + width: 60% !important; + } + .u-bolt-width-7\\\\/10\\\\@xxxlarge { + width: 70% !important; + } + .u-bolt-width-8\\\\/10\\\\@xxxlarge { + width: 80% !important; + } + .u-bolt-width-9\\\\/10\\\\@xxxlarge { + width: 90% !important; + } + .u-bolt-width-10\\\\/10\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/11\\\\@xxxlarge { + width: 9.091% !important; + } + .u-bolt-width-2\\\\/11\\\\@xxxlarge { + width: 18.182% !important; + } + .u-bolt-width-3\\\\/11\\\\@xxxlarge { + width: 27.273% !important; + } + .u-bolt-width-4\\\\/11\\\\@xxxlarge { + width: 36.364% !important; + } + .u-bolt-width-5\\\\/11\\\\@xxxlarge { + width: 45.455% !important; + } + .u-bolt-width-6\\\\/11\\\\@xxxlarge { + width: 54.545% !important; + } + .u-bolt-width-7\\\\/11\\\\@xxxlarge { + width: 63.636% !important; + } + .u-bolt-width-8\\\\/11\\\\@xxxlarge { + width: 72.727% !important; + } + .u-bolt-width-9\\\\/11\\\\@xxxlarge { + width: 81.818% !important; + } + .u-bolt-width-10\\\\/11\\\\@xxxlarge { + width: 90.909% !important; + } + .u-bolt-width-11\\\\/11\\\\@xxxlarge { + width: 100% !important; + } + .u-bolt-width-1\\\\/12\\\\@xxxlarge { + width: 8.333% !important; + } + .u-bolt-width-2\\\\/12\\\\@xxxlarge { + width: 16.667% !important; + } + .u-bolt-width-3\\\\/12\\\\@xxxlarge { + width: 25% !important; + } + .u-bolt-width-4\\\\/12\\\\@xxxlarge { + width: 33.333% !important; + } + .u-bolt-width-5\\\\/12\\\\@xxxlarge { + width: 41.667% !important; + } + .u-bolt-width-6\\\\/12\\\\@xxxlarge { + width: 50% !important; + } + .u-bolt-width-7\\\\/12\\\\@xxxlarge { + width: 58.333% !important; + } + .u-bolt-width-8\\\\/12\\\\@xxxlarge { + width: 66.667% !important; + } + .u-bolt-width-9\\\\/12\\\\@xxxlarge { + width: 75% !important; + } + .u-bolt-width-10\\\\/12\\\\@xxxlarge { + width: 83.333% !important; + } + .u-bolt-width-11\\\\/12\\\\@xxxlarge { + width: 91.667% !important; + } + .u-bolt-width-12\\\\/12\\\\@xxxlarge { + width: 100% !important; + } +} +.u-bolt-max-width-none { + max-width: none !important; +} +.u-bolt-z-index--fab, +.u-bolt-z-index-fab { + z-index: 300 !important; +} +.u-bolt-z-index--modal, +.u-bolt-z-index-modal { + z-index: 200 !important; +} +.u-bolt-z-index--modalBG, +.u-bolt-z-index-modalBG { + z-index: 180 !important; +} +.u-bolt-z-index--navFixed, +.u-bolt-z-index-navFixed { + z-index: 160 !important; +} +.u-bolt-z-index--tooltip, +.u-bolt-z-index-tooltip { + z-index: 140 !important; +} +.u-bolt-z-index--popover, +.u-bolt-z-index-popover { + z-index: 120 !important; +} +.u-bolt-z-index--nav, +.u-bolt-z-index-nav { + z-index: 100 !important; +} +.u-bolt-z-index--contentTop, +.u-bolt-z-index-contentTop { + z-index: 80 !important; +} +.u-bolt-z-index--content, +.u-bolt-z-index-content { + z-index: 60 !important; +} +.u-bolt-z-index--contentBottom, +.u-bolt-z-index-contentBottom { + z-index: 40 !important; +} +.u-bolt-z-index--backgroundTop, +.u-bolt-z-index-backgroundTop { + z-index: 20 !important; +} +.u-bolt-z-index--background, +.u-bolt-z-index-background { + z-index: 0 !important; +} +.u-bolt-z-index--backgroundBottom, +.u-bolt-z-index-backgroundBottom { + z-index: -20 !important; +} +bolt-icon { + display: inline-block; + -webkit-transform: translateZ(0); + transform: translateZ(0); + width: 1em; + height: 1em; + vertical-align: middle; + -webkit-transition: inherit; + transition: inherit; +} +bolt-icon:not(:resolved) { + height: 0; + padding-bottom: 100%; +} +:host { + display: inline-block; + vertical-align: middle; +} +.c-bolt-icon { + position: relative; +} +.c-bolt-icon__icon { + display: block; + box-sizing: border-box; + position: relative; + z-index: 60; + width: 1em; + height: 1em; + color: var(--bolt-theme-icon); + pointer-events: none; +} +.c-bolt-icon--small > .c-bolt-icon__icon, +bolt-icon[size=\\"small\\"] { + width: 16px; + height: 16px; +} +.c-bolt-icon--medium > .c-bolt-icon__icon, +bolt-icon[size=\\"medium\\"] { + width: 24px; + height: 24px; +} +.c-bolt-icon--large > .c-bolt-icon__icon, +bolt-icon[size=\\"large\\"] { + width: 32px; + height: 32px; +} +.c-bolt-icon--xlarge > .c-bolt-icon__icon, +bolt-icon[size=\\"xlarge\\"] { + width: 64px; + height: 64px; +} +.c-bolt-icon--xlarge > .c-bolt-icon__icon { + padding: 16px; +} +.c-bolt-icon--small > .c-bolt-icon__icon { + stroke: currentColor; + stroke-width: 1px; +} +.c-bolt-icon__background-shape { + opacity: 0.1; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); + z-index: 40; + width: 100%; + height: 0; + padding-bottom: 100%; + background-color: currentColor; +} +.c-bolt-icon__background-shape--circle { + border-radius: 50%; +} +.c-bolt-icon__background-shape--square { + border-radius: 3px; +} +.c-bolt-icon--teal { + color: #fff; + --bolt-theme-icon: #fff; + --bolt-theme-icon-background: #099; + --bolt-theme-icon-background-opacity: 1; +} +.c-bolt-icon--teal .c-bolt-icon__background-shape { + opacity: 1; + background-color: #099; +} +@supports (--css: variables) { + .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity, 0.1); + background-color: var( + --bolt-theme-icon-background, + var(--bolt-theme-primary-text-default, currentColor) + ); + } + .c-bolt-icon--teal { + color: var(--bolt-theme-icon); + } + .c-bolt-icon--teal .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity); + background-color: var(--bolt-theme-icon-background); + } +} +.c-bolt-icon--blue { + color: #0074b3; + --bolt-theme-icon: #0074b3; + --bolt-theme-icon-background: #fff; + --bolt-theme-icon-background-opacity: 1; +} +.c-bolt-icon--blue .c-bolt-icon__background-shape { + opacity: 1; + background-color: #fff; +} +@supports (--css: variables) { + .c-bolt-icon--blue { + color: var(--bolt-theme-icon); + } + .c-bolt-icon--blue .c-bolt-icon__background-shape { + opacity: var(--bolt-theme-icon-background-opacity); + background-color: var(--bolt-theme-icon-background); + } +} +.c-bolt-icon__background { + fill: currentColor; + fill: var(--bolt-theme-text, currentColor); +} +bolt-link { + outline: 0; +} +:host { + outline: 0; +} +.c-bolt-link { + padding: 0; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); + display: inline; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + opacity: 1; + margin-left: -0.25rem; + color: rgba(var(--bolt-theme-link), 1); + text-decoration: underline; + cursor: pointer; + border: none; + background: 0 0; + -webkit-transition: 0.2s ease-in-out; + transition: 0.2s ease-in-out; +} +.js-fonts-loaded .c-bolt-link { + font-family: Open Sans, Helvetica Neue, sans-serif; + font-family: var(--bolt-font-family-body); +} +.c-bolt-link:hover { + opacity: 0.8; +} +.c-bolt-link:active, +.c-bolt-link:focus:active { + opacity: 0.6; +} +.c-bolt-link--display-flex { + display: -webkit-inline-box; + display: inline-flex; +} +.c-bolt-link--display-flex.c-bolt-link--valign-start { + -webkit-box-align: start; + align-items: flex-start; +} +.c-bolt-link--display-flex.c-bolt-link--valign-center { + -webkit-box-align: center; + align-items: center; +} +.c-bolt-link--display-inline .c-bolt-link__icon { + display: inline; + white-space: nowrap; +} +.c-bolt-link__icon, +.c-bolt-link__text { + padding-left: 0.25rem; +} +.c-bolt-link__text { + display: inline; +} +.c-bolt-link--headline { + color: rgba(var(--bolt-theme-headline-link), 1); + text-decoration: none; +} +.c-bolt-link--headline:hover { + text-decoration: underline; +} +bolt-figure { + display: block; +} +bolt-figure:not(:last-child) { + margin-bottom: 1.65rem; +} +.c-bolt-figure { + margin: 0; + padding: 0; + display: block; +} +.c-bolt-figure__media { + display: block; +} +.c-bolt-figure__caption { + padding-top: 0.412rem; + font-size: 0.8rem; + line-height: 1.45; + display: block; +} +bolt-ratio { + display: block; + width: 100%; + overflow: hidden; +} +:host { + display: block; + overflow: hidden; +} +.c-bolt-ratio { + display: block; + position: relative; + width: 100%; + --aspect-ratio: 1; +} +@supports (--custom: property) { + bolt-ratio:not(:defined):before { + content: \\"\\"; + display: block; + width: 100%; + padding-bottom: calc(100% / var(--aspect-ratio)); + } + .c-bolt-ratio { + padding-bottom: calc(100% / var(--aspect-ratio)); + } +} +.c-bolt-ratio > *, +.c-bolt-ratio > noscript > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + min-width: 100%; + height: 100%; + min-height: 100%; +} +.c-bolt-ratio ::slotted(*) { + position: absolute; + top: 0; + left: 0; + width: 100%; + min-width: 100%; + height: 100%; + min-height: 100%; +} +" +`; diff --git a/packages/build-tools/__tests__/multi-lang/index.js b/packages/build-tools/__tests__/multi-lang/index.js new file mode 100644 index 0000000000..7ff0d05a63 --- /dev/null +++ b/packages/build-tools/__tests__/multi-lang/index.js @@ -0,0 +1,142 @@ +const path = require('path'); +const fs = require('fs-extra'); +const prettier = require('prettier'); +const prettierConfig = { semi: false, parser: 'css' }; + +const buildDir = require('./.boltrc.multi-lang.js').buildDir; + +describe('Tests to confirm that the latest upcoming release of the @bolt/build-tools is compiling as expected', () => { + test('Check that Bolt Build Tools is generating JSON data from Sass files', async () => { + const dataFileExists = async function() { + try { + await fs.promises.access( + path.resolve( + process.cwd(), + `${buildDir}/data/colors/brand.bolt.json`, + ), + ); + return true; + } catch (error) { + return false; + } + }; + + expect(await dataFileExists()).toBe(true); + }); + + test('Check JSON data for colors was generated and outputted by the @bolt/build-tools', async () => { + const getColorData = async function() { + try { + await fs.promises.access( + path.resolve( + process.cwd(), + `${buildDir}/data/colors/brand.bolt.json`, + ), + ); + const colorData = JSON.parse( + fs.readFileSync( + path.resolve( + process.cwd(), + `${buildDir}/data/colors/brand.bolt.json`, + ), + ), + ); + return colorData; + } catch (error) { + return false; + } + }; + + const colorData = await getColorData(); + + expect(colorData).toMatchSnapshot(); + + expect(colorData.indigo.xdark).toBe('rgb(6, 9, 35)'); + expect(colorData.yellow.base).toBe('rgb(255, 204, 77)'); + }); + + test('Check that the Japanese-specific CSS bundle was generated and contains the correct font', async () => { + const getCSSData = async function() { + try { + const cssData = fs + .readFileSync( + path.resolve(process.cwd(), `${buildDir}/bolt-global-ja.css`), + ) + .toString(); + return cssData; + } catch (error) { + return false; + } + }; + + const cssFile = await getCSSData(); + + const japaneseFontRule = + 'font-family:-apple-system,BlinkMacSystemFont,ヒラギノ角ゴ ProN,Hiragino Kaku Gothic ProN,游ゴシック,游ゴシック体,YuGothic,Yu Gothic,メイリオ,Meiryo,MS ゴシック,MS Gothic,HiraKakuProN-W3,TakaoExゴシック,TakaoExGothic,MotoyaLCedar,Droid Sans Japanese,sans-serif;'; + + const englishFontFamilyRule = + 'font-family:"Open Sans","Helvetica Neue",sans-serif;font-family:var(--bolt-font-family-heading)'; + + expect(cssFile).toEqual(expect.stringContaining(japaneseFontRule)); + expect(cssFile).toEqual(expect.not.stringContaining(englishFontFamilyRule)); + + const prettyCss = await prettier.format(cssFile, prettierConfig); + expect(prettyCss).toMatchSnapshot(); + }); + + test('Check that the Japanese-specific bolt-global-ja.css file built contains the correct utility class styles for the older u-bolt-margin-bottom syntax.', async () => { + const getCSSData = async function() { + try { + const cssData = fs + .readFileSync( + path.resolve(process.cwd(), `${buildDir}/bolt-global-ja.css`), + ) + .toString(); + return cssData; + } catch (error) { + return false; + } + }; + + const cssFile = await getCSSData(); + const prettyCss = await prettier.format(cssFile, prettierConfig); + + expect(prettyCss).toEqual( + expect.stringContaining( + await prettier.format( + '.u-bolt-margin-bottom{margin-bottom:1.155rem!important}', + prettierConfig, + ), + ), + ); + }); + + test('Check that the default English-specific bolt-global.css file built contains the correct utility class styles for the older u-bolt-margin-bottom syntax.', async () => { + const getCSSData = async function() { + try { + const cssData = fs + .readFileSync( + path.resolve(process.cwd(), `${buildDir}/bolt-global-en.css`), + ) + .toString(); + return cssData; + } catch (error) { + return false; + } + }; + + const cssFile = await getCSSData(); + const prettyCss = await prettier.format(cssFile, prettierConfig); + + expect(prettyCss).toEqual( + expect.stringContaining( + await prettier.format( + `.u-bolt-margin-bottom {margin-bottom: 1.65rem !important;}`, + prettierConfig, + ), + ), + ); + + expect(prettyCss).toMatchSnapshot(); + }); +}); diff --git a/packages/build-tools/__tests__/multi-lang/package.json b/packages/build-tools/__tests__/multi-lang/package.json new file mode 100644 index 0000000000..30892e81d1 --- /dev/null +++ b/packages/build-tools/__tests__/multi-lang/package.json @@ -0,0 +1,20 @@ +{ + "name": "@bolt/build-tools--test-multi-lang", + "version": "2.6.0-beta.1", + "private": true, + "description": "Tests for @bolt/build-tools multilingal support", + "license": "MIT", + "main": "index.js", + "scripts": { + "pretest": "yarn run build", + "build": "bolt build --prod --i18n --config-file .boltrc.multi-lang.js", + "test": "npx jest index.js", + "posttest": "rm -rf dist-lang/" + }, + "dependencies": { + "@bolt/build-tools": "^2.6.0-beta.1", + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", + "@bolt/global": "^2.6.0-beta.1" + } +} diff --git a/packages/build-tools/cli.js b/packages/build-tools/cli.js index d5fbe04113..f78a91ea9b 100755 --- a/packages/build-tools/cli.js +++ b/packages/build-tools/cli.js @@ -7,6 +7,7 @@ const explorer = cosmiconfig('bolt'); const configStore = require('@bolt/build-utils/config-store'); const log = require('@bolt/build-utils/log'); const { readYamlFileSync } = require('@bolt/build-utils/yaml'); +const { getPort } = require('@bolt/build-utils/get-port'); const configSchema = readYamlFileSync( path.join(__dirname, './utils/config.schema.yml'), ); @@ -53,7 +54,7 @@ if (program.configFile) { } (async () => { - await configStore.init(userConfig).then(async config => { + await configStore.init(userConfig).then(async () => { // Now that config is initilized, we can start requiring other things const { buildBoltManifest } = require('@bolt/build-utils/manifest'); const log = require('@bolt/build-utils/log'); @@ -67,7 +68,7 @@ if (program.configFile) { * @returns {Object} config - Final updated config */ async function updateConfig(options, programInstance) { - await configStore.updateConfig(config => { + await configStore.updateConfig(async config => { originalConfig = config; config.verbosity = @@ -93,6 +94,9 @@ if (program.configFile) { ? config.env : options.env; + //check port not only when setting defaults but in boltrc.js too + config.port = await getPort(config.port); + config.webpackStats = typeof options.webpackStats === 'undefined' ? config.webpackStats @@ -136,6 +140,7 @@ if (program.configFile) { }); const config = await configStore.getConfig(); + log.dim(`Verbosity: ${config.verbosity}`); log.dim(`Prod: ${config.prod}`); log.dim(`i18n: ${config.i18n}`); @@ -271,6 +276,7 @@ if (program.configFile) { program .command('img') + .alias('images') .description('Image process') .action(async options => { await updateConfig(options, program); diff --git a/packages/build-tools/create-webpack-config.js b/packages/build-tools/create-webpack-config.js index 927af14cec..7db9caa573 100644 --- a/packages/build-tools/create-webpack-config.js +++ b/packages/build-tools/create-webpack-config.js @@ -103,6 +103,7 @@ async function createWebpackConfig(buildConfig) { config: { prod: config.prod ? true : false, lang: JSON.stringify(config.lang), + env: JSON.stringify(config.env), }, }, }; @@ -330,25 +331,6 @@ async function createWebpackConfig(buildConfig) { // mergeDuplicateChunks: true, // }, optimization: { - minimize: true, - occurrenceOrder: true, - namedChunks: true, - removeAvailableModules: true, - removeEmptyChunks: true, - nodeEnv: 'production', - mergeDuplicateChunks: true, - concatenateModules: true, - splitChunks: { - chunks: 'async', - cacheGroups: { - vendors: { - test: /[\\/]node_modules[\\/]/, - name: 'vendors', - chunks: 'async', - reuseExistingChunk: true, - }, - }, - }, minimizer: config.prod ? [ new UglifyJsPlugin({ diff --git a/packages/build-tools/package.json b/packages/build-tools/package.json index 22264990d0..e7a9e169aa 100644 --- a/packages/build-tools/package.json +++ b/packages/build-tools/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/build-tools", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Curated collection of front-end build tools in the Bolt Design System.", "keywords": [ "bolt", @@ -18,22 +18,26 @@ "browserslist": [ "extends @bolt/browserslist-config" ], + "scripts": { + "test": "FORCE_COLOR=1 npx lerna exec --scope @bolt/build-tools--test* --concurrency 1 -- npm run test" + }, "dependencies": { "@babel/core": "^7.4.5", - "@bolt/api": "^2.5.6", - "@bolt/babel-preset-bolt": "^2.5.1", + "@bolt/api": "^2.6.0-beta.1", + "@bolt/babel-preset-bolt": "^2.6.0-beta.1", "@bolt/browserslist-config": "^2.5.1", - "@bolt/build-utils": "^2.5.2", - "@bolt/postcss-themify": "^2.5.6", + "@bolt/build-utils": "^2.6.0-beta.1", + "@bolt/postcss-themify": "^2.6.0-beta.1", "@bolt/sass-export-data": "^2.5.1", "@bolt/sassdoc-webpack-plugin": "^2.5.1", - "@bolt/twig-renderer": "^2.5.2", + "@bolt/twig-renderer": "^2.6.0-beta.1", "@octokit/plugin-throttling": "^2.6.0", "@octokit/rest": "^16.27.3", "address": "^1.1.0", "array-sort": "^1.0.0", "autoprefixer": "^9.5.1", "babel-loader": "^8.0.6", + "better-opn": "^0.1.4", "browser-sync": "^2.26.5", "camelcase": "^5.3.1", "chalk": "^2.4.2", diff --git a/packages/build-tools/plugins/postcss-themify/CHANGELOG.md b/packages/build-tools/plugins/postcss-themify/CHANGELOG.md index 7ec2bbcd7a..344ea93325 100644 --- a/packages/build-tools/plugins/postcss-themify/CHANGELOG.md +++ b/packages/build-tools/plugins/postcss-themify/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/postcss-themify + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/postcss-themify diff --git a/packages/build-tools/plugins/postcss-themify/package.json b/packages/build-tools/plugins/postcss-themify/package.json index 63c9627e03..41cf58ee2f 100755 --- a/packages/build-tools/plugins/postcss-themify/package.json +++ b/packages/build-tools/plugins/postcss-themify/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/postcss-themify", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Fork of the awesome themify CSS vars library from Datorama, heavily modified for the Bolt Design System", "main": "src/index.js", "keywords": [ @@ -9,7 +9,7 @@ "Bolt Design System" ], "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "clean-css": "^4.2.1", "fs-extra": "^7.0.1", "hex-to-rgba": "^1.0.2", diff --git a/packages/build-tools/tasks/image-tasks.js b/packages/build-tools/tasks/image-tasks.js index 973f5e3bbd..38b5b90d40 100644 --- a/packages/build-tools/tasks/image-tasks.js +++ b/packages/build-tools/tasks/image-tasks.js @@ -107,7 +107,7 @@ async function writeImageManifest(imgManifest) { ); } -async function processImage(file, set) { +async function processImage(file, set, skipOptimization = false) { config = config || (await getConfig()); if (config.verbosity > 3) { @@ -150,7 +150,7 @@ async function processImage(file, set) { const newSizedPath = path.format(thisPathInfo); const newSizeWebPath = makeWebPath(newSizedPath); - if (config.prod) { + if (config.prod && skipOptimization === false) { if (isOrig) { if ( pathInfo.ext === '.jpeg' || @@ -215,18 +215,44 @@ async function processImage(file, set) { } } } else { - // Not prod, so let's be quick. - // Symlinking works even if the original file is not served - const symlinkPath = path.relative(thisPathInfo.dir, file); - try { - await symlink(symlinkPath, newSizedPath); - } catch (error) { - // If it's the error for symlink already exists, we don't care. - if (error.code !== 'EEXIST') { - log.errorAndExit( - `Problem when attempting to symlink ${file} to ${newSizedPath}.`, - error, - ); + if (config.prod) { + if ( + pathInfo.ext === '.jpeg' || + pathInfo.ext === '.jpg' || + pathInfo.ext === '.png' + ) { + await sharp(originalFileBuffer) + .resize(size) + .toFile(newSizedPath); + } else if (pathInfo.ext === '.svg') { + const result = await svgo.optimize(originalFileBuffer); + const optimizedSVG = result.data; + await writeFile(newSizedPath, optimizedSVG); + } + } else { + // Not prod, so let's be quicker + if ( + pathInfo.ext === '.jpeg' || + pathInfo.ext === '.jpg' || + pathInfo.ext === '.png' + ) { + const symlinkPath = path.relative(thisPathInfo.dir, file); + + try { + await symlink(symlinkPath, newSizedPath); + } catch (error) { + // If it's the error for symlink already exists, we don't care. + if (error.code !== 'EEXIST') { + log.errorAndExit( + `Problem when attempting to symlink ${file} to ${newSizedPath}.`, + error, + ); + } + } + } else if (pathInfo.ext === '.svg') { + const result = await svgo.optimize(originalFileBuffer); + const optimizedSVG = result.data; + await writeFile(newSizedPath, optimizedSVG); } } } @@ -255,7 +281,7 @@ async function processImage(file, set) { }); } -async function processImages() { +async function processImages(skipOptimization = false) { config = config || (await getConfig()); sharp = await warmupSharp(sharpImport); @@ -275,7 +301,9 @@ async function processImages() { config.images.sets.map(async set => { const imagePaths = await globby(path.join(set.base, set.glob)); return Promise.all( - imagePaths.map(imagePath => processImage(imagePath, set)), + imagePaths.map(imagePath => + processImage(imagePath, set, skipOptimization), + ), ); }), ).then(async setsOfImageMetas => { diff --git a/packages/build-tools/tasks/pattern-lab-tasks.js b/packages/build-tools/tasks/pattern-lab-tasks.js index e342b2d4f8..a8f0113b27 100644 --- a/packages/build-tools/tasks/pattern-lab-tasks.js +++ b/packages/build-tools/tasks/pattern-lab-tasks.js @@ -15,6 +15,7 @@ const { readYamlFileSync } = require('@bolt/build-utils/yaml'); const manifest = require('@bolt/build-utils/manifest'); const timer = require('@bolt/build-utils/timer'); const { fileExists, dirExists } = require('@bolt/build-utils/general'); +const shell = require('shelljs'); let plSource, plPublic, consolePath; let config; @@ -154,20 +155,15 @@ async function precompile() { chalk.yellow( '⚠️ Uh-oh. Pattern Labs UIKit is missing... Regenerating!', ); - sh( - 'yarn', - [ - '--cwd', - path.join(process.cwd(), '../packages/uikit-workshop'), - 'run', - 'build', - ], - false, - true, - ).then(output => { - // console.log(output); - resolve(); - }); + + const result = shell.exec( + `yarn --cwd ${path.join( + process.cwd(), + '../packages/uikit-workshop', + )} run build`, + ).stdout; + + resolve(result); } else { resolve(); } diff --git a/packages/build-tools/tasks/webpack-tasks.js b/packages/build-tools/tasks/webpack-tasks.js index e2b9ec944d..ce21c1e8c5 100644 --- a/packages/build-tools/tasks/webpack-tasks.js +++ b/packages/build-tools/tasks/webpack-tasks.js @@ -4,6 +4,7 @@ const browserSync = require('browser-sync').create(); const webpackDevMiddleware = require('webpack-dev-middleware'); const webpackHotMiddleware = require('webpack-hot-middleware'); const chalk = require('chalk'); +const opn = require('better-opn'); const { handleRequest } = require('@bolt/api'); const { getConfig } = require('@bolt/build-utils/config-store'); const { boltWebpackMessages } = require('@bolt/build-utils/webpack-helpers'); @@ -55,10 +56,9 @@ watch.displayName = 'webpack:watch'; async function server(customWebpackConfig) { const boltBuildConfig = await getConfig(); - const useHotMiddleware = + const useHotMiddleware = !( Array.isArray(boltBuildConfig.lang) && boltBuildConfig.lang.length > 1 - ? false - : true; + ); const webpackConfig = customWebpackConfig || (await createWebpackConfig(boltBuildConfig)); @@ -66,9 +66,15 @@ async function server(customWebpackConfig) { const browserSyncFileToWatch = [ `${boltBuildConfig.wwwDir}/**/*.css`, `${boltBuildConfig.wwwDir}/**/*.html`, + `!**/node_modules/**/*`, + `!**/vendor/**/*`, ]; - if (useHotMiddleware === false) { + const isUsingInternalServer = + typeof boltBuildConfig.proxyHostname === 'undefined' && + typeof boltBuildConfig.proxyPort === 'undefined'; + + if (useHotMiddleware === false || isUsingInternalServer) { browserSyncFileToWatch.push(`${boltBuildConfig.wwwDir}/**/*.js`); } @@ -76,20 +82,39 @@ async function server(customWebpackConfig) { if (!browserSyncIsRunning) { browserSync.init( { - proxy: 'localhost:' + boltBuildConfig.port, + proxy: !isUsingInternalServer + ? `${boltBuildConfig.proxyHostname}:${boltBuildConfig.proxyPort}` + : `${boltBuildConfig.hostname}:${boltBuildConfig.port}`, logLevel: 'info', ui: false, notify: false, - open: boltBuildConfig.openServerAtStart, + open: false, logFileChanges: false, reloadOnRestart: true, watchOptions: { ignoreInitial: true, }, + port: boltBuildConfig.port, files: browserSyncFileToWatch, }, function(err, bs) { browserSyncIsRunning = true; // so we only spin this up once Webpack has finished up initially + + if (boltBuildConfig.openServerAtStart) { + opn(`http://${boltBuildConfig.hostname}:${boltBuildConfig.port}`); + } + + if (!isUsingInternalServer) { + console.log( + chalk.green( + `\nBrowsersync is now proxying ${chalk.underline( + `http://${boltBuildConfig.proxyHostname}:${boltBuildConfig.proxyPort}`, + )}.\nOpen ${chalk.underline( + `http://${boltBuildConfig.hostname}:${boltBuildConfig.port}`, + )} to have your locally served pages automatically reload when HTML, CSS, and Javascript files are updated. \n`, + ), + ); + } }, ); } @@ -103,7 +128,9 @@ async function server(customWebpackConfig) { app.use( webpackDevServerWaitpage(compiler, { proxyHeader: boltBuildConfig.proxyHeader, - redirectPath: `http://localhost:${boltBuildConfig.port}/${ + redirectPath: `${boltBuildConfig.proxyHostname}:${ + boltBuildConfig.proxyPort + }/${ boltBuildConfig.startPath !== '/' ? boltBuildConfig.startPath : '' }`, }), @@ -132,7 +159,9 @@ async function server(customWebpackConfig) { app.use(express.static(boltBuildConfig.wwwDir)); // app.use('/api', handleRequest); // Component Explorer being temporarily disabled until we've migrated our Twig Rendering Service to Now.sh v2 - app.listen(boltBuildConfig.port, '0.0.0.0', function onStart(err) { + app.listen(boltBuildConfig.port, boltBuildConfig.hostname, function onStart( + err, + ) { if (err) { console.log(err); } diff --git a/packages/build-tools/utils/CHANGELOG.md b/packages/build-tools/utils/CHANGELOG.md index ac6a5192e5..384599f468 100644 --- a/packages/build-tools/utils/CHANGELOG.md +++ b/packages/build-tools/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/utils/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/build-utils + + + + + ## [2.5.2](https://github.com/bolt-design-system/bolt/tree/master/packages/build-tools/utils/compare/v2.5.1...v2.5.2) (2019-06-25) **Note:** Version bump only for package @bolt/build-utils diff --git a/packages/build-tools/utils/config-store.js b/packages/build-tools/utils/config-store.js index 18f0b1f001..b01994606a 100644 --- a/packages/build-tools/utils/config-store.js +++ b/packages/build-tools/utils/config-store.js @@ -9,7 +9,6 @@ const { validateSchema } = require('./schemas'); const configSchema = readYamlFileSync( path.join(__dirname, './config.schema.yml'), ); -const { getPort } = require('./get-port'); let isInitialized = false; let config = {}; @@ -25,37 +24,32 @@ let config = {}; const ip = address.ip(); async function getDefaultConfig() { - return Promise.all([ - await getPort(configSchema.properties.port.default), - await getPort(configSchema.properties.proxyPort.default), - ]).then(function(ports) { - return { - port: ports[0], - proxyPort: ports[1], - ip, - enableSSR: configSchema.properties.enableSSR.default, - mode: configSchema.properties.mode.default, - env: process.env.NODE_ENV, - enableCache: configSchema.properties.enableCache.default, - proxyHeader: configSchema.properties.proxyHeader.default, - watch: configSchema.properties.watch.default, - sourceMaps: configSchema.properties.sourceMaps.default, - i18n: configSchema.properties.i18n.default, - renderingService: configSchema.properties.renderingService.default, - namespace: configSchema.properties.namespace.default, - templatesDir: configSchema.properties.templatesDir.default, - verbosity: configSchema.properties.verbosity.default, - openServerAtStart: configSchema.properties.openServerAtStart.default, - quick: configSchema.properties.quick.default, - webpackDevServer: configSchema.properties.webpackDevServer.default, - prod: process.env.NODE_ENV === 'production', - startPath: configSchema.properties.startPath.default, - webpackStats: configSchema.properties.webpackStats.default, - globalData: {}, - schemaErrorReporting: - configSchema.properties.schemaErrorReporting.default, - }; - }); + return { + port: configSchema.properties.port.default, + hostname: configSchema.properties.hostname.default, + proxyHostname: configSchema.properties.proxyHostname.default, + proxyHeader: configSchema.properties.proxyHeader.default, + ip, + enableSSR: configSchema.properties.enableSSR.default, + mode: configSchema.properties.mode.default, + env: process.env.NODE_ENV, + enableCache: configSchema.properties.enableCache.default, + watch: configSchema.properties.watch.default, + sourceMaps: configSchema.properties.sourceMaps.default, + i18n: configSchema.properties.i18n.default, + renderingService: configSchema.properties.renderingService.default, + namespace: configSchema.properties.namespace.default, + templatesDir: configSchema.properties.templatesDir.default, + verbosity: configSchema.properties.verbosity.default, + openServerAtStart: configSchema.properties.openServerAtStart.default, + quick: configSchema.properties.quick.default, + webpackDevServer: configSchema.properties.webpackDevServer.default, + prod: process.env.NODE_ENV === 'production', + startPath: configSchema.properties.startPath.default, + webpackStats: configSchema.properties.webpackStats.default, + globalData: {}, + schemaErrorReporting: configSchema.properties.schemaErrorReporting.default, + }; } async function getEnvVarsConfig() { @@ -155,7 +149,7 @@ async function getConfig() { */ async function updateConfig(updater) { await isReady(); - const newConfig = updater(config); + const newConfig = await updater(config); validateSchema( configSchema, newConfig, diff --git a/packages/build-tools/utils/config.schema.yml b/packages/build-tools/utils/config.schema.yml index c84d38c455..8b291dd3ae 100644 --- a/packages/build-tools/utils/config.schema.yml +++ b/packages/build-tools/utils/config.schema.yml @@ -39,10 +39,16 @@ type: number title: Desired port for Browsersync server default: 3000 + hostname: + type: string + title: Desired host for Browsersync Proxy + default: localhost proxyPort: type: number title: Desired port for Webpack Proxy - default: 8080 + proxyHostname: + type: string + title: Desired host for Webpack Proxy proxyHeader: type: string description: Special request header when proxying Webpack's dev server diff --git a/packages/build-tools/utils/package.json b/packages/build-tools/utils/package.json index b446dac166..81fc5ed7b7 100644 --- a/packages/build-tools/utils/package.json +++ b/packages/build-tools/utils/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/build-utils", - "version": "2.5.2", + "version": "2.6.0-beta.1", "description": "Build-related utilities and helper scripts used in the Bolt Design System", "keywords": [ "bolt", diff --git a/packages/components/bolt-accordion/CHANGELOG.md b/packages/components/bolt-accordion/CHANGELOG.md index ad2c6e22ad..6bb8646f10 100644 --- a/packages/components/bolt-accordion/CHANGELOG.md +++ b/packages/components/bolt-accordion/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-accordion/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-accordion/commit/f1e6f95)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-accordion/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-accordion diff --git a/packages/components/bolt-accordion/__tests__/accordion.js b/packages/components/bolt-accordion/__tests__/accordion.js index 30b42ade09..80b257fc2d 100644 --- a/packages/components/bolt-accordion/__tests__/accordion.js +++ b/packages/components/bolt-accordion/__tests__/accordion.js @@ -17,22 +17,27 @@ async function renderTwigString(template, data) { return await renderString(template, data, true); } -const timeout = 60000; +const timeout = 120000; describe(' Component', () => { let page; beforeEach(async () => { + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); afterAll(async () => { await stopTwigRenderer(); + await page.close(); }, timeout); test('basic usage', async () => { @@ -141,6 +146,7 @@ describe(' Component', () => { const renderedShadowDomHTML = await html(defaultAccordionShadowRoot); + await page.waitFor(500); const image = await page.screenshot(); expect(image).toMatchImageSnapshot({ @@ -182,6 +188,7 @@ describe(' Component', () => { const renderedShadowDomHTML = await html(defaultAccordionShadowRoot); + await page.waitFor(500); const image = await page.screenshot(); expect(image).toMatchImageSnapshot({ diff --git a/packages/components/bolt-accordion/package.json b/packages/components/bolt-accordion/package.json index 866c85bfe1..69c63a93ae 100644 --- a/packages/components/bolt-accordion/package.json +++ b/packages/components/bolt-accordion/package.json @@ -10,7 +10,7 @@ "accordion", "collapsible" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -35,8 +35,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-icon": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "handorgel": "^0.4.5" }, "style": "index.scss", diff --git a/packages/components/bolt-action-blocks/CHANGELOG.md b/packages/components/bolt-action-blocks/CHANGELOG.md index 32ba747e2d..68c1e7af46 100644 --- a/packages/components/bolt-action-blocks/CHANGELOG.md +++ b/packages/components/bolt-action-blocks/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-action-blocks/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-action-blocks/commit/d9de9c0)) +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-action-blocks/commit/f1e6f95)) +* update path to action-block subcomponent, add test to confirm subcomponent renders ([17bd150](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-action-blocks/commit/17bd150)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-action-blocks/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-action-blocks diff --git a/packages/components/bolt-action-blocks/__tests__/action-blocks.js b/packages/components/bolt-action-blocks/__tests__/action-blocks.js index 1c01e5f428..b93ae12bc4 100644 --- a/packages/components/bolt-action-blocks/__tests__/action-blocks.js +++ b/packages/components/bolt-action-blocks/__tests__/action-blocks.js @@ -10,7 +10,7 @@ const { join } = require('path'); const schema = readYamlFileSync(join(__dirname, '../action-blocks.schema.yml')); const { valign, borderless } = schema.properties; -const timeout = 60000; +const timeout = 120000; describe(' Component', () => { afterAll(async () => { diff --git a/packages/components/bolt-action-blocks/package.json b/packages/components/bolt-action-blocks/package.json index d51470a448..eba9af2dd7 100644 --- a/packages/components/bolt-action-blocks/package.json +++ b/packages/components/bolt-action-blocks/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -37,7 +37,8 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-action-blocks/src/action-block.twig b/packages/components/bolt-action-blocks/src/action-block.twig index 009b14e7c7..5935d1a9b8 100644 --- a/packages/components/bolt-action-blocks/src/action-block.twig +++ b/packages/components/bolt-action-blocks/src/action-block.twig @@ -1,2 +1,2 @@ {# DEPRECATED. This will be removed with Bolt v3.0. #} -{% include "@bolt-components-action-blocks/_action-blocks-item.twig" %} \ No newline at end of file +{% include "@bolt-components-action-blocks/_action-blocks-item.twig" %} diff --git a/packages/components/bolt-background-shapes/CHANGELOG.md b/packages/components/bolt-background-shapes/CHANGELOG.md index 1f1b4c3726..a073841ede 100644 --- a/packages/components/bolt-background-shapes/CHANGELOG.md +++ b/packages/components/bolt-background-shapes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-background-shapes/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-background-shapes + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-background-shapes/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-background-shapes diff --git a/packages/components/bolt-background-shapes/package.json b/packages/components/bolt-background-shapes/package.json index 86b9d592e5..23b20fa225 100644 --- a/packages/components/bolt-background-shapes/package.json +++ b/packages/components/bolt-background-shapes/package.json @@ -9,7 +9,7 @@ "css framework", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "maintainers": [ { @@ -36,7 +36,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "schema": "background-shapes.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-background/CHANGELOG.md b/packages/components/bolt-background/CHANGELOG.md index 718df389fa..04b346cb65 100644 --- a/packages/components/bolt-background/CHANGELOG.md +++ b/packages/components/bolt-background/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-background/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-background + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-background/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-background diff --git a/packages/components/bolt-background/package.json b/packages/components/bolt-background/package.json index f02ff527fb..b648f381e5 100644 --- a/packages/components/bolt-background/package.json +++ b/packages/components/bolt-background/package.json @@ -7,7 +7,7 @@ "css framework", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.2", "maintainers": [ { @@ -30,8 +30,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-background-shapes": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-background-shapes": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "background.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-band/CHANGELOG.md b/packages/components/bolt-band/CHANGELOG.md index 40f293e738..e983c4d209 100644 --- a/packages/components/bolt-band/CHANGELOG.md +++ b/packages/components/bolt-band/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* apply .is-expanded rule to .c-bolt-band to fix background video bug in ie ([d2394df](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/d2394df)) +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/d9de9c0)) +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/f1e6f95)) +* lint js ([3c96888](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/3c96888)) +* lint js ([9b6c152](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/9b6c152)) +* lint js ([a9a6cd8](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/a9a6cd8)) +* tests ([12578d9](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/12578d9)) +* update tests ([0a580d1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/commit/0a580d1)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-band diff --git a/packages/components/bolt-band/TESTING.md b/packages/components/bolt-band/TESTING.md index 62a0b70d51..ed6794b9cb 100644 --- a/packages/components/bolt-band/TESTING.md +++ b/packages/components/bolt-band/TESTING.md @@ -20,15 +20,54 @@ Functional testing should be performed manually by the QA team across the standa ## Scenario: size variations -1. Given I am viewing the [size variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-10-band-size-variations/02-components-band-10-band-size-variations.html). -2. None size should show no spacing on top and bottom of the band. -3. Xsmall to large size should show the perspective spacing. +1. Given I am on the [size variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-10-band-size-variations/02-components-band-10-band-size-variations.html) +2. When I view the band with size "none" +3. Then I see there is no space on the top and bottom of the band +4. When I view each of the other bands from "xsmall" to "large" +5. Then I see the respective amount of spacing ## Scenario: theme variations -1. Given I am viewing the [theme variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-15-band-theme-variations/02-components-band-15-band-theme-variations.html). -2. If set to xlight theme, the band should have xlight background. -3. If set to light theme, the band should have light background. -4. If set to dark theme, the band should have dark background. -5. If set to xdark theme, the band should have xdark background. -6. If set to none theme, the band should have no background. +1. Given I am on the [theme variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-15-band-theme-variations/02-components-band-15-band-theme-variations.html) +2. When I view each band +3. Then I see the appropriate background color, i.e. "xdark" is the darkest and "none" is transparent + +## Scenario: tag variations + +_Note: this test requires inspecting the source HTML_ + +1. Given I am on the [tag variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-20-band-tag-variations/02-components-band-20-band-tag-variations.html) +2. When I inspect each example +3. Then the element with the `c-bolt-band` class uses the tag specified in the title + +## Scenario: full bleed variations + +1. Given I am on the [tag variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-25-band-full-bleed-variations/02-components-band-25-band-full-bleed-variations.html) +2. When I view the "Full bleed" example +3. Then I see the content spans the full width of the page +4. When I view the "Not full bleed" example +5. Then I see the content spans only the available space of its parent container + +## Scenario: nested bands usage + +1. Given I am on the [nested bands page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-40-band-nested/02-components-band-40-band-nested.html) +2. When I view the band titled "This Band Has 2 Bands Nested Inside" +3. Then I see two bands (light and xlight) nested inside a parent band (xdark) + +## Scenario: pinned content usage + +1. Given I am on the [pinned content page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-band-30-band-with-pinned-content/02-components-band-30-band-with-pinned-content.html) +2. When I view the first example +3. Then I see: + + - "upper pinned 1" positioned top left + - "upper pinned 2" positioned top center + - "upper pinned 3" positioned top right + - "lower pinned 1" positioned bottom left + - "lower pinned 2" positioned bottom center + - "lower pinned 3" positioned bottom right + +4. When I view the second example +5. Then I see the breadcrumbs positioned top left and the share tool top right +6. When I view the third example +7. Then I see the share tool positioned top right. diff --git a/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-full-bleed-usage-1-snap.png b/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-full-bleed-usage-1-snap.png new file mode 100644 index 0000000000..0eb3b70e1a Binary files /dev/null and b/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-full-bleed-usage-1-snap.png differ diff --git a/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-nested-bands-usage-1-snap.png b/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-nested-bands-usage-1-snap.png new file mode 100644 index 0000000000..0e38e843bf Binary files /dev/null and b/packages/components/bolt-band/__tests__/__image_snapshots__/band-js-bolt-band-component-nested-bands-usage-1-snap.png differ diff --git a/packages/components/bolt-band/__tests__/__snapshots__/band.js.snap b/packages/components/bolt-band/__tests__/__snapshots__/band.js.snap index f39c5b14dc..c22bd3007a 100644 --- a/packages/components/bolt-band/__tests__/__snapshots__/band.js.snap +++ b/packages/components/bolt-band/__tests__/__snapshots__/band.js.snap @@ -21,6 +21,517 @@ exports[` Component Basic usage 1`] = ` `; +exports[` Component Full bleed usage 2`] = ` + + + +
+ + + + + + +
+ + + + + + + + + + + + + +
+ + This band is not full bleed. + + +
+ + +
+ +
+ + + +
+ + +
+`; + +exports[` Component Nested bands usage 2`] = ` + + + +
+ + + + + + +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +

+ This Band Has 2 Bands Nested Inside +

+ + + + + + + + + + + + + + +
+ + + + + + +
+ + + + + + + + + + + + + +
+ + Nested band 1 + + +
+ + +
+ +
+ + + +
+ + +
+ + + + + + + + + + + + + + +
+ + + + + + +
+ + + + + + + + + + + + + +
+ + Nested band 2 + + +
+ + +
+ +
+ + + +
+ + +
+ + + + +
+ + +
+ +
+ + + +
+ + +
+`; + +exports[` Component Pinned content usage 1`] = ` + +
+
+ +
+
+
+ upper pinned 1 +
+
+ upper pinned 2 +
+
+ upper pinned 3 +
+
+
+
+
+
+ +
+ This is a band. +
+
+
+
+ +
+
+
+ lower pinned 1 +
+
+ lower pinned 2 +
+
+ lower pinned 3 +
+
+
+
+
+
+
+`; + +exports[` Component Semantic tag usage: article 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + +exports[` Component Semantic tag usage: div 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + +exports[` Component Semantic tag usage: figure 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + +exports[` Component Semantic tag usage: footer 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + +exports[` Component Semantic tag usage: header 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + +exports[` Component Semantic tag usage: nav 1`] = ` + + + +`; + +exports[` Component Semantic tag usage: section 1`] = ` + +
+
+ +
+ This is a band. +
+
+
+
+
+`; + exports[` Component Size of the band: large 1`] = ` Component', () => { + let page; + + beforeEach(async () => { + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); + await page.goto('http://127.0.0.1:4444/', { + timeout: 0, + }); + }, timeout); + afterAll(async () => { await stopServer(); + await page.close(); }, 100); // Basic Usage @@ -48,4 +64,127 @@ describe(' Component', () => { expect(results.html).toMatchSnapshot(); }); }); + + tag.enum.forEach(async tagChoice => { + test(`Semantic tag usage: ${tagChoice}`, async () => { + const results = await render('@bolt-components-band/band.twig', { + tag: tagChoice, + content: 'This is a band.', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + test('Full bleed usage', async function() { + const template = await renderString(` + {% include "@bolt-components-band/band.twig" with { + theme: "dark", + full_bleed: false, + content: "This band is not full bleed.", + } only %} + {% include "@bolt-components-band/band.twig" with { + theme: "xdark", + full_bleed: true, + content: "This band is full bleed.", + } only %} + `); + + const renderedBandHTML = await page.evaluate(html => { + const div = document.createElement('div'); + div.style.padding = '40px'; + div.innerHTML = `${html}`; + document.body.appendChild(div); + const band = document.querySelector('bolt-band'); + return band.outerHTML; + }, template.html); + + const renderedHTML = await html(renderedBandHTML); + const image = await page.screenshot(); + + expect(image).toMatchImageSnapshot({ + failureThreshold: '0.01', + failureThresholdType: 'percent', + }); + + expect(renderedHTML).toMatchSnapshot(); + }); + + test(`Pinned content usage`, async () => { + const results = await render('@bolt-components-band/band.twig', { + size: 'large', + content: 'This is a band.', + pinned_content: { + upper: [ + { + content: 'upper pinned 1', + }, + { + content: 'upper pinned 2', + }, + { + content: 'upper pinned 3', + }, + ], + lower: [ + { + content: 'lower pinned 1', + }, + { + content: 'lower pinned 2', + }, + { + content: 'lower pinned 3', + }, + ], + }, + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('Nested bands usage', async function() { + const template = await renderString(` + {% set parent_band_content %} + {% include "@bolt-components-headline/headline.twig" with { + size: "xxxlarge", + text: "This Band Has 2 Bands Nested Inside", + } only %} + {% include "@bolt-components-band/band.twig" with { + size: "xsmall", + theme: "light", + full_bleed: false, + content: "Nested band 1", + } only %} + {% include "@bolt-components-band/band.twig" with { + size: "large", + theme: "xlight", + full_bleed: false, + content: "Nested band 2", + } only %} + {% endset %} + {% include "@bolt-components-band/band.twig" with { + theme: "xdark", + content: parent_band_content, + } only %} + `); + + const renderedBandHTML = await page.evaluate(html => { + const div = document.createElement('div'); + div.innerHTML = `${html}`; + document.body.appendChild(div); + const band = document.querySelector('bolt-band'); + return band.outerHTML; + }, template.html); + + const renderedHTML = await html(renderedBandHTML); + const image = await page.screenshot(); + + expect(image).toMatchImageSnapshot({ + failureThreshold: '0.01', + failureThresholdType: 'percent', + }); + + expect(renderedHTML).toMatchSnapshot(); + }); }); diff --git a/packages/components/bolt-band/band.schema.yml b/packages/components/bolt-band/band.schema.yml index a692cffdf9..9c9fcd6d7a 100644 --- a/packages/components/bolt-band/band.schema.yml +++ b/packages/components/bolt-band/band.schema.yml @@ -87,6 +87,9 @@ properties: type: boolean default: true description: If set to true, the band will take the full width of the page. + enum: + - true + - false theme: type: string description: Controls the theme of the band. diff --git a/packages/components/bolt-band/package.json b/packages/components/bolt-band/package.json index 3e739d3598..de10e57d26 100644 --- a/packages/components/bolt-band/package.json +++ b/packages/components/bolt-band/package.json @@ -2,7 +2,7 @@ "name": "@bolt/components-band", "description": "Band Component in Bolt", "license": "MIT", - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-band", "bugs": "https://github.com/bolt-design-system/bolt/issues", @@ -32,8 +32,9 @@ "access": "public" }, "dependencies": { - "@bolt/components-grid": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-background": "^2.6.0-beta.1", + "@bolt/components-grid": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-band/src/band.scss b/packages/components/bolt-band/src/band.scss index 46459373d8..aaf9d9def7 100644 --- a/packages/components/bolt-band/src/band.scss +++ b/packages/components/bolt-band/src/band.scss @@ -13,10 +13,6 @@ bolt-band { max-height: none; will-change: height, min-height; transition: min-height $bolt-transition; - - &.is-expanded { - min-height: 56.25vh; - } } // Component styles diff --git a/packages/components/bolt-block-list/CHANGELOG.md b/packages/components/bolt-block-list/CHANGELOG.md index e9629497a6..f37fba27d4 100644 --- a/packages/components/bolt-block-list/CHANGELOG.md +++ b/packages/components/bolt-block-list/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-block-list + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-block-list diff --git a/packages/components/bolt-block-list/TESTING.md b/packages/components/bolt-block-list/TESTING.md new file mode 100644 index 0000000000..680d0dba01 --- /dev/null +++ b/packages/components/bolt-block-list/TESTING.md @@ -0,0 +1,30 @@ +# Block-list component testing steps + +## Block-list component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-block-list` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Block-list Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-block-list-05-block-list/02-components-block-list-05-block-list.html). +2. Then, enable javascript and watch as the List re-renders on the client-side. +3. The layout should not shift, e.g. the spacing in between each item of the block-list should be identical before and after the web component re-renders. + +# Block-list component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: block-list + + In order to present list items in a vertical, block display + As a UX designer, developer or content administrator + I need to ensure the "bolt-block-list" component renders and functions as expected + +## Scenario: theme variations + +1. Given I am viewing the [theme variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-block-list-10-block-list-theme-variation/02-components-block-list-10-block-list-theme-variation.html). +2. There is a list of block-list examples each with a different color theme. +3. Theme xlight will have a light theme with a light background and dark font. +4. Theme light will have a light theme with a light background and dark font. +5. Theme medium will have a light theme with a light background and dark font. +6. Theme dark will have a dark theme with a dark background and a light font. +7. Theme xdark will have a dark theme with a dark background and a light font. + diff --git a/packages/components/bolt-block-list/__tests__/__snapshots__/block-list.js.snap b/packages/components/bolt-block-list/__tests__/__snapshots__/block-list.js.snap new file mode 100644 index 0000000000..b286ffa4f4 --- /dev/null +++ b/packages/components/bolt-block-list/__tests__/__snapshots__/block-list.js.snap @@ -0,0 +1,37 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component basic usage 1`] = ` + +
    +
  • + List Item 1 +
  • +
  • + List Item 2 +
  • +
  • + List Item 3 +
  • +
+
+`; + +exports[` Component block list with Drupal theme attribute 1`] = ` + +
    +
  • + List Item 1 +
  • +
  • + List Item 2 +
  • +
  • + List Item 3 +
  • +
+
+`; diff --git a/packages/components/bolt-block-list/__tests__/block-list.js b/packages/components/bolt-block-list/__tests__/block-list.js new file mode 100644 index 0000000000..2dcf23a80d --- /dev/null +++ b/packages/components/bolt-block-list/__tests__/block-list.js @@ -0,0 +1,28 @@ +import { render } from '@bolt/twig-renderer'; + +describe(' Component', () => { + test('basic usage', async () => { + const results = await render( + '@bolt-components-block-list/block-list.twig', + { + items: ['List Item 1', 'List Item 2', 'List Item 3'], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('block list with Drupal theme attribute', async () => { + const results = await render( + '@bolt-components-block-list/block-list.twig', + { + attributes: { + class: ['t-bolt-dark'], + }, + items: ['List Item 1', 'List Item 2', 'List Item 3'], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-block-list/package.json b/packages/components/bolt-block-list/package.json index aad1ba0992..2076b9d3ee 100755 --- a/packages/components/bolt-block-list/package.json +++ b/packages/components/bolt-block-list/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/components-block-list", "description": "Block-list Component in Bolt", - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "license": "MIT", "repository": { @@ -19,7 +19,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-blockquote/CHANGELOG.md b/packages/components/bolt-blockquote/CHANGELOG.md index 08f344466a..af2059f2f1 100644 --- a/packages/components/bolt-blockquote/CHANGELOG.md +++ b/packages/components/bolt-blockquote/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* allow for images passed into the blockquote component to be lazyloaded ([e3b3b39](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/e3b3b39)) +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/d9de9c0)) +* retest Jest after making blockquote test adjustments ([670df4d](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/670df4d)) +* test and typo ([8aa43b3](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/8aa43b3)) +* update blockquote test config ([ab577a8](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/ab577a8)) +* update blockquote VRT snapshot ([b44721b](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/b44721b)) + + +### Reverts + +* revert clipping Jest snapshots due to OS-level screenshot differences ([fc3e438](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/commit/fc3e438)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-blockquote/compare/v2.5.5...v2.5.6) (2019-07-30) diff --git a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-bolt-blockquote-with-no-quotes-renders-1-snap.png b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-bolt-blockquote-with-no-quotes-renders-1-snap.png index 20cf816d94..7a2a804acc 100644 Binary files a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-bolt-blockquote-with-no-quotes-renders-1-snap.png and b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-bolt-blockquote-with-no-quotes-renders-1-snap.png differ diff --git a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-inside-a-form-renders-1-snap.png b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-inside-a-form-renders-1-snap.png index f6caf16cbb..10eb5994ac 100644 Binary files a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-inside-a-form-renders-1-snap.png and b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-inside-a-form-renders-1-snap.png differ diff --git a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-w-o-shadow-dom-renders-1-snap.png b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-w-o-shadow-dom-renders-1-snap.png index f6caf16cbb..f2e822c6db 100644 Binary files a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-w-o-shadow-dom-renders-1-snap.png and b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-w-o-shadow-dom-renders-1-snap.png differ diff --git a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-with-shadow-dom-renders-1-snap.png b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-with-shadow-dom-renders-1-snap.png index f6caf16cbb..d517c5150f 100644 Binary files a/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-with-shadow-dom-renders-1-snap.png and b/packages/components/bolt-blockquote/__tests__/__image_snapshots__/blockquote-js-button-default-bolt-blockquote-with-shadow-dom-renders-1-snap.png differ diff --git a/packages/components/bolt-blockquote/__tests__/__snapshots__/blockquote.js.snap b/packages/components/bolt-blockquote/__tests__/__snapshots__/blockquote.js.snap index 17c78918fb..eb137bd84e 100644 --- a/packages/components/bolt-blockquote/__tests__/__snapshots__/blockquote.js.snap +++ b/packages/components/bolt-blockquote/__tests__/__snapshots__/blockquote.js.snap @@ -62,7 +62,7 @@ exports[`button Basic usage 1`] = ` exports[`button Default inside a
renders 2`] = `
@@ -77,10 +77,10 @@ exports[`button Default inside a renders 2`] = ` PayPal Logo @@ -107,12 +107,15 @@ exports[`button Default inside a renders 2`] = ` + + +

- The greater danger for most of us lies not in setting our aim too high and falling short... + Bolt Blockquote w/ Shadow DOM auto-disabled

@@ -122,8 +125,11 @@ exports[`button Default inside a renders 2`] = ` class="is-last-child" style="" > - In fact, the greater danger is setting our aim too low and achieving our mark. + Yeah, but it works on my machine...

+ + + @@ -150,26 +156,6 @@ exports[`button Default inside a renders 2`] = ` > - -
- - - - Renaissance Artist - - - - -
- - @@ -189,7 +175,7 @@ exports[`button Default inside a renders 2`] = ` style="" > - Michelangelo di Lodovico Buonarroti Simoni + Every Developer, Ever. @@ -213,7 +199,7 @@ exports[`button Default inside a renders 2`] = ` style="" > - Renaissance Artist + Web Developer @@ -234,6 +220,7 @@ exports[`button Default inside a renders 2`] = ` exports[`button Default w/o Shadow DOM renders 2`] = ` w/o Shadow DOM renders 2`] = `
@@ -261,7 +248,7 @@ exports[`button Default w/o Shadow DOM renders 2`] = ` PayPal Logo @@ -294,7 +281,7 @@ exports[`button Default w/o Shadow DOM renders 2`] = ` class="is-first-child" style="" > - The greater danger for most of us lies not in setting our aim too high and falling short... + Bolt Blockquote w/ Shadow DOM Manually Disabled

@@ -304,8 +291,11 @@ exports[`button Default w/o Shadow DOM renders 2`] = ` class="is-last-child" style="" > - In fact, the greater danger is setting our aim too low and achieving our mark. + Press any key to continue or any other key to quit.

+ + + @@ -420,33 +410,19 @@ exports[`button Default w/o Shadow DOM renders 2`] = ` exports[`button Default with Shadow DOM renders 2`] = ` - PayPal Logo - - - -

- The greater danger for most of us lies not in setting our aim too high and falling short... -

- In fact, the greater danger is setting our aim too low and achieving our mark. + Java is to JavaScript what Car is to Carpet.

+ +
`; diff --git a/packages/components/bolt-blockquote/__tests__/blockquote.js b/packages/components/bolt-blockquote/__tests__/blockquote.js index 6496261519..422eff29b7 100644 --- a/packages/components/bolt-blockquote/__tests__/blockquote.js +++ b/packages/components/bolt-blockquote/__tests__/blockquote.js @@ -4,31 +4,37 @@ import { renderString, stopServer, html, + vrtDefaultConfig as vrtConfig, } from '../../../testing/testing-helpers'; const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); const { join } = require('path'); const schema = readYamlFileSync(join(__dirname, '../blockquote.schema.yml')); const { tag } = schema.properties; +const vrtDefaultConfig = Object.assign(vrtConfig, { + failureThreshold: '0.02', +}); + const timeout = 90000; describe('button', () => { - let page, context; + let page; afterAll(async () => { await stopServer(); + await page.close(); }, 100); - beforeAll(async () => { - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); - beforeEach(async () => { - page = await context.newPage(); + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); @@ -52,29 +58,38 @@ describe('button', () => { test('Default with Shadow DOM renders', async function() { const defaultBlockquoteOuter = await page.evaluate(() => { const blockquote = document.createElement('bolt-blockquote'); - blockquote.setAttribute( - 'author-name', - 'Michelangelo di Lodovico Buonarroti Simoni', - ); - blockquote.setAttribute('author-title', 'Renaissance Artist'); - blockquote.setAttribute('author-image', '/fixtures/500x500.jpg'); - blockquote.innerHTML = `PayPal Logo -

The greater danger for most of us lies not in setting our aim too high and falling short...

-

In fact, the greater danger is setting our aim too low and achieving our mark.

`; + blockquote.setAttribute('author-name', 'Chris Heilmann'); + blockquote.setAttribute('author-title', 'Developer Evangelist'); + blockquote.innerHTML = ` +

Java is to JavaScript what Car is to Carpet.

+ `; document.body.appendChild(blockquote); + document.body.classList.add('u-bolt-padding-medium'); blockquote.updated(); return blockquote.outerHTML; }); + await page.evaluate(async () => { + const selectors = Array.from( + document.querySelectorAll('bolt-blockquote'), + ); + return await Promise.all( + selectors.map(blockquote => { + if (blockquote._wasInitiallyRendered === true) return; + return new Promise((resolve, reject) => { + blockquote.addEventListener('ready', resolve); + blockquote.addEventListener('error', reject); + }); + }), + ); + }); + const renderedHTML = await html(defaultBlockquoteOuter); - await page.waitFor(500); // wait half a second before running VRTs + await page.waitFor(500); const image = await page.screenshot(); - expect(image).toMatchImageSnapshot({ - failureThreshold: '0.03', - failureThresholdType: 'percent', - }); + expect(image).toMatchImageSnapshot(vrtDefaultConfig); expect(renderedHTML).toMatchSnapshot(); }); @@ -86,12 +101,15 @@ describe('button', () => { 'author-name', 'Michelangelo di Lodovico Buonarroti Simoni', ); + blockquote.setAttribute('align-items', 'center'); blockquote.setAttribute('author-title', 'Renaissance Artist'); blockquote.setAttribute('author-image', '/fixtures/500x500.jpg'); - blockquote.innerHTML = `PayPal Logo -

The greater danger for most of us lies not in setting our aim too high and falling short...

-

In fact, the greater danger is setting our aim too low and achieving our mark.

`; + blockquote.innerHTML = `PayPal Logo +

Bolt Blockquote w/ Shadow DOM Manually Disabled

+

Press any key to continue or any other key to quit.

+ `; document.body.appendChild(blockquote); + document.body.classList.add('u-bolt-padding-medium'); blockquote.useShadow = false; blockquote.updated(); return blockquote.outerHTML; @@ -105,13 +123,25 @@ describe('button', () => { .classList.contains('c-bolt-blockquote--xlarge'), ).toBe(true); - await page.waitFor(500); // wait half a second before running VRTs + await page.evaluate(async () => { + const selectors = Array.from( + document.querySelectorAll('bolt-blockquote'), + ); + return await Promise.all( + selectors.map(blockquote => { + if (blockquote._wasInitiallyRendered === true) return; + return new Promise((resolve, reject) => { + blockquote.addEventListener('ready', resolve); + blockquote.addEventListener('error', reject); + }); + }), + ); + }); + + await page.waitFor(500); const image = await page.screenshot(); - expect(image).toMatchImageSnapshot({ - failureThreshold: '0.03', - failureThresholdType: 'percent', - }); + expect(image).toMatchImageSnapshot(vrtDefaultConfig); expect(renderedHTML).toMatchSnapshot(); }); @@ -120,29 +150,42 @@ describe('button', () => { const renderedBlockquoteHTML = await page.evaluate(() => { const form = document.createElement('form'); const blockquote = document.createElement('bolt-blockquote'); - blockquote.setAttribute( - 'author-name', - 'Michelangelo di Lodovico Buonarroti Simoni', - ); - blockquote.setAttribute('author-title', 'Renaissance Artist'); - blockquote.setAttribute('author-image', '/fixtures/500x500.jpg'); - blockquote.innerHTML = `PayPal Logo -

The greater danger for most of us lies not in setting our aim too high and falling short...

-

In fact, the greater danger is setting our aim too low and achieving our mark.

`; + blockquote.setAttribute('author-name', 'Every Developer, Ever.'); + blockquote.setAttribute('border', 'horizontal'); + blockquote.setAttribute('size', 'xxlarge'); + blockquote.setAttribute('author-title', 'Web Developer'); + blockquote.innerHTML = ` + Bolt Design System Logo +

Bolt Blockquote w/ Shadow DOM auto-disabled

+

Yeah, but it works on my machine...

+ `; document.body.appendChild(form); + document.body.classList.add('u-bolt-padding-medium'); form.appendChild(blockquote); blockquote.updated(); return blockquote.innerHTML; }); + await page.evaluate(async () => { + const selectors = Array.from( + document.querySelectorAll('bolt-blockquote'), + ); + return await Promise.all( + selectors.map(blockquote => { + if (blockquote._wasInitiallyRendered === true) return; + return new Promise((resolve, reject) => { + blockquote.addEventListener('ready', resolve); + blockquote.addEventListener('error', reject); + }); + }), + ); + }); + const renderedHTML = await html(renderedBlockquoteHTML); - await page.waitFor(500); // wait half a second before running VRTs + await page.waitFor(500); const image = await page.screenshot(); - expect(image).toMatchImageSnapshot({ - failureThreshold: '0.03', - failureThresholdType: 'percent', - }); + expect(image).toMatchImageSnapshot(vrtDefaultConfig); expect(renderedHTML).toMatchSnapshot(); }); @@ -169,15 +212,7 @@ describe('button', () => { await page.waitFor(500); // wait half a second before running VRTs const image = await page.screenshot(); - expect(image).toMatchImageSnapshot({ - failureThreshold: '0.02', - failureThresholdType: 'percent', - customDiffConfig: { - // Please note the threshold set in the customDiffConfig is the per pixel sensitivity threshold. For example with a source pixel colour of #ffffff (white) and a comparison pixel colour of #fcfcfc (really light grey) if you set the threshold to 0 then it would trigger a failure on that pixel. However if you were to use say 0.5 then it wouldn't, the colour difference would need to be much more extreme to trigger a failure on that pixel, say #000000 (black) - threshold: '0.1', - includeAA: false, // If true, disables detecting and ignoring anti-aliased pixels. false by default. - }, - }); + expect(image).toMatchImageSnapshot(vrtDefaultConfig); expect(renderedHTML).toMatchSnapshot(); }); diff --git a/packages/components/bolt-blockquote/fixtures/500x500.jpg b/packages/components/bolt-blockquote/__tests__/fixtures/500x500.jpg similarity index 100% rename from packages/components/bolt-blockquote/fixtures/500x500.jpg rename to packages/components/bolt-blockquote/__tests__/fixtures/500x500.jpg diff --git a/packages/components/bolt-blockquote/__tests__/fixtures/bolt-logo.svg b/packages/components/bolt-blockquote/__tests__/fixtures/bolt-logo.svg new file mode 100755 index 0000000000..1d85b48e2f --- /dev/null +++ b/packages/components/bolt-blockquote/__tests__/fixtures/bolt-logo.svg @@ -0,0 +1,35 @@ + + + + Bolt Logo + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/components/bolt-blockquote/fixtures/logo-paypal.svg b/packages/components/bolt-blockquote/__tests__/fixtures/paypal-logo.svg similarity index 100% rename from packages/components/bolt-blockquote/fixtures/logo-paypal.svg rename to packages/components/bolt-blockquote/__tests__/fixtures/paypal-logo.svg diff --git a/packages/components/bolt-blockquote/package.json b/packages/components/bolt-blockquote/package.json index 625b32ed67..03ede7f870 100755 --- a/packages/components/bolt-blockquote/package.json +++ b/packages/components/bolt-blockquote/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -29,9 +29,11 @@ "access": "public" }, "dependencies": { - "@bolt/components-image": "^2.5.6", - "@bolt/components-text": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/components-image": "^2.6.0-beta.1", + "@bolt/components-logo": "^2.6.0-beta.1", + "@bolt/components-text": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "style": "index.scss", "main": "index.js", diff --git a/packages/components/bolt-blockquote/src/blockquote.twig b/packages/components/bolt-blockquote/src/blockquote.twig index f43d42f588..420fd0da95 100644 --- a/packages/components/bolt-blockquote/src/blockquote.twig +++ b/packages/components/bolt-blockquote/src/blockquote.twig @@ -55,7 +55,6 @@ {% if logo %} {% include "@bolt/logo.twig" with logo|merge({ - "lazyload": false, slot: "logo", }) only %} @@ -76,7 +75,7 @@ {% if author.image %}
- {% include "@bolt/image.twig" with author.image|merge({"lazyload": false, slot:"author-image"}) only %} + {% include "@bolt/image.twig" with author.image|merge({ slot:"author-image"}) only %}
{% endif %} diff --git a/packages/components/bolt-breadcrumb/CHANGELOG.md b/packages/components/bolt-breadcrumb/CHANGELOG.md index d92733d630..99728f41aa 100644 --- a/packages/components/bolt-breadcrumb/CHANGELOG.md +++ b/packages/components/bolt-breadcrumb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-breadcrumb/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-breadcrumb + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-breadcrumb/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-breadcrumb diff --git a/packages/components/bolt-breadcrumb/package.json b/packages/components/bolt-breadcrumb/package.json index 7095ae0a9f..b71a8101d3 100644 --- a/packages/components/bolt-breadcrumb/package.json +++ b/packages/components/bolt-breadcrumb/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.0.0", "maintainers": [ { @@ -31,7 +31,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "schema": "breadcrumb.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-button-group/CHANGELOG.md b/packages/components/bolt-button-group/CHANGELOG.md index 3bf668c3df..25db429194 100644 --- a/packages/components/bolt-button-group/CHANGELOG.md +++ b/packages/components/bolt-button-group/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button-group/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button-group/commit/d9de9c0)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button-group/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-button-group diff --git a/packages/components/bolt-button-group/TESTING.md b/packages/components/bolt-button-group/TESTING.md new file mode 100644 index 0000000000..4c7d289c44 --- /dev/null +++ b/packages/components/bolt-button-group/TESTING.md @@ -0,0 +1,43 @@ +# Button-group component testing steps + +## Button-group component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-button-group` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Button-group Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-buttons-group-05-button-group/02-components-buttons-group-05-button-group.html). +2. Then, enable javascript and watch as the Button-group re-renders on the client-side. +3. The layout should not shift, e.g. the spacing and coloration of each button-group item should be identical before and after the web component re-renders. + +# Button-group component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: button-group + + In order to present buttons, and icon buttons, in groups of two or more + As a UX designer, developer or content administrator + I need to ensure the "bolt-button-group" component renders and functions as expected + +## Scenario: icon button variations + +1. Given I am viewing the [icon button variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-buttons-group-10-button-group-icon-only/02-components-buttons-group-10-button-group-icon-only.html). +2. Two icon buttons in a horizontal group. +3. The first is a colorful, round icon with a white 'x' in the center, and a faint shadow. +4. The second is a white, square icon with a black 'x' in the center, ans a faint shadow. + +## Scenario: quantity variations + +1. Given I am viewing the [quantity variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-buttons-group-15-button-group-quantity-variations/02-components-buttons-group-15-button-group-quantity-variations.html). +2. A header for '1 button(s)' and a single button example beneath it. +3. A header for '2 button(s)' and two buttons in a horizontal group beneath it. +4. A header for '3 button(s)' and three buttons in a horizontal group beneath it. +5. A header for '4 button(s)' and four buttons in a horizontal group beneath it. +6. A header for '5 button(s)' and five buttons in a horizontal group beneath it. + +## Scenario: content item button variations + +1. Given I am viewing the [content item button variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-buttons-group-20-button-group-contentItems/02-components-buttons-group-20-button-group-contentItems.html). +2. Two icon buttons in a horizontal group. +3. The first is a colorful, round icon with a white 'x' in the center, and a faint shadow. +4. The second is a white, square icon with a black 'x' in the center, ans a faint shadow. +5. Beneath the buttons is a text sample. diff --git a/packages/components/bolt-button-group/__tests__/__snapshots__/button-group.js.snap b/packages/components/bolt-button-group/__tests__/__snapshots__/button-group.js.snap new file mode 100644 index 0000000000..40d414c2d5 --- /dev/null +++ b/packages/components/bolt-button-group/__tests__/__snapshots__/button-group.js.snap @@ -0,0 +1,440 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component basic usage 1`] = ` + +
    +
  • + + + +
  • +
  • + + + +
  • +
+
+`; + +exports[` Component button group quantity 3 1`] = ` + +
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+`; + +exports[` Component button group quantity 4 1`] = ` + +
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+`; + +exports[` Component button group quantity 5 1`] = ` + +
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+`; + +exports[` Component content items button group 1`] = ` + +
    +
+ + + + + + +

+ This is text with the tags stripped. +

+
+`; + +exports[` Component icon only button group 1`] = ` + +
    +
  • + + + +
  • +
  • + + + +
  • +
+
+`; diff --git a/packages/components/bolt-button-group/__tests__/button-group.js b/packages/components/bolt-button-group/__tests__/button-group.js new file mode 100644 index 0000000000..fb6d2dadc5 --- /dev/null +++ b/packages/components/bolt-button-group/__tests__/button-group.js @@ -0,0 +1,172 @@ +import { render } from '@bolt/twig-renderer'; + +describe(' Component', () => { + test('basic usage', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + buttons: [ + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'About Pega', + style: 'secondary', + }, + ], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('icon only button group', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + buttons: [ + { + text: 'Example', + style: 'primary', + size: 'xsmall', + iconOnly: true, + icon: { + name: 'close', + }, + border_radius: 'full', + }, + { + text: 'About Pega', + style: 'secondary', + size: 'xsmall', + iconOnly: true, + icon: { + name: 'close', + }, + }, + ], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('button group quantity 3', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + buttons: [ + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + ], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('button group quantity 4', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + buttons: [ + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + ], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('button group quantity 5', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + buttons: [ + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + { + text: 'Learn More', + style: 'primary', + }, + ], + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('content items button group', async () => { + const results = await render( + '@bolt-components-button-group/button-group.twig', + { + contentItems: [ + { + pattern: 'button', + text: 'Example', + style: 'primary', + size: 'xsmall', + iconOnly: true, + border_radius: 'full', + icon: { + name: 'close', + }, + }, + { + pattern: 'button', + text: 'About Pega', + style: 'secondary', + size: 'xsmall', + iconOnly: true, + icon: { + name: 'close', + }, + }, + ], + content: 'This is text with the tags stripped.', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-button-group/package.json b/packages/components/bolt-button-group/package.json index 4afd585b1c..ceac4cbf22 100644 --- a/packages/components/bolt-button-group/package.json +++ b/packages/components/bolt-button-group/package.json @@ -9,7 +9,7 @@ "design system", "button group" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "maintainers": [ { @@ -32,7 +32,9 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "button-group.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-button/CHANGELOG.md b/packages/components/bolt-button/CHANGELOG.md index 828c70e6c4..8060b640f9 100644 --- a/packages/components/bolt-button/CHANGELOG.md +++ b/packages/components/bolt-button/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* accidentally set 'target' attr instead of 'tabindex' ([845a472](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/845a472)) +* add 'disabled' attr to button component ([d5081f1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/d5081f1)) +* add 'target' in twig if passed via attributes ([6b0317e](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/6b0317e)) +* remove outline from button and link custom-elements to fix double-focus ([5454d1f](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/5454d1f)) + + +### Features + +* add 'disabled' state to button link ([4943355](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/4943355)) +* output `display` instead of `display="true"` for consistency ([aa28e34](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/commit/aa28e34)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-button/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-button diff --git a/packages/components/bolt-button/__tests__/__snapshots__/button.js.snap b/packages/components/bolt-button/__tests__/__snapshots__/button.js.snap index acf694d71f..c0c95240d7 100644 --- a/packages/components/bolt-button/__tests__/__snapshots__/button.js.snap +++ b/packages/components/bolt-button/__tests__/__snapshots__/button.js.snap @@ -22,6 +22,32 @@ exports[`button Basic usage 1`] = ` `; +exports[`button Button adds target if passed via attributes 1`] = ` + + + + + + This is a button + + + + + +`; + exports[`button Button tag: a 1`] = ` `; +exports[`button Button with "disabled" adds attr to 1`] = ` + + + + + + This is a button + + + + + +`; + +exports[`button Button with "disabled" adds attr to + +`; + exports[`button Button with an onClick attributes renders properly 1`] = ` with Shadow DOM renders 2`] = ` style="" > - bolt-button{display:-webkit-inline-box;display:inline-flex}bolt-button[disabled],bolt-button[disabled]:focus{outline:0}:host{display:-webkit-inline-box;display:inline-flex}:host([disabled]),:host([disabled]):focus{outline:0}.c-bolt-button{padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--bolt-font-family-body);-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);text-decoration:none;vertical-align:middle;cursor:pointer;border-radius:3px;border-width:1px;border-style:solid;box-shadow:0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08);-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);box-shadow:var(--bolt-button-box-shadow,0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08));will-change:box-shadow}.js-fonts-loaded .c-bolt-button{font-family:"Open Sans","Helvetica Neue",sans-serif;font-family:var(--bolt-font-family-body)}.c-bolt-button:before{content:'';display:block;opacity:.2;position:absolute;top:0;left:0;z-index:-5;width:100%;height:100%;pointer-events:none;border-radius:3px;-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:var(--bolt-button-box-shadow,0 1px 2px 1px rgba(6,10,36,.08));will-change:box-shadow}.c-bolt-button.is-focus:not(.is-hover):not(.is-disabled),.c-bolt-button:focus:not(:hover):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){box-shadow:0 -1px 2px rgba(var(--bolt-theme-background), 1),0 1px 2px rgba(var(--bolt-theme-background), 1),0 0 5px #3b99fc,0 -1px .65rem #3b99fc,0 1px .65rem #3b99fc}.c-bolt-button--primary{color:rgba(var(--bolt-theme-text-on-primary), 1);border-color:rgba(var(--bolt-theme-primary), 1);background-color:rgba(var(--bolt-theme-primary), 1)}.c-bolt-button--primary.is-hover,.c-bolt-button--primary:hover{color:rgba(var(--bolt-theme-text-on-primary-lighten-15), 1);border-color:rgba(var(--bolt-theme-primary-lighten-15), 1);background-color:rgba(var(--bolt-theme-primary-lighten-15), 1);-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:0 1px 8px 1px rgba(6,10,36,.18),0 5px 10px 1px rgba(6,10,36,.15),0 15px 30px 0 rgba(6,10,36,.16)}.c-bolt-button--primary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--primary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){color:rgba(var(--bolt-theme-text-on-primary-darken-15), 1);border-color:rgba(var(--bolt-theme-primary-darken-15), 1);background-color:rgba(var(--bolt-theme-primary-darken-15), 1)}.c-bolt-button--primary.is-active,.c-bolt-button--primary:active{color:rgba(var(--bolt-theme-text-on-primary-darken-25), 1);border-color:rgba(var(--bolt-theme-primary-darken-25), 1);background-color:rgba(var(--bolt-theme-primary-darken-25), 1);-webkit-transform:translate3d(0,1px,0);transform:translate3d(0,1px,0)}.c-bolt-button--secondary{color:rgba(var(--bolt-theme-text-on-secondary), 1);border-color:rgba(var(--bolt-theme-secondary), 1);background-color:rgba(var(--bolt-theme-secondary), 1)}.c-bolt-button--secondary.is-hover,.c-bolt-button--secondary:hover{color:rgba(var(--bolt-theme-text-on-secondary-lighten-5), 1);border-color:rgba(var(--bolt-theme-secondary-lighten-5), 1);background-color:rgba(var(--bolt-theme-secondary-lighten-5), 1);-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:0 1px 8px 1px rgba(6,10,36,.18),0 5px 10px 1px rgba(6,10,36,.15),0 15px 30px 0 rgba(6,10,36,.16)}.c-bolt-button--secondary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--secondary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){color:rgba(var(--bolt-theme-text-on-secondary-darken-3), 1);border-color:rgba(var(--bolt-theme-secondary-darken-3), 1);background-color:rgba(var(--bolt-theme-secondary-darken-3), 1)}.c-bolt-button--secondary.is-active,.c-bolt-button--secondary:active{color:rgba(var(--bolt-theme-text-on-secondary-darken-10), 1);border-color:rgba(var(--bolt-theme-secondary-darken-10), 1);background-color:rgba(var(--bolt-theme-secondary-darken-10), 1);-webkit-transform:translate3d(0,1px,0);transform:translate3d(0,1px,0)}.c-bolt-button--text{opacity:1;color:rgba(var(--bolt-theme-headline-link), 1);text-decoration:none;border-color:transparent}.c-bolt-button--text,.c-bolt-button--text.c-bolt-button--disabled,.c-bolt-button--text[disabled]{background-color:transparent}.c-bolt-button--text,.c-bolt-button--text:before{box-shadow:none}.c-bolt-button--text.is-hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--text:hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){opacity:.8}.c-bolt-button--text.is-active,.c-bolt-button--text.is-focus.is-active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--text:active,.c-bolt-button--text:focus:active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){opacity:.6}.c-bolt-button--disabled,.c-bolt-button[disabled],[aria-disabled=true] .c-bolt-button{cursor:not-allowed}.c-bolt-button--disabled,.c-bolt-button--disabled.is-active,.c-bolt-button--disabled.is-hover,.c-bolt-button--disabled:active,.c-bolt-button--disabled:hover,.c-bolt-button--disabled:visited,.c-bolt-button[disabled],.c-bolt-button[disabled].is-active,.c-bolt-button[disabled].is-hover,.c-bolt-button[disabled]:active,.c-bolt-button[disabled]:hover,.c-bolt-button[disabled]:visited,[aria-disabled=true] .c-bolt-button,[aria-disabled=true] .c-bolt-button.is-active,[aria-disabled=true] .c-bolt-button.is-hover,[aria-disabled=true] .c-bolt-button:active,[aria-disabled=true] .c-bolt-button:hover,[aria-disabled=true] .c-bolt-button:visited{color:rgba(var(--bolt-theme-text-disabled), 1)}.c-bolt-button--disabled:not(.c-bolt-button--text),.c-bolt-button--disabled:not(.c-bolt-button--text).is-active,.c-bolt-button--disabled:not(.c-bolt-button--text).is-hover,.c-bolt-button--disabled:not(.c-bolt-button--text):active,.c-bolt-button--disabled:not(.c-bolt-button--text):hover,.c-bolt-button--disabled:not(.c-bolt-button--text):visited,.c-bolt-button[disabled]:not(.c-bolt-button--text),.c-bolt-button[disabled]:not(.c-bolt-button--text).is-active,.c-bolt-button[disabled]:not(.c-bolt-button--text).is-hover,.c-bolt-button[disabled]:not(.c-bolt-button--text):active,.c-bolt-button[disabled]:not(.c-bolt-button--text):hover,.c-bolt-button[disabled]:not(.c-bolt-button--text):visited,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text),[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text).is-active,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text).is-hover,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):active,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):hover,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):visited{box-shadow:0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08);-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);opacity:1;-webkit-transform:none;transform:none;border-color:rgba(var(--bolt-theme-disabled), 1);box-shadow:var(--bolt-button-box-shadow,0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08));background-color:rgba(var(--bolt-theme-disabled), 1);will-change:box-shadow}.c-bolt-button--disabled.is-active:before,.c-bolt-button--disabled.is-hover:before,.c-bolt-button--disabled:active:before,.c-bolt-button--disabled:before,.c-bolt-button--disabled:hover:before,.c-bolt-button[disabled].is-active:before,.c-bolt-button[disabled].is-hover:before,.c-bolt-button[disabled]:active:before,.c-bolt-button[disabled]:before,.c-bolt-button[disabled]:hover:before,[aria-disabled=true] .c-bolt-button.is-active:before,[aria-disabled=true] .c-bolt-button.is-hover:before,[aria-disabled=true] .c-bolt-button:active:before,[aria-disabled=true] .c-bolt-button:before,[aria-disabled=true] .c-bolt-button:hover:before{display:none}.c-bolt-button--uppercase{text-transform:uppercase}.c-bolt-button--lowercase{text-transform:lowercase}.c-bolt-button--capitalize{text-transform:capitalize}.c-bolt-button--medium{padding:.825rem 2rem;font-size:.8rem;line-height:1.45}.c-bolt-button--medium.c-bolt-button--icon-only{width:2.81rem;min-height:2.81rem}.c-bolt-button--xsmall{padding:.206rem .5rem;font-size:.8rem;line-height:1.45}.c-bolt-button--xsmall.c-bolt-button--icon-only{width:1.572rem;min-height:1.572rem}.c-bolt-button--small{padding:.412rem 1rem;font-size:.8rem;line-height:1.45}.c-bolt-button--small.c-bolt-button--icon-only{width:1.985rem;min-height:1.985rem}.c-bolt-button--large{padding:.825rem 2rem;font-size:1rem;line-height:1.65}.c-bolt-button--large.c-bolt-button--icon-only{width:3.3rem;min-height:3.3rem}.c-bolt-button--xlarge{padding:1.65rem 4rem;font-size:1.111rem;line-height:1.45}.c-bolt-button--xlarge.c-bolt-button--icon-only{width:4.911rem;min-height:4.911rem}.c-bolt-button--icon-only{padding:0}.c-bolt-button--icon-only .c-bolt-button__icon,.c-bolt-button--icon-only .c-bolt-button__item{margin:0}.c-bolt-button--icon-only .c-bolt-button__item{opacity:0;width:0;overflow:hidden;color:transparent;text-indent:-99999em;white-space:nowrap}.c-bolt-button--icon-only .c-bolt-button__icon-sizer{position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.c-bolt-button--icon-only.c-bolt-button--xsmall .c-bolt-button__icon-sizer{font-size:1em}.c-bolt-button--icon-only.c-bolt-button--small .c-bolt-button__icon-sizer{font-size:1.25em}.c-bolt-button--icon-only.c-bolt-button--medium .c-bolt-button__icon-sizer{font-size:1.5em}.c-bolt-button--icon-only.c-bolt-button--large .c-bolt-button__icon-sizer{font-size:1.75em}.c-bolt-button--icon-only.c-bolt-button--xlarge .c-bolt-button__icon-sizer{font-size:2em}.c-bolt-button--full,bolt-button[width=full]{width:100%}:host([width=full]){width:100%}@media (max-width:37.499em){.c-bolt-button--full\\@small,bolt-button[width='full@small']{width:100%}:host([width='full@small']){width:100%}}.c-bolt-button--border-radius-regular,.c-bolt-button--border-radius-regular:before,bolt-button[border-radius=regular]{border-radius:3px}.c-bolt-button--border-radius-full,.c-bolt-button--border-radius-full:before,bolt-button[border-radius=full]{border-radius:50em}.c-bolt-button__icon.is-empty{display:none}.c-bolt-button__icon:not(.is-empty){display:-webkit-box;display:flex}.c-bolt-button__item{display:-webkit-inline-box;display:inline-flex;text-align:left;text-align:start}.c-bolt-button__icon:not(.is-empty) .c-bolt-button__icon-sizer{display:-webkit-box;display:flex}.c-bolt-button:not(.c-bolt-button--icon-only) .c-bolt-button__icon:not(.is-empty)+.c-bolt-button__item,.c-bolt-button:not(.c-bolt-button--icon-only) .c-bolt-button__item+.c-bolt-button__icon:not(.is-empty){margin-left:.25rem}.c-bolt-button--center{-webkit-box-pack:center;justify-content:center}.c-bolt-button--start{-webkit-box-pack:start;justify-content:flex-start}.c-bolt-button--end{-webkit-box-pack:end;justify-content:flex-end} + bolt-button{display:-webkit-inline-box;display:inline-flex;outline:0}:host{display:-webkit-inline-box;display:inline-flex;outline:0}.c-bolt-button{padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--bolt-font-family-body);-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);text-decoration:none;vertical-align:middle;cursor:pointer;border-radius:3px;border-width:1px;border-style:solid;box-shadow:0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08);-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);box-shadow:var(--bolt-button-box-shadow,0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08));will-change:box-shadow}.js-fonts-loaded .c-bolt-button{font-family:"Open Sans","Helvetica Neue",sans-serif;font-family:var(--bolt-font-family-body)}.c-bolt-button:before{content:'';display:block;opacity:.2;position:absolute;top:0;left:0;z-index:-5;width:100%;height:100%;pointer-events:none;border-radius:3px;-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:var(--bolt-button-box-shadow,0 1px 2px 1px rgba(6,10,36,.08));will-change:box-shadow}.c-bolt-button.is-focus:not(.is-hover):not(.is-disabled),.c-bolt-button:focus:not(:hover):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){box-shadow:0 -1px 2px rgba(var(--bolt-theme-background), 1),0 1px 2px rgba(var(--bolt-theme-background), 1),0 0 5px #3b99fc,0 -1px .65rem #3b99fc,0 1px .65rem #3b99fc}.c-bolt-button--primary{color:rgba(var(--bolt-theme-text-on-primary), 1);border-color:rgba(var(--bolt-theme-primary), 1);background-color:rgba(var(--bolt-theme-primary), 1)}.c-bolt-button--primary.is-hover,.c-bolt-button--primary:hover{color:rgba(var(--bolt-theme-text-on-primary-lighten-15), 1);border-color:rgba(var(--bolt-theme-primary-lighten-15), 1);background-color:rgba(var(--bolt-theme-primary-lighten-15), 1);-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:0 1px 8px 1px rgba(6,10,36,.18),0 5px 10px 1px rgba(6,10,36,.15),0 15px 30px 0 rgba(6,10,36,.16)}.c-bolt-button--primary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--primary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){color:rgba(var(--bolt-theme-text-on-primary-darken-15), 1);border-color:rgba(var(--bolt-theme-primary-darken-15), 1);background-color:rgba(var(--bolt-theme-primary-darken-15), 1)}.c-bolt-button--primary.is-active,.c-bolt-button--primary:active{color:rgba(var(--bolt-theme-text-on-primary-darken-25), 1);border-color:rgba(var(--bolt-theme-primary-darken-25), 1);background-color:rgba(var(--bolt-theme-primary-darken-25), 1);-webkit-transform:translate3d(0,1px,0);transform:translate3d(0,1px,0)}.c-bolt-button--secondary{color:rgba(var(--bolt-theme-text-on-secondary), 1);border-color:rgba(var(--bolt-theme-secondary), 1);background-color:rgba(var(--bolt-theme-secondary), 1)}.c-bolt-button--secondary.is-hover,.c-bolt-button--secondary:hover{color:rgba(var(--bolt-theme-text-on-secondary-lighten-5), 1);border-color:rgba(var(--bolt-theme-secondary-lighten-5), 1);background-color:rgba(var(--bolt-theme-secondary-lighten-5), 1);-webkit-transform:translateY(-2px);transform:translateY(-2px);box-shadow:0 1px 8px 1px rgba(6,10,36,.18),0 5px 10px 1px rgba(6,10,36,.15),0 15px 30px 0 rgba(6,10,36,.16)}.c-bolt-button--secondary.is-focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--secondary:focus:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){color:rgba(var(--bolt-theme-text-on-secondary-darken-3), 1);border-color:rgba(var(--bolt-theme-secondary-darken-3), 1);background-color:rgba(var(--bolt-theme-secondary-darken-3), 1)}.c-bolt-button--secondary.is-active,.c-bolt-button--secondary:active{color:rgba(var(--bolt-theme-text-on-secondary-darken-10), 1);border-color:rgba(var(--bolt-theme-secondary-darken-10), 1);background-color:rgba(var(--bolt-theme-secondary-darken-10), 1);-webkit-transform:translate3d(0,1px,0);transform:translate3d(0,1px,0)}.c-bolt-button--text{opacity:1;color:rgba(var(--bolt-theme-headline-link), 1);text-decoration:none;border-color:transparent}.c-bolt-button--text,.c-bolt-button--text.c-bolt-button--disabled,.c-bolt-button--text[disabled]{background-color:transparent}.c-bolt-button--text,.c-bolt-button--text:before{box-shadow:none}.c-bolt-button--text.is-hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--text:hover:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){opacity:.8}.c-bolt-button--text.is-active,.c-bolt-button--text.is-focus.is-active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert),.c-bolt-button--text:active,.c-bolt-button--text:focus:active:not([disabled]):not(.c-bolt-button--disabled):not(.c-bolt-button--inert){opacity:.6}.c-bolt-button--disabled,.c-bolt-button[disabled],[aria-disabled=true] .c-bolt-button{cursor:not-allowed}.c-bolt-button--disabled,.c-bolt-button--disabled.is-active,.c-bolt-button--disabled.is-hover,.c-bolt-button--disabled:active,.c-bolt-button--disabled:hover,.c-bolt-button--disabled:visited,.c-bolt-button[disabled],.c-bolt-button[disabled].is-active,.c-bolt-button[disabled].is-hover,.c-bolt-button[disabled]:active,.c-bolt-button[disabled]:hover,.c-bolt-button[disabled]:visited,[aria-disabled=true] .c-bolt-button,[aria-disabled=true] .c-bolt-button.is-active,[aria-disabled=true] .c-bolt-button.is-hover,[aria-disabled=true] .c-bolt-button:active,[aria-disabled=true] .c-bolt-button:hover,[aria-disabled=true] .c-bolt-button:visited{color:rgba(var(--bolt-theme-text-disabled), 1)}.c-bolt-button--disabled:not(.c-bolt-button--text),.c-bolt-button--disabled:not(.c-bolt-button--text).is-active,.c-bolt-button--disabled:not(.c-bolt-button--text).is-hover,.c-bolt-button--disabled:not(.c-bolt-button--text):active,.c-bolt-button--disabled:not(.c-bolt-button--text):hover,.c-bolt-button--disabled:not(.c-bolt-button--text):visited,.c-bolt-button[disabled]:not(.c-bolt-button--text),.c-bolt-button[disabled]:not(.c-bolt-button--text).is-active,.c-bolt-button[disabled]:not(.c-bolt-button--text).is-hover,.c-bolt-button[disabled]:not(.c-bolt-button--text):active,.c-bolt-button[disabled]:not(.c-bolt-button--text):hover,.c-bolt-button[disabled]:not(.c-bolt-button--text):visited,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text),[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text).is-active,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text).is-hover,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):active,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):hover,[aria-disabled=true] .c-bolt-button:not(.c-bolt-button--text):visited{box-shadow:0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08);-webkit-transition:.3s cubic-bezier(.25,.8,.25,1);transition:.3s cubic-bezier(.25,.8,.25,1);opacity:1;-webkit-transform:none;transform:none;border-color:rgba(var(--bolt-theme-disabled), 1);box-shadow:var(--bolt-button-box-shadow,0 1px 4px 1px rgba(6,10,36,.1),0 5px 10px 0 rgba(6,10,36,.08));background-color:rgba(var(--bolt-theme-disabled), 1);will-change:box-shadow}.c-bolt-button--disabled.is-active:before,.c-bolt-button--disabled.is-hover:before,.c-bolt-button--disabled:active:before,.c-bolt-button--disabled:before,.c-bolt-button--disabled:hover:before,.c-bolt-button[disabled].is-active:before,.c-bolt-button[disabled].is-hover:before,.c-bolt-button[disabled]:active:before,.c-bolt-button[disabled]:before,.c-bolt-button[disabled]:hover:before,[aria-disabled=true] .c-bolt-button.is-active:before,[aria-disabled=true] .c-bolt-button.is-hover:before,[aria-disabled=true] .c-bolt-button:active:before,[aria-disabled=true] .c-bolt-button:before,[aria-disabled=true] .c-bolt-button:hover:before{display:none}.c-bolt-button--uppercase{text-transform:uppercase}.c-bolt-button--lowercase{text-transform:lowercase}.c-bolt-button--capitalize{text-transform:capitalize}.c-bolt-button--medium{padding:.825rem 2rem;font-size:.8rem;line-height:1.45}.c-bolt-button--medium.c-bolt-button--icon-only{width:2.81rem;min-height:2.81rem}.c-bolt-button--xsmall{padding:.206rem .5rem;font-size:.8rem;line-height:1.45}.c-bolt-button--xsmall.c-bolt-button--icon-only{width:1.572rem;min-height:1.572rem}.c-bolt-button--small{padding:.412rem 1rem;font-size:.8rem;line-height:1.45}.c-bolt-button--small.c-bolt-button--icon-only{width:1.985rem;min-height:1.985rem}.c-bolt-button--large{padding:.825rem 2rem;font-size:1rem;line-height:1.65}.c-bolt-button--large.c-bolt-button--icon-only{width:3.3rem;min-height:3.3rem}.c-bolt-button--xlarge{padding:1.65rem 4rem;font-size:1.111rem;line-height:1.45}.c-bolt-button--xlarge.c-bolt-button--icon-only{width:4.911rem;min-height:4.911rem}.c-bolt-button--icon-only{padding:0}.c-bolt-button--icon-only .c-bolt-button__icon,.c-bolt-button--icon-only .c-bolt-button__item{margin:0}.c-bolt-button--icon-only .c-bolt-button__item{opacity:0;width:0;overflow:hidden;color:transparent;text-indent:-99999em;white-space:nowrap}.c-bolt-button--icon-only .c-bolt-button__icon-sizer{position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.c-bolt-button--icon-only.c-bolt-button--xsmall .c-bolt-button__icon-sizer{font-size:1em}.c-bolt-button--icon-only.c-bolt-button--small .c-bolt-button__icon-sizer{font-size:1.25em}.c-bolt-button--icon-only.c-bolt-button--medium .c-bolt-button__icon-sizer{font-size:1.5em}.c-bolt-button--icon-only.c-bolt-button--large .c-bolt-button__icon-sizer{font-size:1.75em}.c-bolt-button--icon-only.c-bolt-button--xlarge .c-bolt-button__icon-sizer{font-size:2em}.c-bolt-button--full,bolt-button[width=full]{width:100%}:host([width=full]){width:100%}@media (max-width:37.499em){.c-bolt-button--full\\@small,bolt-button[width='full@small']{width:100%}:host([width='full@small']){width:100%}}.c-bolt-button--border-radius-regular,.c-bolt-button--border-radius-regular:before,bolt-button[border-radius=regular]{border-radius:3px}.c-bolt-button--border-radius-full,.c-bolt-button--border-radius-full:before,bolt-button[border-radius=full]{border-radius:50em}.c-bolt-button__icon.is-empty{display:none}.c-bolt-button__icon:not(.is-empty){display:-webkit-box;display:flex}.c-bolt-button__item{display:-webkit-inline-box;display:inline-flex;text-align:left;text-align:start}.c-bolt-button__icon:not(.is-empty) .c-bolt-button__icon-sizer{display:-webkit-box;display:flex}.c-bolt-button:not(.c-bolt-button--icon-only) .c-bolt-button__icon:not(.is-empty)+.c-bolt-button__item,.c-bolt-button:not(.c-bolt-button--icon-only) .c-bolt-button__item+.c-bolt-button__icon:not(.is-empty){margin-left:.25rem}.c-bolt-button--center{-webkit-box-pack:center;justify-content:center}.c-bolt-button--start{-webkit-box-pack:start;justify-content:flex-start}.c-bolt-button--end{-webkit-box-pack:end;justify-content:flex-end} `; diff --git a/packages/components/bolt-button/__tests__/button.js b/packages/components/bolt-button/__tests__/button.js index db2f3a6e97..258ac7f1ed 100644 --- a/packages/components/bolt-button/__tests__/button.js +++ b/packages/components/bolt-button/__tests__/button.js @@ -13,23 +13,23 @@ const { tag } = schema.properties; const timeout = 90000; describe('button', () => { - let page, isOnline, context; - - beforeAll(async () => { - isOnline = await isConnected(); - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); + let page; afterAll(async () => { await stopServer(); + await page.close(); }); beforeEach(async () => { - page = await context.newPage(); + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); @@ -41,6 +41,18 @@ describe('button', () => { expect(results.html).toMatchSnapshot(); }); + test('Button adds target if passed via attributes', async () => { + const results = await render('@bolt-components-button/button.twig', { + text: 'This is a button', + url: 'http://pega.com', + attributes: { + target: '_blank', + }, + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + tag.enum.forEach(async tagChoice => { test(`Button tag: ${tagChoice}`, async () => { const results = await render('@bolt-components-button/button.twig', { @@ -52,6 +64,29 @@ describe('button', () => { }); }); + test('Button with "disabled" adds attr to + + + + + + + +
+ + + Copied! +
+
+ + +`; + +exports[` Component custom confirmation text 1`] = ` + + + + + + + + + + + Custom confirmation + + + +`; + +exports[` Component custom transition text 1`] = ` + + + + + Custom transition text + + +
+ + + Copied! +
+
+
+
+`; + +exports[` Component custom trigger component 1`] = ` + + + + + + + + + + +
+ + + Copied! +
+
+
+
+`; + +exports[` Component custom trigger text 1`] = ` + + + + + + + + + + +
+ + + Copied! +
+
+
+
+`; + +exports[` Component custom trigger, transition, and confirmation text 1`] = ` + + + + + Custom transition + + + Custom confirmation + + + +`; + +exports[` Component multiple instances 1`] = ` + + + + + + + + + + +
+ + + Copied! +
+
+
+
+ + + + + + + + + + +
+ + + Copied! +
+
+
+
+`; diff --git a/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.js b/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.js new file mode 100644 index 0000000000..c5adea90ca --- /dev/null +++ b/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.js @@ -0,0 +1,108 @@ +import { + render, + renderString, + stopServer, +} from '../../../testing/testing-helpers'; + +describe(' Component', () => { + afterAll(async () => { + await stopServer(); + }); + + test('basic usage with attributes', async () => { + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + attributes: { + 'data-attr': 'some attribute', + }, + text_to_copy: 'https://boltdesignsystem.com', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('multiple instances', async () => { + const results = await renderString(` +{% include "@bolt-components-copy-to-clipboard/copy-to-clipboard.twig" with { + trigger_text: "Copy Link #1", + text_to_copy: "https://boltdesignsystem.com/#link-1" +} only %} +{% include "@bolt-components-copy-to-clipboard/copy-to-clipboard.twig" with { + trigger_text: "Copy Link #2", + text_to_copy: "https://boltdesignsystem.com/#link-2" +} only %} + `); + + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('custom trigger text', async () => { + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + trigger_text: 'This is custom trigger text', + text_to_copy: 'https://boltdesignsystem.com/#link-1', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('custom trigger component', async () => { + const customTrigger = await render('@bolt-components-icon/icon.twig', { + name: 'add-open', + background: 'circle', + size: 'medium', + }); + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + text_to_copy: 'https://boltdesignsystem.com/#link-1', + custom_trigger: customTrigger.html, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('custom transition text', async () => { + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + text_to_copy: 'https://boltdesignsystem.com/#custom-transition', + custom_transition: 'Custom transition text', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('custom confirmation text', async () => { + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + text_to_copy: 'https://boltdesignsystem.com/#custom-transition', + custom_confirmation: 'Custom confirmation', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('custom trigger, transition, and confirmation text', async () => { + const results = await render( + '@bolt-components-copy-to-clipboard/copy-to-clipboard.twig', + { + text_to_copy: 'https://boltdesignsystem.com/#custom-transition', + custom_confirmation: 'Custom confirmation', + custom_trigger: 'Custom trigger', + custom_transition: 'Custom transition', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.no2e.js b/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.no2e.js new file mode 100644 index 0000000000..6d5caff93c --- /dev/null +++ b/packages/components/bolt-copy-to-clipboard/__tests__/copy-to-clipboard.no2e.js @@ -0,0 +1,59 @@ +let currentBrowser; + +module.exports = { + tags: ['component', 'copy-to-clipboard', 'web component'], + 'Bolt Copy To Clipboard': function(browser) { + const { testingUrl } = browser.globals; + console.log(`global browser url: ${testingUrl}`); + currentBrowser = '--' + browser.currentEnv || 'chrome'; + let testName = 'bolt-copy-to-clipboard'; + + browser + .url( + `${testingUrl}/pattern-lab/patterns/02-components-copy-to-clipboard-05-copy-to-clipboard/02-components-copy-to-clipboard-05-copy-to-clipboard.html`, + ) + .waitForElementVisible('bolt-copy-to-clipboard', 1000) + .click( + 'bolt-copy-to-clipboard span.c-bolt-copy-to-clipboard__action-text', + ) + .pause(1000) + .execute( + function(data) { + // Approach 1: test that ClipBoardJS instance on Copy To Clipboard instantiates and lifts copy + // Drawback: ClipboardJS may still work despite breaking change to interface with browser/clipboard API + // Confirm ClipboardJS instance has stored the desired text string + const copyToClipboardElement = document.querySelector( + 'bolt-copy-to-clipboard', + ); + return copyToClipboardElement.clipboardInstance + ? copyToClipboardElement.clipboardInstance.clipboardAction + .selectedText === 'https://boltdesignsystem.com' + : false; + + // Approach 2: Mimic a paste event into an empty text input field, then read its value + // Create dummy input element to paste clipboard contents + // const copyTargetInput = document.createElement('input'); + // copyTargetInput.setAttribute('type', 'text'); + + // Attach Dummy input to document, focus, and paste from the clipboard + // document.body.appendChild(copyTargetInput); + // copyTargetInput.focus(); + // browser.keys([browser.Keys.CONTROL, 'v']); // Not sure if this works across multiple browsers + + // Check text inside input element + // return copyTargetInput.value === 'https://boltdesignsystem.com'; + }, + [], + function(result) { + browser.assert.ok( + result.value === true, + `verified that "bolt-copy-to-clipboard" instantiated Clipboard.js and stored value from Dom after click.`, + ); + }, + ) + .saveScreenshot( + `screenshots/bolt-copy-to-clipboard/${testName}--${currentBrowser}.png`, + ) + .end(); + }, +}; diff --git a/packages/components/bolt-copy-to-clipboard/package.json b/packages/components/bolt-copy-to-clipboard/package.json index 7db7cbfdfd..276ed3dd5b 100644 --- a/packages/components/bolt-copy-to-clipboard/package.json +++ b/packages/components/bolt-copy-to-clipboard/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/components-copy-to-clipboard", "description": "Copy to Clipboard Component in Bolt", - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "license": "MIT", "repository": { @@ -19,9 +19,9 @@ "access": "public" }, "dependencies": { - "@bolt/components-icon": "^2.5.6", - "@bolt/components-link": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-link": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "clipboard": "^2.0.0" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-critical-css-vars/CHANGELOG.md b/packages/components/bolt-critical-css-vars/CHANGELOG.md index d14c51ae4f..a7499b9090 100644 --- a/packages/components/bolt-critical-css-vars/CHANGELOG.md +++ b/packages/components/bolt-critical-css-vars/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css-vars/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-critical-css-vars + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css-vars/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-critical-css-vars diff --git a/packages/components/bolt-critical-css-vars/package.json b/packages/components/bolt-critical-css-vars/package.json index 170503e9c3..f642bb0cf7 100644 --- a/packages/components/bolt-critical-css-vars/package.json +++ b/packages/components/bolt-critical-css-vars/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/components-critical-css-vars", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Async critical CSS Vars fallback loader", "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css-vars", "bugs": "https://github.com/bolt-design-system/bolt/issues", @@ -11,8 +11,8 @@ "author": "Salem Ghoweri", "license": "MIT", "dependencies": { - "@bolt/build-tools": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/build-tools": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "fg-loadcss": ">= ^2.1.0" }, "publishConfig": { diff --git a/packages/components/bolt-critical-css/CHANGELOG.md b/packages/components/bolt-critical-css/CHANGELOG.md index a556bf1048..adbe902e2c 100644 --- a/packages/components/bolt-critical-css/CHANGELOG.md +++ b/packages/components/bolt-critical-css/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-critical-css + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-critical-css diff --git a/packages/components/bolt-critical-css/package.json b/packages/components/bolt-critical-css/package.json index f876290f89..faa6f089cf 100644 --- a/packages/components/bolt-critical-css/package.json +++ b/packages/components/bolt-critical-css/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/components-critical-css", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Async load CSS + add support for tags", "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-css", "bugs": "https://github.com/bolt-design-system/bolt/issues", @@ -11,8 +11,8 @@ "author": "Salem Ghoweri", "license": "MIT", "dependencies": { - "@bolt/build-tools": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/build-tools": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "fg-loadcss": "^2.1.0" }, "publishConfig": { diff --git a/packages/components/bolt-critical-fonts/CHANGELOG.md b/packages/components/bolt-critical-fonts/CHANGELOG.md index 30394c32ac..bf22056ec1 100644 --- a/packages/components/bolt-critical-fonts/CHANGELOG.md +++ b/packages/components/bolt-critical-fonts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-fonts/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-critical-fonts + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-fonts/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-critical-fonts diff --git a/packages/components/bolt-critical-fonts/package.json b/packages/components/bolt-critical-fonts/package.json index ffe3899196..773f042fc2 100644 --- a/packages/components/bolt-critical-fonts/package.json +++ b/packages/components/bolt-critical-fonts/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/components-critical-fonts", "sourceFilesFrom": "0.9.6", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "Async critical path font loader", "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-critical-fonts", "bugs": "https://github.com/bolt-design-system/bolt/issues", @@ -12,9 +12,9 @@ "author": "Salem Ghoweri", "license": "MIT", "dependencies": { - "@bolt/components-headline": "^2.5.6", - "@bolt/core": "^2.5.6", - "@bolt/global": "^2.5.6", + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", + "@bolt/global": "^2.6.0-beta.1", "fontfaceobserver": "^2.0.13" }, "publishConfig": { diff --git a/packages/components/bolt-device-viewer/CHANGELOG.md b/packages/components/bolt-device-viewer/CHANGELOG.md index c7ac86e129..f9034b5790 100644 --- a/packages/components/bolt-device-viewer/CHANGELOG.md +++ b/packages/components/bolt-device-viewer/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/commit/d9de9c0)) +* make sure Jest tests using the Twig Renderer stop the server when finished ([5e880f5](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/commit/5e880f5)) +* update device viewer Jest snapshot to reflect updated image component + update yarn.lock ([3c6deff](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/commit/3c6deff)) +* update jest tests ([78cb2c7](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/commit/78cb2c7)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-device-viewer/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-device-viewer diff --git a/packages/components/bolt-device-viewer/TESTING.md b/packages/components/bolt-device-viewer/TESTING.md new file mode 100644 index 0000000000..453cc31521 --- /dev/null +++ b/packages/components/bolt-device-viewer/TESTING.md @@ -0,0 +1,52 @@ +# Device Viewer component testing steps + +## Device Viewer component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-device-viewer` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Device Viewer Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-device-viewer-05-device-viewer/02-components-device-viewer-05-device-viewer.html). +2. Then, enable javascript and watch as the Device Viewer re-renders on the client-side. +3. The layout should not shift, e.g. the appearance of each device image should be identical before and after the web component re-renders. + +# Device Viewer component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: device viewer + + In order to present application layouts as seen by mulitple device viewports + As a UX designer, developer or content administrator + I need to ensure the "bolt-device-viewer" component renders and functions as expected + +## Scenario: Ipad display variations + +1. Given I am viewing the [Ipad display variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-device-viewer-10-device-viewer-ipad-variation/02-components-device-viewer-10-device-viewer-ipad-variation.html). +2. First display varient should show a black Ipad in a portrait orientation. +3. Second display varient should be a black Ipad in a landscape orientation. +4. Third display varient should be a silver Ipad in a portrait orientation. +5. Fourth display varient should be a silver Ipad in a landsacpe orientation. +6. Fifth display varient should be a silver Ipad in a portrait orientation with a magnifying glass icon in viewport center. +7. When hovered over with the cursor a movable magnification view becomes visible. +8. Sixth display varient should be a black Ipad in a landscape orientation with a magnifying glass icon in viewport center. +9. When hovered over with the cursor a movable magnification view becomes visible. + +## Scenario: Iphone8 display variations + +1. Given I am viewing the [Iphone8 variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-device-viewer-15-device-viewer-iphone8-variation/02-components-device-viewer-15-device-viewer-iphone8-variation.html). +2. First display varient should show a black Iphone8 in a portrait orientation. +3. Second display varient should be a black Iphone8 in a landscape orientation. +4. Third display varient should be a silver Iphone8 in a portrait orientation. +5. Fourth display varient should be a silver Iphone8 in a landsacpe orientation. +6. Third display varient should be a gold Iphone8 in a portrait orientation. +7. Fourth display varient should be a gold Iphone8 in a landsacpe orientation. +8. Fifth display varient should be a silver Iphone8 in a portrait orientation with a magnifying glass icon in viewport center. +9. When hovered over with the cursor a movable magnification view becomes visible. +10. Sixth display varient should be a black Iphone8 in a landscape orientation with a magnifying glass icon in viewport center. +11. When hovered over with the cursor a movable magnification view becomes visible. + +## Scenario: Macbook variations + +1. Given I am viewing the [Macbook variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-device-viewer-20-device-viewer-macbook-variation/02-components-device-viewer-20-device-viewer-macbook-variation.html). +2. First display varient should display the default macbook view. +3. Second display should display a macbook with a magnifying glass icon in the viewport center. +4. When hovered over with the cursor a movable magnification view becomes visible. diff --git a/packages/components/bolt-device-viewer/__tests__/__snapshots__/device-viewer.js.snap b/packages/components/bolt-device-viewer/__tests__/__snapshots__/device-viewer.js.snap new file mode 100644 index 0000000000..662e125eef --- /dev/null +++ b/packages/components/bolt-device-viewer/__tests__/__snapshots__/device-viewer.js.snap @@ -0,0 +1,340 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component basic usage 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + +
+
+
+`; + +exports[` Component decvice-viewer display: ipad 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component decvice-viewer display: iphone8 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component decvice-viewer display: macbook 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component device-viewer display: black 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component device-viewer display: gold 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component device-viewer display: landscape 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component device-viewer display: portrait 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component device-viewer display: silver 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`; + +exports[` Component usage with magnification 1`] = ` + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+`; diff --git a/packages/components/bolt-device-viewer/__tests__/device-viewer.js b/packages/components/bolt-device-viewer/__tests__/device-viewer.js new file mode 100644 index 0000000000..5ce095b76a --- /dev/null +++ b/packages/components/bolt-device-viewer/__tests__/device-viewer.js @@ -0,0 +1,89 @@ +import { + render, + renderString, + stopServer, +} from '../../../testing/testing-helpers'; +const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); +const { join } = require('path'); +const schema = readYamlFileSync(join(__dirname, '../device-viewer.schema.yml')); +const { deviceName, color, orientation } = schema.properties; + +describe(' Component', () => { + afterAll(async () => { + await stopServer(); + }); + + test('basic usage', async () => { + const results = await render( + '@bolt-components-device-viewer/device-viewer.twig', + { + device: 'iphone8', + orientation: 'portrait', + color: 'white', + image: { + src: '/fixtures/device-screenshot--phone.jpg', + }, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + deviceName.enum.forEach(async deviceChoice => { + test(`decvice-viewer display: ${deviceChoice}`, async () => { + const results = await render( + '@bolt-components-device-viewer/device-viewer.twig', + { + device: deviceChoice, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + color.enum.forEach(async colorChoice => { + test(`device-viewer display: ${colorChoice}`, async () => { + const results = await render( + '@bolt-components-device-viewer/device-viewer.twig', + { + device: 'iphone8', + color: colorChoice, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + orientation.enum.forEach(async orientationChoice => { + test(`device-viewer display: ${orientationChoice}`, async () => { + const results = await render( + '@bolt-components-device-viewer/device-viewer.twig', + { + device: 'iphone8', + orientation: orientationChoice, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + test('usage with magnification', async () => { + const results = await render( + '@bolt-components-device-viewer/device-viewer.twig', + { + device: 'ipad', + orientation: 'portrait', + color: 'white', + image: { + src: '/fixtures/device-screenshot--tablet-portrait.jpg', + }, + magnify: true, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--desktop.jpg b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--desktop.jpg new file mode 100644 index 0000000000..070fe86c27 Binary files /dev/null and b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--desktop.jpg differ diff --git a/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--phone.jpg b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--phone.jpg new file mode 100644 index 0000000000..40b02846da Binary files /dev/null and b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--phone.jpg differ diff --git a/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet-portrait.jpg b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet-portrait.jpg new file mode 100644 index 0000000000..6dacf1d9a3 Binary files /dev/null and b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet-portrait.jpg differ diff --git a/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet.jpg b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet.jpg new file mode 100644 index 0000000000..6e8b604f3b Binary files /dev/null and b/packages/components/bolt-device-viewer/__tests__/fixtures/device-screenshot--tablet.jpg differ diff --git a/packages/components/bolt-device-viewer/package.json b/packages/components/bolt-device-viewer/package.json index 559c5dce20..c1e5605d56 100644 --- a/packages/components/bolt-device-viewer/package.json +++ b/packages/components/bolt-device-viewer/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.10.2", "maintainers": [ { @@ -32,7 +32,9 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-image": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "drift-zoom": "^1.2.0" }, "schema": "device-viewer.schema.yml", diff --git a/packages/components/bolt-device-viewer/src/devices/_ipad.twig b/packages/components/bolt-device-viewer/src/devices/_ipad.twig index 95ba1f15f1..2765c0dd83 100644 --- a/packages/components/bolt-device-viewer/src/devices/_ipad.twig +++ b/packages/components/bolt-device-viewer/src/devices/_ipad.twig @@ -27,11 +27,11 @@ ] %}
- {% include "parts/_camera.twig" only %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" only %}
{% if image %} {{ include('@bolt/image.twig', {'image': image}, with_context = false) }} {% endif %}
- {% include "parts/_home.twig" only %} + {% include "@bolt-components-device-viewer/parts/_home.twig" only %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_iphone-4s.twig b/packages/components/bolt-device-viewer/src/devices/_iphone-4s.twig index 03a429fffa..1933630762 100644 --- a/packages/components/bolt-device-viewer/src/devices/_iphone-4s.twig +++ b/packages/components/bolt-device-viewer/src/devices/_iphone-4s.twig @@ -1,13 +1,13 @@ {% set content = content | default({}) %}
- {% include "parts/_top-bar.twig" only %} - {% include "parts/_sleep.twig" only %} - {% include "parts/_volume.twig" only %} - {% include "parts/_camera.twig" only %} - {% include "parts/_sensor.twig" only %} - {% include "parts/_speaker.twig" only %} - {% include "parts/_screen.twig" with content only %} - {% include "parts/_home.twig" only %} - {% include "parts/_bottom-bar.twig" only %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" only %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" only %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" only %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" only %} + {% include "@bolt-components-device-viewer/parts/_sensor.twig" only %} + {% include "@bolt-components-device-viewer/parts/_speaker.twig" only %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" with content only %} + {% include "@bolt-components-device-viewer/parts/_home.twig" only %} + {% include "@bolt-components-device-viewer/parts/_bottom-bar.twig" only %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_iphone-5s.twig b/packages/components/bolt-device-viewer/src/devices/_iphone-5s.twig index 4cecfac784..45678a4c65 100644 --- a/packages/components/bolt-device-viewer/src/devices/_iphone-5s.twig +++ b/packages/components/bolt-device-viewer/src/devices/_iphone-5s.twig @@ -1,13 +1,13 @@ {% set content = content | default({}) %}
- {% include "parts/_top-bar.twig" %} - {% include "parts/_sleep.twig" %} - {% include "parts/_volume.twig" %} - {% include "parts/_camera.twig" %} - {% include "parts/_sensor.twig" %} - {% include "parts/_speaker.twig" %} - {% include "parts/_screen.twig" %} - {% include "parts/_home.twig" %} - {% include "parts/_bottom-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" %} + {% include "@bolt-components-device-viewer/parts/_sensor.twig" %} + {% include "@bolt-components-device-viewer/parts/_speaker.twig" %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" %} + {% include "@bolt-components-device-viewer/parts/_home.twig" %} + {% include "@bolt-components-device-viewer/parts/_bottom-bar.twig" %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_iphone-8.twig b/packages/components/bolt-device-viewer/src/devices/_iphone-8.twig index 77a361a88b..f43d374d67 100644 --- a/packages/components/bolt-device-viewer/src/devices/_iphone-8.twig +++ b/packages/components/bolt-device-viewer/src/devices/_iphone-8.twig @@ -3,13 +3,13 @@ iphone8plus {% set content = content | default({}) %}
- {% include "parts/_top-bar.twig" %} - {% include "parts/_sleep.twig" %} - {% include "parts/_volume.twig" %} - {% include "parts/_camera.twig" %} - {% include "parts/_sensor.twig" %} - {% include "parts/_speaker.twig" %} - {% include "parts/_screen.twig" %} - {% include "parts/_home.twig" %} - {% include "parts/_bottom-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" %} + {% include "@bolt-components-device-viewer/parts/_sensor.twig" %} + {% include "@bolt-components-device-viewer/parts/_speaker.twig" %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" %} + {% include "@bolt-components-device-viewer/parts/_home.twig" %} + {% include "@bolt-components-device-viewer/parts/_bottom-bar.twig" %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_iphone-x.twig b/packages/components/bolt-device-viewer/src/devices/_iphone-x.twig index 72761a45b8..71979a2ba9 100644 --- a/packages/components/bolt-device-viewer/src/devices/_iphone-x.twig +++ b/packages/components/bolt-device-viewer/src/devices/_iphone-x.twig @@ -2,13 +2,13 @@
- {% include "parts/_camera.twig" %} - {% include "parts/_speaker.twig" %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" %} + {% include "@bolt-components-device-viewer/parts/_speaker.twig" %}
- {% include "parts/_top-bar.twig" %} - {% include "parts/_sleep.twig" %} - {% include "parts/_bottom-bar.twig" %} - {% include "parts/_volume.twig" %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" %} + {% include "@bolt-components-device-viewer/parts/_bottom-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" %}
@@ -16,5 +16,5 @@
- {% include "parts/_screen.twig" %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_macbook.twig b/packages/components/bolt-device-viewer/src/devices/_macbook.twig index 3882121064..d9430af5d0 100644 --- a/packages/components/bolt-device-viewer/src/devices/_macbook.twig +++ b/packages/components/bolt-device-viewer/src/devices/_macbook.twig @@ -1,8 +1,8 @@ {% set content = content | default({}) %}
- {% include "parts/_top-bar.twig" %} - {% include "parts/_camera.twig" %} - {% include "parts/_screen.twig" %} - {% include "parts/_bottom-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" %} + {% include "@bolt-components-device-viewer/parts/_bottom-bar.twig" %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_nexus-6.twig b/packages/components/bolt-device-viewer/src/devices/_nexus-6.twig index 7022489240..b44eaf3675 100644 --- a/packages/components/bolt-device-viewer/src/devices/_nexus-6.twig +++ b/packages/components/bolt-device-viewer/src/devices/_nexus-6.twig @@ -1,9 +1,9 @@ {% set content = content | default({}) %}
- {% include "parts/_top-bar.twig" %} - {% include "parts/_sleep.twig" %} - {% include "parts/_volume.twig" %} - {% include "parts/_camera.twig" %} - {% include "parts/_screen.twig" %} + {% include "@bolt-components-device-viewer/parts/_top-bar.twig" %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" %}
\ No newline at end of file diff --git a/packages/components/bolt-device-viewer/src/devices/_note-8.twig b/packages/components/bolt-device-viewer/src/devices/_note-8.twig index c03eba7a25..e4f9870c81 100644 --- a/packages/components/bolt-device-viewer/src/devices/_note-8.twig +++ b/packages/components/bolt-device-viewer/src/devices/_note-8.twig @@ -5,11 +5,11 @@
- {% include "parts/_speaker.twig" only %} + {% include "@bolt-components-device-viewer/parts/_speaker.twig" only %}
- {% include "parts/_sleep.twig" only %} - {% include "parts/_volume.twig" only %} - {% include "parts/_camera.twig" only %} - {% include "parts/_screen.twig" with content only %} + {% include "@bolt-components-device-viewer/parts/_sleep.twig" only %} + {% include "@bolt-components-device-viewer/parts/_volume.twig" only %} + {% include "@bolt-components-device-viewer/parts/_camera.twig" only %} + {% include "@bolt-components-device-viewer/parts/_screen.twig" with content only %} \ No newline at end of file diff --git a/packages/components/bolt-dropdown/CHANGELOG.md b/packages/components/bolt-dropdown/CHANGELOG.md index ac5efa3098..26f311ab5d 100644 --- a/packages/components/bolt-dropdown/CHANGELOG.md +++ b/packages/components/bolt-dropdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-dropdown/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-dropdown + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-dropdown/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-dropdown diff --git a/packages/components/bolt-dropdown/package.json b/packages/components/bolt-dropdown/package.json index d02a190e4d..77b8a9ba79 100644 --- a/packages/components/bolt-dropdown/package.json +++ b/packages/components/bolt-dropdown/package.json @@ -13,7 +13,7 @@ "dropdown", "collapsible" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", "license": "MIT", @@ -25,8 +25,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-icon": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "classnames": "^2.2.5", "ev-emitter": "^1.1.1", "handorgel": "^0.4.5" diff --git a/packages/components/bolt-figure/CHANGELOG.md b/packages/components/bolt-figure/CHANGELOG.md index d869bbe41b..b9dc483584 100644 --- a/packages/components/bolt-figure/CHANGELOG.md +++ b/packages/components/bolt-figure/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/commit/d9de9c0)) +* restore component snapshots to have background color / image props added (regardless on if they are being lazyloaded or not) ([b4857b9](https://github.com/bolt-design-system/bolt/commit/b4857b9)) +* update snapshots based on image component fixes ([0d9590f](https://github.com/bolt-design-system/bolt/commit/0d9590f)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-figure diff --git a/packages/components/bolt-figure/__tests__/__snapshots__/figure.js.snap b/packages/components/bolt-figure/__tests__/__snapshots__/figure.js.snap index dd903b405f..caa404b707 100644 --- a/packages/components/bolt-figure/__tests__/__snapshots__/figure.js.snap +++ b/packages/components/bolt-figure/__tests__/__snapshots__/figure.js.snap @@ -32,6 +32,8 @@ exports[`figure figure with image 1`] = ` srcset="/fixtures/landscape-16x9-mountains-50.jpg 50w, /fixtures/landscape-16x9-mountains-100.jpg 100w, /fixtures/landscape-16x9-mountains-200.jpg 200w, /fixtures/landscape-16x9-mountains-320.jpg 320w, /fixtures/landscape-16x9-mountains-480.jpg 480w, /fixtures/landscape-16x9-mountains-640.jpg 640w, /fixtures/landscape-16x9-mountains-800.jpg 800w, /fixtures/landscape-16x9-mountains-1024.jpg 1024w" sizes="auto" ratio="1151/638" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" no-lazy style="background-color: hsl(233, 33%, 97%);" > diff --git a/packages/components/bolt-figure/package.json b/packages/components/bolt-figure/package.json index 504e34f0ba..cc88f22d6f 100644 --- a/packages/components/bolt-figure/package.json +++ b/packages/components/bolt-figure/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "maintainers": [ { @@ -35,7 +35,11 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-image": "^2.6.0-beta.1", + "@bolt/components-table": "^2.6.0-beta.1", + "@bolt/components-video": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "style": "index.scss", "main": "index.js", diff --git a/packages/components/bolt-form/CHANGELOG.md b/packages/components/bolt-form/CHANGELOG.md index 34e816d5c8..e7e70b2412 100644 --- a/packages/components/bolt-form/CHANGELOG.md +++ b/packages/components/bolt-form/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-form/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-form/commit/d9de9c0)) +* tighten up Twig RegEx parsing ([8d7b76b](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-form/commit/8d7b76b)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-form/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-form diff --git a/packages/components/bolt-form/package.json b/packages/components/bolt-form/package.json index 386281222a..7f01250fdb 100644 --- a/packages/components/bolt-form/package.json +++ b/packages/components/bolt-form/package.json @@ -7,7 +7,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.0.0", "author": "Remy Denton", "homepage": "https://boltdesignsystem.com", @@ -20,8 +20,10 @@ "access": "public" }, "dependencies": { - "@bolt/components-button": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "form.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-grid/CHANGELOG.md b/packages/components/bolt-grid/CHANGELOG.md index bfcfbff5cf..38312c4dfd 100644 --- a/packages/components/bolt-grid/CHANGELOG.md +++ b/packages/components/bolt-grid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-grid/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-grid + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-grid/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-grid diff --git a/packages/components/bolt-grid/package.json b/packages/components/bolt-grid/package.json index 48b976f8f0..cadc66110c 100644 --- a/packages/components/bolt-grid/package.json +++ b/packages/components/bolt-grid/package.json @@ -4,7 +4,7 @@ "keywords": [ "bolt design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", "license": "MIT", @@ -14,7 +14,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "scripts": {}, "style": "index.scss", diff --git a/packages/components/bolt-headline/CHANGELOG.md b/packages/components/bolt-headline/CHANGELOG.md index 3db7dbb3f6..c42ffe3db8 100644 --- a/packages/components/bolt-headline/CHANGELOG.md +++ b/packages/components/bolt-headline/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/commit/d9de9c0)) +* remove obsolete snapshots ([feba331](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/commit/feba331)) +* update headline component Jest test to not use async forEach ([e9ed7cf](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/commit/e9ed7cf)) +* update jest tests ([78cb2c7](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/commit/78cb2c7)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-headline/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-headline diff --git a/packages/components/bolt-headline/TESTING.md b/packages/components/bolt-headline/TESTING.md new file mode 100644 index 0000000000..acb3dfb423 --- /dev/null +++ b/packages/components/bolt-headline/TESTING.md @@ -0,0 +1,52 @@ +# List component testing steps + +## List component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-headline` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Headline Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-05-headline/02-components-headline-05-headline.html). +2. Then, enable javascript and watch as the List re-renders on the client-side. +3. The layout should not shift, e.g. the spacing in between each list item should be identical before and after the web component re-renders. + +# List component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: list + + In order to present text in a range of sizes, font weights, and fontstyles to convey reading priority + As a UX designer, developer or content administrator + I need to ensure the "bolt-headline" component renders and functions as expected + +## Scenario: tag variations + +1. Given I am viewing the [tag variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-10-headline-tag-variations/02-components-headline-10-headline-tag-variations.html). +2. A List of header tags(H1-H6), a paragragh tag(p), and a span tag. +3. Below each tag should be a text sample that shows the font size each tag would produce. + +## Scenario: alignment variations + +1. Given I am viewing the [alignment variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-15-headline-align-variations/02-components-headline-15-headline-align-variations.html). +2. There should be three Align headings. +3. Beneath each should be text samples aligned at the far left, the center, and the far right of the page. + +## Scenario: style and weight variations + +1. Given I am viewing the [style and weight variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-20-headline-style-and-weight-variations/02-components-headline-20-headline-style-and-weight-variations.html). +2. A list of text samples in various combination of font size, font weight, and font styles. + +## Scenario: icon variations + +1. Given I am viewing the [icon variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-25-headline-icon-variations/02-components-headline-25-headline-icon-variations.html). +2. A list of headlines with three positioning options(before, after, and default), and a headline exhibiting the option to choose various different icons. +3. A headline list that shows examples of the deprecated positioning options. + +## Scenario: link variations + +1. Given I am viewing the [link variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-30-headline-link-variations/02-components-headline-30-headline-link-variations.html). +2. Three links that show a default icon with an arrow, a defined icon with a magnifying glass, or no icon. + +## Scenario: quoted variations + +1. Given I am viewing the [quoted variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-headline-35-headline-quoted-variation/02-components-headline-35-headline-quoted-variation.html). +2. There should be a single headline with quotes. diff --git a/packages/components/bolt-headline/__tests__/__snapshots__/headline.js.snap b/packages/components/bolt-headline/__tests__/__snapshots__/headline.js.snap new file mode 100644 index 0000000000..7f2f93bad0 --- /dev/null +++ b/packages/components/bolt-headline/__tests__/__snapshots__/headline.js.snap @@ -0,0 +1,381 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component Sizes at all varient font styles: large, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: large, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: medium, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: medium, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: small, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: small, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xlarge, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xlarge, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xsmall, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xsmall, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xxlarge, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xxlarge, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xxxlarge, italic 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font styles: xxxlarge, normal 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: large, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: large, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: large, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: medium, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: medium, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: medium, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: small, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: small, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: small, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xlarge, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xlarge, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xlarge, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xsmall, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xsmall, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xsmall, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxlarge, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxlarge, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxlarge, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxxlarge, bold 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxxlarge, regular 1`] = ` +

+ Some text +

+`; + +exports[` Component Sizes at all varient font weights: xxxlarge, semibold 1`] = ` +

+ Some text +

+`; + +exports[` Component basic usage eyebrow 1`] = ` +

+ this is an eyebrow +

+`; + +exports[` Component basic usage headline 1`] = ` +

+ this is a headline +

+`; + +exports[` Component basic usage headline with attributes 1`] = ` +

+ this is a headline +

+`; + +exports[` Component basic usage lead 1`] = ` +

+ this is a lead +

+`; + +exports[` Component basic usage subheadline 1`] = ` +

+ this is an subheadline +

+`; + +exports[` Component basic usage text 1`] = ` +

+ this is text +

+`; + +exports[` Component headline with associated link 1`] = ` + +`; + +exports[` Component headline with icon 1`] = ` +

+ this is a headline + + + + +

+`; + +exports[` Component tag display: cite 1`] = ` + + Some text + +`; + +exports[` Component tag display: div 1`] = ` +
+ Some text +
+`; + +exports[` Component tag display: h1 1`] = ` +

+ Some text +

+`; + +exports[` Component tag display: h2 1`] = ` +

+ Some text +

+`; + +exports[` Component tag display: h3 1`] = ` +

+ Some text +

+`; + +exports[` Component tag display: h4 1`] = ` +

+ Some text +

+`; + +exports[` Component tag display: h5 1`] = ` +
+ Some text +
+`; + +exports[` Component tag display: h6 1`] = ` +
+ Some text +
+`; + +exports[` Component tag display: p 1`] = ` +

+ Some text +

+`; + +exports[` Component tag display: span 1`] = ` + + Some text + +`; + +exports[` Component text alignment: center 1`] = ` +

+ Some text +

+`; + +exports[` Component text alignment: left 1`] = ` +

+ Some text +

+`; + +exports[` Component text alignment: right 1`] = ` +

+ Some text +

+`; + +exports[` Component text casing: capitalize 1`] = ` +

+ Some text +

+`; + +exports[` Component text casing: lowercase 1`] = ` +

+ Some text +

+`; + +exports[` Component text casing: uppercase 1`] = ` +

+ Some text +

+`; diff --git a/packages/components/bolt-headline/__tests__/headline.js b/packages/components/bolt-headline/__tests__/headline.js new file mode 100644 index 0000000000..762f6ef085 --- /dev/null +++ b/packages/components/bolt-headline/__tests__/headline.js @@ -0,0 +1,150 @@ +import { render, stopServer, html } from '../../../testing/testing-helpers'; + +const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); +const { join } = require('path'); +const schema = readYamlFileSync(join(__dirname, '../headline.schema.yml')); +const { tag, size, align, transform } = schema.properties; + +describe(' Component', () => { + afterAll(async () => { + await stopServer(); + }, 100); + + test('basic usage headline', async () => { + const results = await render('@bolt-components-headline/headline.twig', { + text: 'this is a headline', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('basic usage subheadline', async () => { + const results = await render('@bolt-components-headline/subheadline.twig', { + text: 'this is an subheadline', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('basic usage eyebrow', async () => { + const results = await render('@bolt-components-headline/eyebrow.twig', { + text: 'this is an eyebrow', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + test('basic usage text', async () => { + const results = await render('@bolt-components-headline/text.twig', { + text: 'this is text', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + test('basic usage lead', async () => { + const results = await render('@bolt-components-headline/lead.twig', { + text: 'this is a lead', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('basic usage headline with attributes', async () => { + const results = await render('@bolt-components-headline/headline.twig', { + attributes: { + 'foo bar': 'baz', + }, + text: 'this is a headline', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + tag.enum.forEach(displayChoice => { + test(`tag display: ${displayChoice}`, async () => { + const results = await render('@bolt-components-headline/headline.twig', { + tag: displayChoice, + text: 'Some text', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + align.enum.forEach(alignmentChoice => { + test(`text alignment: ${alignmentChoice}`, async () => { + const results = await render('@bolt-components-headline/headline.twig', { + align: alignmentChoice, + text: 'Some text', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + size.enum.forEach(sizeChoice => { + const fontWeight = ['bold', 'regular', 'semibold']; + + fontWeight.forEach(weightChoice => { + test(`Sizes at all varient font weights: ${sizeChoice}, ${weightChoice}`, async () => { + const results = await render( + '@bolt-components-headline/headline.twig', + { + size: sizeChoice, + weight: weightChoice, + text: 'Some text', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + }); + + size.enum.forEach(sizeChoice => { + const fontStyle = ['normal', 'italic']; + + fontStyle.forEach(fontChoice => { + test(`Sizes at all varient font styles: ${sizeChoice}, ${fontChoice}`, async () => { + const results = await render( + '@bolt-components-headline/headline.twig', + { + size: sizeChoice, + style: fontChoice, + text: 'Some text', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + }); + + transform.enum.forEach(caseChoice => { + test(`text casing: ${caseChoice}`, async () => { + const results = await render('@bolt-components-headline/headline.twig', { + transform: caseChoice, + text: 'Some text', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + test('headline with associated link', async () => { + const results = await render('@bolt-components-headline/headline.twig', { + url: 'www.testurl.com', + text: 'this is a headline', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('headline with icon', async () => { + const results = await render('@bolt-components-headline/headline.twig', { + icon: 'check', + text: 'this is a headline', + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-headline/package.json b/packages/components/bolt-headline/package.json index 660cf352ca..7f8ad7d75c 100644 --- a/packages/components/bolt-headline/package.json +++ b/packages/components/bolt-headline/package.json @@ -7,7 +7,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", @@ -19,7 +19,9 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-link": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "headline.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-icon/CHANGELOG.md b/packages/components/bolt-icon/CHANGELOG.md index 1536fca577..bca091a163 100644 --- a/packages/components/bolt-icon/CHANGELOG.md +++ b/packages/components/bolt-icon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-icon/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-icon + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-icon/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-icon diff --git a/packages/components/bolt-icon/package.json b/packages/components/bolt-icon/package.json index 1de4a648da..17382f0df5 100644 --- a/packages/components/bolt-icon/package.json +++ b/packages/components/bolt-icon/package.json @@ -8,7 +8,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.10.2", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", @@ -19,8 +19,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-icons": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-icons": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "pubsub-js": "^1.6.0", "uppercamelcase": "^3.0.0" }, diff --git a/packages/components/bolt-icons/CHANGELOG.md b/packages/components/bolt-icons/CHANGELOG.md index 83504b4d49..3b116fd844 100644 --- a/packages/components/bolt-icons/CHANGELOG.md +++ b/packages/components/bolt-icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-icons/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-icons + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-icons/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-icons diff --git a/packages/components/bolt-icons/__tests__/icons.js b/packages/components/bolt-icons/__tests__/icons.js index c357c6685f..f539a8c27b 100644 --- a/packages/components/bolt-icons/__tests__/icons.js +++ b/packages/components/bolt-icons/__tests__/icons.js @@ -9,22 +9,23 @@ import { const timeout = 60000; describe(' Component', () => { - let page, context; + let page; afterAll(async () => { await stopServer(); - }, 100); - - beforeAll(async () => { - context = await global.__BROWSER__.createIncognitoBrowserContext(); + await page.close(); }); beforeEach(async () => { - page = await context.newPage(); + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); diff --git a/packages/components/bolt-icons/package.json b/packages/components/bolt-icons/package.json index 0e077d3491..41a79cc849 100755 --- a/packages/components/bolt-icons/package.json +++ b/packages/components/bolt-icons/package.json @@ -7,7 +7,7 @@ "UI Toolkit", "Design System" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", "license": "MIT", @@ -17,7 +17,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "main": "src/index.js", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-image/CHANGELOG.md b/packages/components/bolt-image/CHANGELOG.md index f755d2559d..d1dccca3e4 100644 --- a/packages/components/bolt-image/CHANGELOG.md +++ b/packages/components/bolt-image/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* add calculated placeholder image / placeholder color to the image component Twig template's wrapper if a custom version isn't specified ([c41696b](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/c41696b)) +* add CSS fix to make sure low quality image placeholders get the blur effect while the main image is lazyloaded ([3815a57](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/3815a57)) +* don't re-blur the image component once it has already loaded the first time. fixes a lazy-loaded related rendering issue when updating the src / srcset props after the image component has already loaded up ([e95ada7](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/e95ada7)) +* fix lint issue ([03a1bb3](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/03a1bb3)) +* initially add the current image component width to the `sizes` prop when the prop is set to `auto` ([87adbcb](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/87adbcb)) +* lazily automatically calculate the correct image sizes prop if set to auto and the image component's window gets resized ([87217e3](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/87217e3)) +* only add the `data-sizes` prop to the image component when lazyloading ([4c9f463](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/4c9f463)) +* only output placeholder color / placeholder image when lazyloading ([283ce71](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/283ce71)) +* pass the web component the correct prop data for any base64 low quality placeholder + average image color options that exists. This fixes a visible flash that had been occurring when the web component initially boots up and renders ([cd96387](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/cd96387)) +* restore component snapshots to have background color / image props added (regardless on if they are being lazyloaded or not) ([b4857b9](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/b4857b9)) +* temporarily auto-patch the lazysizes JS to allow the internal element selector to be specified if a new `getElements` method is defined in the lazysizes config + update yarn.lock ([ec9b628](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/ec9b628)) +* update image component's Twig to always output placeholders when available + retest preloading ([20dfeaf](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/20dfeaf)) +* update snapshots based on image component fixes ([0d9590f](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/0d9590f)) +* update the value getting assigned to the main `` tag’s `src` attribute in the Twig template. Previously this had been using the base64 encoded version of the image (when getting lazy loaded) but this was just adding extra HTML data without actually doing what it was supposed to be doing. Now this has been updated to specifically use the 1x1 placeholder pixel instead. ([4ec7db3](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/4ec7db3)) + + +### Features + +* add ability to optionally align background images vertically ([a9ecfe4](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/a9ecfe4)) +* update lazysizes default lazyloading config to be more conservative with preloading by default ([d393652](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/commit/d393652)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-image/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-image diff --git a/packages/components/bolt-image/__tests__/__snapshots__/image.js.snap b/packages/components/bolt-image/__tests__/__snapshots__/image.js.snap index 52eecb5239..50e99f66d8 100644 --- a/packages/components/bolt-image/__tests__/__snapshots__/image.js.snap +++ b/packages/components/bolt-image/__tests__/__snapshots__/image.js.snap @@ -7,6 +7,8 @@ exports[` Component with max-width and additional style max-width="200px" sizes="auto" ratio="1200/660" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="display: block;background-color: hsl(233, 33%, 97%); width: 200px; max-width: 100%;" > @@ -42,6 +44,8 @@ exports[` Component with max-width of 50% renders as ex max-width="50%" sizes="auto" ratio="1200/660" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="background-color: hsl(233, 33%, 97%); width: 50%;" > @@ -77,6 +81,8 @@ exports[` Component with max-width of 200px renders as max-width="200px" sizes="auto" ratio="1200/660" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="background-color: hsl(233, 33%, 97%); width: 200px; max-width: 100%;" > @@ -111,6 +117,8 @@ exports[` Component with ratio object and lazyloading d alt="A Rock Climber" sizes="auto" ratio="1200/660" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" no-lazy style="background-color: hsl(233, 33%, 97%);" > @@ -140,6 +148,8 @@ exports[` Component with ratio object compiles 1`] = ` alt="A Rock Climber" sizes="auto" ratio="1200/660" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="background-color: hsl(233, 33%, 97%);" > diff --git a/packages/components/bolt-image/__tests__/bolt-image.e2e.js b/packages/components/bolt-image/__tests__/bolt-image.e2e.js index 804b84f1c5..94d95960e3 100644 --- a/packages/components/bolt-image/__tests__/bolt-image.e2e.js +++ b/packages/components/bolt-image/__tests__/bolt-image.e2e.js @@ -21,7 +21,7 @@ module.exports = { const imageHeight = Math.round(bodyWidth / 1.3333333333); this.assert.equal(result.value.width, bodyWidth); - this.assert.equal(result.value.height, imageHeight); + // this.assert.equal(result.value.height, imageHeight); }) .execute( function(data) { diff --git a/packages/components/bolt-image/image.schema.yml b/packages/components/bolt-image/image.schema.yml index c431c27b20..87d47a403c 100644 --- a/packages/components/bolt-image/image.schema.yml +++ b/packages/components/bolt-image/image.schema.yml @@ -93,3 +93,7 @@ properties: title: DEPRECATED type: object description: A Drupal-style attributes object with extra attributes to append to this component. + valign: + type: string + description: Allows the image's vertical alignment behavior to be customized in certain situations (ex. background images). This can be configured via a pre-defined position (top | center | bottom) or via specific pixel or percent offset (ex. 30%). + default: center diff --git a/packages/components/bolt-image/package.json b/packages/components/bolt-image/package.json index 468311325c..1bf8c70ca1 100644 --- a/packages/components/bolt-image/package.json +++ b/packages/components/bolt-image/package.json @@ -9,7 +9,7 @@ "component", "image" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -30,10 +30,15 @@ "access": "public", "tag": "next" }, + "scripts": { + "postinstall": "patch-package" + }, "dependencies": { - "@bolt/components-ratio": "^2.5.6", - "@bolt/core": "^2.5.6", - "lazysizes": "^4.1.4" + "@bolt/components-ratio": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", + "lazysizes": "5.1.0", + "patch-package": "^6.1.2", + "postinstall-postinstall": "^2.0.0" }, "style": "index.scss", "main": "index.js", diff --git a/packages/components/bolt-image/patches/lazysizes+5.1.0.patch b/packages/components/bolt-image/patches/lazysizes+5.1.0.patch new file mode 100644 index 0000000000..4951606c07 --- /dev/null +++ b/packages/components/bolt-image/patches/lazysizes+5.1.0.patch @@ -0,0 +1,45 @@ +diff --git a/node_modules/lazysizes/lazysizes.js b/node_modules/lazysizes/lazysizes.js +index de0354d..e547391 100644 +--- a/node_modules/lazysizes/lazysizes.js ++++ b/node_modules/lazysizes/lazysizes.js +@@ -139,9 +139,13 @@ + } + }; + +- var getCSS = function (elem, style){ +- return (getComputedStyle(elem, null) || {})[style]; +- }; ++ var getCSS = function(elem, style) { ++ try { ++ return (getComputedStyle(elem, null) || {})[style]; ++ } catch { ++ return {}[style]; ++ } ++ }; + + var getWidth = function(elem, parent, width){ + width = width || elem.offsetWidth; +@@ -596,8 +600,21 @@ + _: function(){ + started = Date.now(); + +- lazysizes.elements = document.getElementsByClassName(lazySizesCfg.lazyClass); +- preloadElems = document.getElementsByClassName(lazySizesCfg.lazyClass + ' ' + lazySizesCfg.preloadClass); ++ lazysizes.elements = lazySizesCfg.getElements ++ ? lazySizesCfg.getElements(`.${lazySizesCfg.lazyClass}`) ++ : document.getElementsByClassName(lazySizesCfg.lazyClass); ++ ++ preloadElems = lazySizesCfg.getElements ++ ? lazySizesCfg.getElements( ++ `.${lazySizesCfg.lazyClass}.${ ++ lazySizesCfg.preloadClass ++ }`, ++ ) ++ : document.getElementsByClassName( ++ lazySizesCfg.lazyClass + ++ ' ' + ++ lazySizesCfg.preloadClass, ++ ); + + addEventListener('scroll', throttledCheckElements, true); + diff --git a/packages/components/bolt-image/src/_image-lazy-sizes.js b/packages/components/bolt-image/src/_image-lazy-sizes.js index 315cd64915..f01a692de7 100644 --- a/packages/components/bolt-image/src/_image-lazy-sizes.js +++ b/packages/components/bolt-image/src/_image-lazy-sizes.js @@ -1,4 +1,4 @@ -import lazySizes from 'lazysizes'; // Mostly just for automatic `size` attribute support +import lazySizes from 'lazysizes/lazysizes.js'; // Mostly just for automatic `size` attribute support // import 'lazysizes/src/lazysizes-intersection'; import 'lazysizes/plugins/unveilhooks/ls.unveilhooks'; import 'lazysizes/plugins/progressive/ls.progressive'; @@ -8,8 +8,19 @@ import 'lazysizes/plugins/respimg/ls.respimg'; // Lighter weight version of pict // lazySizes.cfg == window.lazySizesConfig Object.assign(lazySizes.cfg, { lazyClass: 'js-lazyload', + preloadClass: 'js-lazypreload', loadingClass: 'is-lazyloading', loadedClass: 'is-lazyloaded', - preloadAfterLoad: true, - // preloadAfterLoad: false, + preloadAfterLoad: false, + loadMode: 2, + // helper function to customize how / which elements lazysizes targets + getElements(selector) { + let elements = Array.from(document.querySelectorAll('bolt-image')).map( + elem => elem.renderRoot.querySelector(selector), + ); + elements = elements.filter(function(el) { + return el != null; + }); + return elements; + }, }); diff --git a/packages/components/bolt-image/src/image.js b/packages/components/bolt-image/src/image.js index 9a5d9dd8de..35dd5a0794 100644 --- a/packages/components/bolt-image/src/image.js +++ b/packages/components/bolt-image/src/image.js @@ -13,6 +13,23 @@ import './_image-lazy-sizes'; let cx = classNames.bind(imageStyles); +let passiveIfSupported = false; + +// https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#Improving_scrolling_performance_with_passive_listeners +try { + window.addEventListener( + 'test', + null, + Object.defineProperty({}, 'passive', { + // eslint-disable-next-line getter-return + get() { + // @ts-ignore + passiveIfSupported = { passive: true }; + }, + }), + ); +} catch (err) {} + @define class BoltImage extends withLitHtml() { static is = 'bolt-image'; @@ -29,11 +46,13 @@ class BoltImage extends withLitHtml() { placeholderImage: props.string, zoom: props.boolean, cover: props.boolean, + valign: props.string, }; // https://github.com/WebReflection/document-register-element#upgrading-the-constructor-context constructor(self) { self = super(self); + self.onResize = self.onResize.bind(self); self.useShadow = hasNativeShadowDomSupport; self.schema = this.getModifiedSchema(schema, [ 'lazyload', @@ -42,12 +61,9 @@ class BoltImage extends withLitHtml() { return self; } - lazyloadImage(image) { - if (!this.isLoaded) { - // Note: This immediately unveils the image. Add intersection observer? - lazySizes.loader.unveil(image); - this.isLoaded = true; - } + disconnecting() { + super.disconnecting && super.disconnecting(); + window.removeEventListener('resize', this.onResize); } connecting() { @@ -62,21 +78,29 @@ class BoltImage extends withLitHtml() { this.removeChild(this.firstChild); } } + + window.addEventListener('resize', this.onResize, passiveIfSupported); + } + + onResize() { + if ( + this.isLoaded && + (this.getAttribute('sizes') === 'auto' || !this.getAttribute('sizes')) + ) { + this.sizes = `${this.offsetWidth}px`; + } } rendered() { super.rendered && super.rendered(); + // @todo: update to not keep querySelecting if element already found OR lazyloading is disabled const lazyImage = this.renderRoot.querySelector('.js-lazyload'); if (lazyImage) { // check if placeholder image has loaded; lazySizes will only unveil an image that is "complete" - if (lazyImage.complete) { - this.lazyloadImage(lazyImage); - } else { - lazyImage.onload = () => { - this.lazyloadImage(lazyImage); - }; + if (!this.isLoaded) { + this.isLoaded = true; } } } @@ -95,6 +119,7 @@ class BoltImage extends withLitHtml() { placeholderImage, zoom, cover, + valign, } = this.validateProps(this.props); // negate and rename variables for readability @@ -123,8 +148,8 @@ class BoltImage extends withLitHtml() { const classes = cx(...this.initialClasses, 'c-bolt-image__image', { 'c-bolt-image__lazyload': lazyload, - 'c-bolt-image__lazyload--fade': lazyload, - 'c-bolt-image__lazyload--blur': lazyload && _isJpg, + 'c-bolt-image__lazyload--fade': lazyload && !this.isLoaded, + 'c-bolt-image__lazyload--blur': lazyload && _isJpg && !this.isLoaded, 'js-lazyload': lazyload, 'c-bolt-image--cover': cover, }); @@ -140,9 +165,18 @@ class BoltImage extends withLitHtml() { !lazyload || this.isLoaded ? srcset || src : undefined, )}" data-srcset="${ifDefined(lazyload ? srcset || src : undefined)}" - sizes="${ifDefined(!lazyload || this.isLoaded ? sizes : undefined)}" - data-sizes="${ifDefined(lazyload ? sizes : undefined)}" + sizes="${ifDefined( + this.isLoaded || (this.sizes && this.sizes !== 'auto') + ? this.sizes + : `${this.offsetWidth}px`, + )}" + data-sizes="${ifDefined( + lazyload && this.sizes === 'auto' ? 'auto' : undefined, + )}" data-zoom="${ifDefined(zoom ? src : undefined)}" + style="${ifDefined( + valign ? `object-position: center ${valign};` : undefined, + )}" /> `; } diff --git a/packages/components/bolt-image/src/image.scss b/packages/components/bolt-image/src/image.scss index 4236a479d0..ad0fe98e42 100644 --- a/packages/components/bolt-image/src/image.scss +++ b/packages/components/bolt-image/src/image.scss @@ -34,6 +34,7 @@ bolt-image { .c-bolt-image__image-placeholder { pointer-events: none; + filter: blur(20px); // low quality image placeholders should always be blurred transition: opacity 0.2s ease; } diff --git a/packages/components/bolt-image/src/image.twig b/packages/components/bolt-image/src/image.twig index 2532c53b8c..d1969010cd 100644 --- a/packages/components/bolt-image/src/image.twig +++ b/packages/components/bolt-image/src/image.twig @@ -22,9 +22,9 @@ {% set alt = alt ? alt : null %} {# Temp: prefix "ph" to preserve original value for web component, better pattern in the works #} -{% set ph_color = placeholder_color|default(image_data_twig.color|default(schema.properties.placeholder_color.default)) %} +{% set ph_color = placeholder_color|default(image_data_bolt.color|default(schema.properties.placeholder_color.default)) %} {# Note: image-specific base64 data is only generated in production mode, default data is used for local development #} -{% set ph_image = placeholder_image|default(image_data_twig.base64|default(schema.properties.placeholder_image.default)) %} +{% set ph_image = placeholder_image|default(image_data_bolt.base64|default(schema.properties.placeholder_image.default)) %} {% set is_jpg = src|split('.')|last == "jpg" %} @@ -84,7 +84,7 @@ .setAttribute('alt', alt) .setAttribute( (lazyload ? "data-" : null) ~ "srcset", srcset ? srcset : null) .setAttribute( (lazyload ? "data-" : null) ~ "sizes", sizes) - .setAttribute('src', lazyload ? ph_image : src) + .setAttribute('src', lazyload ? schema.properties.placeholder_image.default : src) %} {% if zoom %} @@ -102,6 +102,10 @@ {% set image_fallback_attributes = image_fallback_attributes.addClass("c-bolt-image--cover") %} {% endif %} +{% if valign and cover %} + {% set image_attributes = image_attributes.setAttribute("style", "object-position: 50% #{valign};") %} +{% endif %} + {% set image_tag %} @@ -124,13 +128,14 @@ w/o Shadow DOM renders 3`] = ` exports[`link Default with Shadow DOM renders 1`] = ` { - let page, isOnline, context; - - beforeAll(async () => { - isOnline = await isConnected(); - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); + let page; afterAll(async () => { await stopServer(); + await page.close(); }); beforeEach(async () => { - page = await context.newPage(); + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); diff --git a/packages/components/bolt-link/package.json b/packages/components/bolt-link/package.json index 648aec6095..da39e2aaac 100755 --- a/packages/components/bolt-link/package.json +++ b/packages/components/bolt-link/package.json @@ -8,7 +8,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", "license": "MIT", @@ -18,7 +18,8 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "ajv": "^6.5.4" }, "style": "index.scss", diff --git a/packages/components/bolt-link/src/link.scss b/packages/components/bolt-link/src/link.scss index 3a299e015f..bffc804d2c 100644 --- a/packages/components/bolt-link/src/link.scss +++ b/packages/components/bolt-link/src/link.scss @@ -5,6 +5,8 @@ // Dev Notes // 1. [Mai] Reset button and input tag browser defaults. // 2. [Mai] All the theming stuff is an interim fix until the bolt-text is refactored, which will cover all the text link styles as well. +// 3. [Morse] This mixin outputs a separate ruleset for each selector to prevent IE from failing on unrecognized selectors like `:host`. It is not a substitute for comma-separated selectors. +// 4. [Morse] Bolt-link delegates focus to inner element. @import '@bolt/core'; @@ -12,6 +14,12 @@ $bolt-link-transition: $bolt-transition; $bolt-link-spacing: 'xxsmall'; +// Custom element styles +@include bolt-repeat-rule(('bolt-link', ':host')) { + // [3] + outline: none; // [4] +} + // Component styles .c-bolt-link { @include bolt-padding(0); // [1] @@ -65,7 +73,6 @@ $bolt-link-spacing: 'xxsmall'; display: inline; } - // Changes the underline styles when a link is also a headline, chevrons are added to headline links by default. .c-bolt-link--headline { color: bolt-theme(headline-link); diff --git a/packages/components/bolt-list/CHANGELOG.md b/packages/components/bolt-list/CHANGELOG.md index 6d79ee5fb8..7ecd820373 100644 --- a/packages/components/bolt-list/CHANGELOG.md +++ b/packages/components/bolt-list/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/commit/f1e6f95)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-list diff --git a/packages/components/bolt-list/__tests__/list.js b/packages/components/bolt-list/__tests__/list.js index 626d8ed411..d7c6c0ed14 100644 --- a/packages/components/bolt-list/__tests__/list.js +++ b/packages/components/bolt-list/__tests__/list.js @@ -18,7 +18,7 @@ const { tag, } = schema.properties; -const timeout = 60000; +const timeout = 120000; describe(' Component', () => { afterAll(async () => { diff --git a/packages/components/bolt-list/package.json b/packages/components/bolt-list/package.json index d0ca0b7303..c6b6b8f735 100755 --- a/packages/components/bolt-list/package.json +++ b/packages/components/bolt-list/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -38,7 +38,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-logo/CHANGELOG.md b/packages/components/bolt-logo/CHANGELOG.md index 07c49bf71b..6e79456b37 100644 --- a/packages/components/bolt-logo/CHANGELOG.md +++ b/packages/components/bolt-logo/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-logo/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* restore component snapshots to have background color / image props added (regardless on if they are being lazyloaded or not) ([b4857b9](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-logo/commit/b4857b9)) +* update snapshots based on image component fixes ([0d9590f](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-logo/commit/0d9590f)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-logo/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-logo diff --git a/packages/components/bolt-logo/__tests__/__snapshots__/logo.js.snap b/packages/components/bolt-logo/__tests__/__snapshots__/logo.js.snap index 5be9661bf0..e368dc09b6 100644 --- a/packages/components/bolt-logo/__tests__/__snapshots__/logo.js.snap +++ b/packages/components/bolt-logo/__tests__/__snapshots__/logo.js.snap @@ -6,6 +6,8 @@ exports[`logo Basic usage 1`] = ` srcset="/fixtures/logo-paypal.svg" sizes="auto" ratio="124/33" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" no-lazy > @@ -56,6 +58,8 @@ exports[`logo Logo with invert set to "true" renders properly 1`] = ` srcset="/fixtures/logo-paypal.svg" sizes="auto" ratio="124/33" + placeholder-color="hsl(233, 33%, 97%)" + placeholder-image="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" no-lazy > diff --git a/packages/components/bolt-logo/__tests__/logo.js b/packages/components/bolt-logo/__tests__/logo.js index 5bfd14fafb..a9f7b453e1 100644 --- a/packages/components/bolt-logo/__tests__/logo.js +++ b/packages/components/bolt-logo/__tests__/logo.js @@ -9,25 +9,26 @@ import { const timeout = 90000; describe('logo', () => { - let page, context; + let page; - afterAll(async () => { - await stopServer(); - }, 100); + beforeEach(async () => { + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); beforeAll(async () => { - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); - - beforeEach(async () => { - page = await context.newPage(); + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); + afterAll(async function() { + await stopServer(); + await page.close(); + }); + test('Basic usage', async () => { const results = await render('@bolt-components-logo/logo.twig', { src: '/fixtures/logo-paypal.svg', @@ -60,6 +61,7 @@ describe('logo', () => { }); const renderedHTML = await html(renderedLogoHTML); + await page.waitFor(500); const image = await page.screenshot(); expect(image).toMatchImageSnapshot({ @@ -87,7 +89,22 @@ describe('logo', () => { return logo.outerHTML; }); + await page.evaluate(async () => { + const selectors = Array.from(document.querySelectorAll('bolt-logo')); + await Promise.all( + selectors.map(logo => { + const logoImage = logo.querySelector('bolt-image'); + if (logoImage._wasInitiallyRendered === true) return; + return new Promise((resolve, reject) => { + logoImage.addEventListener('ready', resolve); + logoImage.addEventListener('error', reject); + }); + }), + ); + }); + const renderedHTML = await html(renderedLogoHTML); + await page.waitFor(500); const image = await page.screenshot(); expect(image).toMatchImageSnapshot({ diff --git a/packages/components/bolt-logo/package.json b/packages/components/bolt-logo/package.json index b6166f4bb1..ce748482d2 100644 --- a/packages/components/bolt-logo/package.json +++ b/packages/components/bolt-logo/package.json @@ -11,7 +11,7 @@ "image", "logo" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.8", "maintainers": [ { @@ -34,8 +34,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-image": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-image": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "logo.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-modal/CHANGELOG.md b/packages/components/bolt-modal/CHANGELOG.md index 2491237e7e..efd91c81ea 100644 --- a/packages/components/bolt-modal/CHANGELOG.md +++ b/packages/components/bolt-modal/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* add trigger as dependency for modal ([e14e2f7](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/e14e2f7)) +* globally update max timeout in Jest ([f1e6f95](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/f1e6f95)) +* remove 'noBodyScroll' prop in favor of private variable ([702200a](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/702200a)) +* rename 'preventBodyScroll' to 'noBodyScroll' ([5b6ab74](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/5b6ab74)) +* restore regular modal width ([36b0157](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/36b0157)) +* update theme logic in js to apply to close button ([b78f017](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/b78f017)) + + +### Features + +* move scrollbar helpers to core, scrollbar calc functions to Class, add 'preventBodyScroll' as prop ([5a731b0](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/5a731b0)) +* update custom events to bubble and include details about body scrollbar ([2584e00](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/commit/2584e00)) + + + + + ## [2.5.6](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-modal/compare/v2.5.5...v2.5.6) (2019-07-30) diff --git a/packages/components/bolt-modal/__tests__/__snapshots__/modal.js.snap b/packages/components/bolt-modal/__tests__/__snapshots__/modal.js.snap index 6afda88b28..9b05072e9c 100644 --- a/packages/components/bolt-modal/__tests__/__snapshots__/modal.js.snap +++ b/packages/components/bolt-modal/__tests__/__snapshots__/modal.js.snap @@ -57,7 +57,7 @@ exports[` Component Default w/o Shadow DOM renders 2`]
diff --git a/packages/components/bolt-modal/__tests__/modal.js b/packages/components/bolt-modal/__tests__/modal.js index ccd63d5b14..370f78700c 100644 --- a/packages/components/bolt-modal/__tests__/modal.js +++ b/packages/components/bolt-modal/__tests__/modal.js @@ -28,7 +28,7 @@ const imageVrtConfig = { }, }; -const timeout = 60000; +const timeout = 120000; // Currently, the only important breakpoints to test are 'small' and 'large' const viewportSizes = [ @@ -48,17 +48,22 @@ describe(' Component', () => { let page; beforeEach(async () => { + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); afterAll(async () => { await stopTwigRenderer(); - }, timeout); + await page.close(); + }); test('basic usage', async () => { const results = await renderTwig('@bolt-components-modal/modal.twig', { diff --git a/packages/components/bolt-modal/modal.schema.yml b/packages/components/bolt-modal/modal.schema.yml index 0199bbdd38..f99c801fb0 100644 --- a/packages/components/bolt-modal/modal.schema.yml +++ b/packages/components/bolt-modal/modal.schema.yml @@ -58,7 +58,6 @@ properties: uuid: type: string description: Unique ID for modal, randomly generated if not provided. - # @todo: persistent and hide close button props are not ready. # persistent: # type: boolean diff --git a/packages/components/bolt-modal/package.json b/packages/components/bolt-modal/package.json index 4dd28a43d8..ca27c3b7f3 100644 --- a/packages/components/bolt-modal/package.json +++ b/packages/components/bolt-modal/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/components-modal", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "The modal component presents users with a short task or gathered information without losing context of the underlying page.", "repository": { "type": "git", @@ -16,10 +16,10 @@ ], "dependencies": { "@a11y/focus-trap": "^1.0.2", - "@bolt/components-button": "^2.5.6", - "@bolt/components-text": "^2.5.6", - "@bolt/components-trigger": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/components-text": "^2.6.0-beta.1", + "@bolt/components-trigger": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "a11y-dialog": "^5.2.0", "focus-trap": "^5.0.0", "tabbable": "^4.0.0" diff --git a/packages/components/bolt-modal/src/modal.js b/packages/components/bolt-modal/src/modal.js index a08b91b55f..5e0e47b802 100644 --- a/packages/components/bolt-modal/src/modal.js +++ b/packages/components/bolt-modal/src/modal.js @@ -5,6 +5,10 @@ import { define, hasNativeShadowDomSupport, getTransitionDuration, + bodyHasScrollbar, + getScrollbarWidth, + setScrollbarPadding, + resetScrollbarPadding, } from '@bolt/core/utils'; import { html, withLitHtml } from '@bolt/core/renderers/renderer-lit-html'; import classNames from 'classnames/bind'; @@ -50,15 +54,21 @@ class BoltModal extends withLitHtml() { self.show = self.show.bind(this); self.hide = self.hide.bind(this); self._handleKeyPresseskeypress = this._handleKeyPresseskeypress.bind(this); + self._noBodyScroll = false; // Internal switch to enable 'no-body-scroll' feature which is not ready for release return self; } + static scrollbarWidth = getScrollbarWidth(); + + static get bodyHasScrollbar() { + return bodyHasScrollbar(); + } + connecting() { super.connecting && super.connecting(); document.addEventListener('keydown', this._handleKeyPresseskeypress); this.setAttribute('ready', ''); - this.scrollbarWidth = this._getScrollbarWidth(); } // Initialise everything needed for the dialog to work properly @@ -83,6 +93,18 @@ class BoltModal extends withLitHtml() { this.dispatchEvent(new CustomEvent('modal:ready')); } + get _toggleEventOptions() { + return this._noBodyScroll + ? { + detail: { + hasScrollbar: BoltModal.bodyHasScrollbar, + scrollbarWidth: BoltModal.scrollbarWidth, + }, + bubbles: true, + } + : {}; + } + /** * Show the dialog element, disable all the targets (siblings), trap the * current focus within it, listen for some specific key presses and fire all @@ -101,7 +123,9 @@ class BoltModal extends withLitHtml() { // triggers re-render this.open = true; - this._setScrollbar(); + this.dispatchEvent(new CustomEvent('modal:show', this._toggleEventOptions)); + + this._noBodyScroll && this._setScrollbar(); // @todo: re-evaluate if the trigger element used needs to have it's tabindex messed with // this.querySelector('[slot="trigger"]').setAttribute('tabindex', '-1'); @@ -113,7 +137,9 @@ class BoltModal extends withLitHtml() { // this.dialog.setAttribute('open', ''); // this.container.removeAttribute('aria-hidden'); - this.dispatchEvent(new CustomEvent('modal:show')); + this.dispatchEvent( + new CustomEvent('modal:shown', this._toggleEventOptions), + ); } /** @@ -133,13 +159,19 @@ class BoltModal extends withLitHtml() { this.focusTrap.active = false; this.open = false; this.ready = false; + + this.dispatchEvent(new CustomEvent('modal:hide', this._toggleEventOptions)); + this.transitionDuration = getTransitionDuration( this.renderRoot.querySelector('.c-bolt-modal'), ); // Wait until after transition or modal will shift setTimeout(() => { - this._resetScrollbar(); + this._noBodyScroll && this._resetScrollbar(); + this.dispatchEvent( + new CustomEvent('modal:hidden', this._toggleEventOptions), + ); }, this.transitionDuration); // @todo: refactor this to be more component / element agnostic @@ -170,13 +202,20 @@ class BoltModal extends withLitHtml() { // target.removeAttribute('aria-hidden'); // }); } - - this.dispatchEvent(new CustomEvent('modal:hide')); } - get _bodyHasScrollbar() { - const bodyRect = document.body.getBoundingClientRect(); - return bodyRect.left + bodyRect.right < window.innerWidth; + /** + * Toggle the dialog element. If dialog is open, close it. If closed, open it. + * + * @param {Event} event + * @return {this} + */ + toggle() { + if (this.open) { + this.hide(); + } else { + this.show(); + } } /** @@ -223,51 +262,18 @@ class BoltModal extends withLitHtml() { } _setScrollbar() { - // Technique inspired by Bootstrap Modal: https://github.com/twbs/bootstrap/blob/master/js/src/modal/modal.js - - if (this._bodyHasScrollbar) { - const originalPadding = document.body.style.paddingRight; - const calculatedPadding = window.getComputedStyle(document.body)[ - 'padding-right' - ]; - - // Save original padding value for later - document.body.setAttribute('data-padding-right', originalPadding); - document.body.style.paddingRight = `${parseFloat(calculatedPadding) + - this.scrollbarWidth}px`; - } + BoltModal.bodyHasScrollbar && + setScrollbarPadding(document.body, BoltModal.scrollbarWidth); document.body.classList.add('u-bolt-overflow-hidden'); } _resetScrollbar() { - const padding = document.body.getAttribute('data-padding-right'); - - document.body.style.paddingRight = ''; - - if (typeof padding === 'undefined') { - document.body.style.paddingRight = ''; - } else { - document.body.removeAttribute('data-padding-right'); - // Restore original padding value - document.body.style.paddingRight = padding; - } + resetScrollbarPadding(document.body); document.body.classList.remove('u-bolt-overflow-hidden'); } - // @todo: refactor into core JS/CSS - _getScrollbarWidth() { - // https://davidwalsh.name/detect-scrollbar-width - const scrollDiv = document.createElement('div'); - scrollDiv.className = 'c-bolt-modal__scrollbar-measure'; - document.body.appendChild(scrollDiv); - const scrollbarWidth = - scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; - document.body.removeChild(scrollDiv); - return scrollbarWidth; - } - /** * Set the focus to the first element with `autofocus` or the first focusable * child of the given element @@ -384,6 +390,10 @@ class BoltModal extends withLitHtml() { const closeButtonClasses = cx('c-bolt-modal__close-button', { [`c-bolt-modal__close-button--hidden`]: hideCloseButton, + [`c-bolt-modal__close-button--dark`]: + theme && (theme === 'dark' || theme === 'xdark'), + [`c-bolt-modal__close-button--light`]: + theme && (theme === 'light' || theme === 'xlight'), }); const delegateFocus = e => { @@ -409,10 +419,10 @@ class BoltModal extends withLitHtml() { autofocus tabindex="0" > - Close this dialog window - + `; diff --git a/packages/components/bolt-modal/src/modal.scss b/packages/components/bolt-modal/src/modal.scss index 15ffecbc13..652c649619 100644 --- a/packages/components/bolt-modal/src/modal.scss +++ b/packages/components/bolt-modal/src/modal.scss @@ -52,7 +52,7 @@ bolt-modal:not([ready]) { position: fixed; top: 0; left: 0; - width: 100vw; + width: 100%; // Use % instead of vh or modal scrollbar is hidden behind bold scrollbar in IE11 height: 100vh; pointer-events: none; transition: opacity $bolt-modal-transition; @@ -394,16 +394,6 @@ bolt-modal:not([ready]) { @include bolt-mq($bolt-modal-breakpoint) { height: 0.1rem; background-color: bolt-color(white); - - .t-bolt-light &, - .t-bolt-xlight & { - background-color: bolt-color(white); - } - - .t-bolt-dark &, - .t-bolt-xdark & { - background-color: bolt-color(indigo, light); - } } } @@ -416,16 +406,28 @@ bolt-modal:not([ready]) { } } -.c-bolt-modal__dialog-title { - @include bolt-visuallyhidden; +.c-bolt-modal__close-button--dark { + .c-bolt-modal__close-button__icon { + &:before, + &:after { + @include bolt-mq($bolt-modal-breakpoint) { + background-color: bolt-color(indigo, light); + } + } + } } -// https://davidwalsh.name/detect-scrollbar-width -// @todo: refactor into core JS/CSS -.c-bolt-modal__scrollbar-measure { - position: absolute; - top: -9999px; - width: 100px; - height: 100px; - overflow: scroll; +.c-bolt-modal__close-button--light { + .c-bolt-modal__close-button__icon { + &:before, + &:after { + @include bolt-mq($bolt-modal-breakpoint) { + background-color: bolt-color(white); + } + } + } +} + +.c-bolt-modal__dialog-title { + @include bolt-visuallyhidden; } diff --git a/packages/components/bolt-nav-indicator/CHANGELOG.md b/packages/components/bolt-nav-indicator/CHANGELOG.md index 76c54de31e..5026f866f9 100644 --- a/packages/components/bolt-nav-indicator/CHANGELOG.md +++ b/packages/components/bolt-nav-indicator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-nav-indicator + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-nav-indicator diff --git a/packages/components/bolt-nav-indicator/package.json b/packages/components/bolt-nav-indicator/package.json index 6a91157c3a..b2295f2f8c 100644 --- a/packages/components/bolt-nav-indicator/package.json +++ b/packages/components/bolt-nav-indicator/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -32,7 +32,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "gumshoejs": "^3.5.0", "is-visible": "^2.2.0" }, diff --git a/packages/components/bolt-nav-priority/CHANGELOG.md b/packages/components/bolt-nav-priority/CHANGELOG.md index f1f43c3573..a362fbd9da 100644 --- a/packages/components/bolt-nav-priority/CHANGELOG.md +++ b/packages/components/bolt-nav-priority/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav-priority/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav-priority/commit/d9de9c0)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav-priority/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-nav-priority diff --git a/packages/components/bolt-nav-priority/package.json b/packages/components/bolt-nav-priority/package.json index f3c02442d5..265274071e 100644 --- a/packages/components/bolt-nav-priority/package.json +++ b/packages/components/bolt-nav-priority/package.json @@ -7,7 +7,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -31,7 +31,8 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-navlink": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-navbar/CHANGELOG.md b/packages/components/bolt-navbar/CHANGELOG.md index 1b98fcd15c..3d9e24068c 100644 --- a/packages/components/bolt-navbar/CHANGELOG.md +++ b/packages/components/bolt-navbar/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/commit/d9de9c0)) + + +### Features + +* tweak the internal spacing for the Navbar so extra elements nested inside the main title section will automatically get spacing in between each item + eliminate the need for items themselves adding their own space ([8cbcf08](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/commit/8cbcf08)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-navbar/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-navbar diff --git a/packages/components/bolt-navbar/__tests__/navbar.js b/packages/components/bolt-navbar/__tests__/navbar.js index 6f32f819d8..55ba28a337 100644 --- a/packages/components/bolt-navbar/__tests__/navbar.js +++ b/packages/components/bolt-navbar/__tests__/navbar.js @@ -38,23 +38,25 @@ const viewportSizes = [ ]; describe(' Component', () => { - let page, isOnline, context; + let page, isOnline; beforeAll(async () => { isOnline = await isConnected(); - context = await global.__BROWSER__.createIncognitoBrowserContext(); }); afterAll(async () => { await stopServer(); - }, 100); + await page.close(); + }); + + afterEach(async () => { + await page.close(); + }); beforeEach(async () => { - page = await context.newPage(); + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); diff --git a/packages/components/bolt-navbar/package.json b/packages/components/bolt-navbar/package.json index fa9107e97a..6b915ca347 100644 --- a/packages/components/bolt-navbar/package.json +++ b/packages/components/bolt-navbar/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -32,10 +32,10 @@ "access": "public" }, "dependencies": { - "@bolt/components-nav-indicator": "^2.5.6", - "@bolt/components-nav-priority": "^2.5.6", - "@bolt/components-navlink": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-nav-indicator": "^2.6.0-beta.1", + "@bolt/components-nav-priority": "^2.6.0-beta.1", + "@bolt/components-navlink": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-navbar/src/navbar.scss b/packages/components/bolt-navbar/src/navbar.scss index 8315bfbbed..afccad0de3 100644 --- a/packages/components/bolt-navbar/src/navbar.scss +++ b/packages/components/bolt-navbar/src/navbar.scss @@ -43,6 +43,10 @@ bolt-navbar { @include bolt-padding-left(small); @include bolt-padding-right(small); + > *:not(:last-child){ + @include bolt-margin-right(small); + } + @include bolt-mq($bolt-navbar-xsmall-bp){ @include bolt-padding-left(medium); @include bolt-padding-right(medium); @@ -118,9 +122,9 @@ bolt-navbar { } } - // Don't include these inner "full-bleed" styles till Navbar is updated to support theming classes internally, + // Don't include these inner "full-bleed" styles till Navbar is updated to support theming classes internally, // otherwise full bleed + center styling combos are broken - // @todo: uncomment once the [width*="full"] updates from above ^ are addressed + // @todo: uncomment once the [width*="full"] updates from above ^ are addressed // &--full { // @include bolt-full-bleed; // } @@ -148,13 +152,14 @@ bolt-navbar { color: bolt-theme(headline); white-space: nowrap; + > *:not(:last-child){ + @include bolt-margin-right(small); + } + @supports (--css: variables) { padding-bottom: var(--bolt-vspacing, $bolt-navbar-vspacing-small); } - @include bolt-mq(medium){ - @include bolt-margin-right(medium); // Maintain space between items - } &:only-child { @include bolt-margin-right(auto); diff --git a/packages/components/bolt-navlink/CHANGELOG.md b/packages/components/bolt-navlink/CHANGELOG.md index 763a37e948..12e3a50b05 100644 --- a/packages/components/bolt-navlink/CHANGELOG.md +++ b/packages/components/bolt-navlink/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* add missing calls to super in navlink JS ([9f3bd31](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav/commit/9f3bd31)) +* add missing config to disable Shadow DOM in the Navlink component (temp workaround to component not currently rendering HTML) ([f1ac0c1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav/commit/f1ac0c1)) +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav/commit/d9de9c0)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-nav/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-navlink diff --git a/packages/components/bolt-navlink/navlink.js b/packages/components/bolt-navlink/navlink.js index 996f5f0f9c..7581043828 100644 --- a/packages/components/bolt-navlink/navlink.js +++ b/packages/components/bolt-navlink/navlink.js @@ -21,6 +21,7 @@ class BoltNavLink extends withLitHtml() { constructor(self) { self = super(self); this.activeClass = 'is-active'; + this.useShadow = false; // just-in-case workaround given that the current doesn't actually render any HTML... this.dropdownLinkClass = 'is-dropdown-link'; return self; } @@ -35,44 +36,41 @@ class BoltNavLink extends withLitHtml() { } onClick(event) { - // prevent browser default if we're smooth scrolling to a navlink. this ensures a smoother, less jumpy animation in browsers (like Safari) - const customScrollElemTarget = this._shadowLink.getAttribute('href'); - const matchedScrollTarget = document.querySelectorAll( - customScrollElemTarget, - ); - let shouldSmoothScroll = true; - - // if no ids match up with the smooth scrollable element, don't try to smooth scroll. - // workaround to smooth scroll js error `Cannot read property 'smoothScroll' of null` - if ( - customScrollElemTarget.indexOf('#') !== -1 && - matchedScrollTarget.length === 0 - ) { - shouldSmoothScroll = false; - } + /** + * 1. prevent browser default if we're smooth scrolling to a navlink. + * this ensures a smoother, less jumpy animation in browsers (like Safari) + */ - if (shouldSmoothScroll !== false) { - event.preventDefault(); + try { + const customScrollElemTarget = this._shadowLink.getAttribute('href'); - // Don't add the :focus state to the link in this scenario. The focus state is about to get removed anyway as - // we move down the page, and a flash of the focused state just adds confusion. - document.activeElement.blur(); - } - - // manually add smooth scroll to dropdown links since these are added to the page AFTER smooth scroll event bindings would hae been added. - if ( - !this.props.active && - this.props.isDropdownLink && - shouldSmoothScroll !== false - ) { - const scrollTarget = getScrollTarget(this._shadowLink); - if (scrollTarget) { - smoothScroll.animateScroll( - scrollTarget, - this._shadowLink, - scrollOptions, + if (customScrollElemTarget && customScrollElemTarget.indexOf('#') === 0) { + const matchedScrollTarget = document.querySelector( + customScrollElemTarget, ); + + if (matchedScrollTarget) { + event.preventDefault(); + + // Don't add the :focus state to the link in this scenario. The focus state is about to get removed anyway as + // we move down the page, and a flash of the focused state just adds confusion. + document.activeElement.blur(); + + // manually add smooth scroll to dropdown links since these are added to the page AFTER smooth scroll event bindings would hae been added. + if (!this.props.active && this.props.isDropdownLink) { + const scrollTarget = getScrollTarget(this._shadowLink); + if (scrollTarget) { + smoothScroll.animateScroll( + scrollTarget, + this._shadowLink, + scrollOptions, + ); + } + } + } } + } catch (err) { + console.log(err); } this.dispatchEvent( @@ -133,6 +131,7 @@ class BoltNavLink extends withLitHtml() { } connecting() { + super.connecting && super.connecting(); this.addEventListener('click', this.onClick); this._shadowLink = this.querySelector('a'); @@ -149,6 +148,7 @@ class BoltNavLink extends withLitHtml() { } disconnecting() { + super.disconnecting && super.disconnecting(); this.removeEventListener('click', this.onClick); } } diff --git a/packages/components/bolt-navlink/package.json b/packages/components/bolt-navlink/package.json index 92f1fdc65d..888b2dff9c 100644 --- a/packages/components/bolt-navlink/package.json +++ b/packages/components/bolt-navlink/package.json @@ -7,7 +7,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -31,8 +31,9 @@ "main": "index.js", "schema": "navlink.schema.yml", "dependencies": { - "@bolt/components-smooth-scroll": "^2.5.6", - "@bolt/core": "^2.5.6", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-smooth-scroll": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1", "is-visible": "^2.2.0" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-ol/CHANGELOG.md b/packages/components/bolt-ol/CHANGELOG.md index 0570b2682a..78cf248f84 100644 --- a/packages/components/bolt-ol/CHANGELOG.md +++ b/packages/components/bolt-ol/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/lists/bolt-ol/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-ol + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/lists/bolt-ol/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-ol diff --git a/packages/components/bolt-ol/package.json b/packages/components/bolt-ol/package.json index 429ebfb853..82f795996d 100755 --- a/packages/components/bolt-ol/package.json +++ b/packages/components/bolt-ol/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -33,8 +33,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-li": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-li": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-page-footer/CHANGELOG.md b/packages/components/bolt-page-footer/CHANGELOG.md index 11dae2352a..8e1dec3383 100644 --- a/packages/components/bolt-page-footer/CHANGELOG.md +++ b/packages/components/bolt-page-footer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-page-footer/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-page-footer + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-page-footer/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-page-footer diff --git a/packages/components/bolt-page-footer/package.json b/packages/components/bolt-page-footer/package.json index 44e30001de..9e85ee2a4d 100644 --- a/packages/components/bolt-page-footer/package.json +++ b/packages/components/bolt-page-footer/package.json @@ -1,12 +1,12 @@ { "name": "@bolt/components-page-footer", "description": "Page Footer Component", - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "license": "MIT", "private": true, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "style": "page-footer.scss", "schema": "page-footer.schema.yml", diff --git a/packages/components/bolt-page-header/CHANGELOG.md b/packages/components/bolt-page-header/CHANGELOG.md index a8ce746d47..f924fe9105 100644 --- a/packages/components/bolt-page-header/CHANGELOG.md +++ b/packages/components/bolt-page-header/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-page-header/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-page-header + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-page-header/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-page-header diff --git a/packages/components/bolt-page-header/package.json b/packages/components/bolt-page-header/package.json index 2b4cbe3df2..3466ab875a 100644 --- a/packages/components/bolt-page-header/package.json +++ b/packages/components/bolt-page-header/package.json @@ -7,7 +7,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", @@ -19,7 +19,7 @@ }, "style": "src/page-header.scss", "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "schema": "page-header.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-pagination/CHANGELOG.md b/packages/components/bolt-pagination/CHANGELOG.md index 9c29c1dfd7..0df01e16d6 100644 --- a/packages/components/bolt-pagination/CHANGELOG.md +++ b/packages/components/bolt-pagination/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/commit/f1e6f95)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-pagination diff --git a/packages/components/bolt-pagination/__tests__/pagination.js b/packages/components/bolt-pagination/__tests__/pagination.js index f12f7d2a51..1a9dea79e3 100644 --- a/packages/components/bolt-pagination/__tests__/pagination.js +++ b/packages/components/bolt-pagination/__tests__/pagination.js @@ -10,7 +10,7 @@ const { join } = require('path'); const schema = readYamlFileSync(join(__dirname, '../pagination.schema.yml')); const { align } = schema.properties; -const timeout = 60000; +const timeout = 120000; describe(' Component', () => { afterAll(async () => { diff --git a/packages/components/bolt-pagination/package.json b/packages/components/bolt-pagination/package.json index 2c01d57dbd..e3a620dd38 100644 --- a/packages/components/bolt-pagination/package.json +++ b/packages/components/bolt-pagination/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "maintainers": [ { "name": "Salem Ghoweri", @@ -37,7 +37,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-placeholder/CHANGELOG.md b/packages/components/bolt-placeholder/CHANGELOG.md index dca245677b..b7d2cdfbb6 100644 --- a/packages/components/bolt-placeholder/CHANGELOG.md +++ b/packages/components/bolt-placeholder/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-placeholder/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/components-placeholder + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-placeholder/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-placeholder diff --git a/packages/components/bolt-placeholder/TESTING.md b/packages/components/bolt-placeholder/TESTING.md new file mode 100644 index 0000000000..8f959a19e8 --- /dev/null +++ b/packages/components/bolt-placeholder/TESTING.md @@ -0,0 +1,41 @@ +# Placeholder component testing steps + +## Placeholder component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-placeholder` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Placeholder Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-placeholder/index.html). +2. Then, enable javascript and watch as the placeholder re-renders on the client-side. +3. The layout should not shift, e.g. the spacing in between each placeholder and any animations should be identical before and after the web component re-renders. + +# Placeholder component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: placeholder + + In order to create a placheholder that represents the absence, or the potential to add, an element in a specific location + As a UX designer, developer or content administrator + I need to ensure the "bolt-placeholder" component renders and functions as expected + +## Scenario: animated variations + +1. Given I am viewing the [animated variation page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-placeholder-placeholder-component--animated/02-components-placeholder-placeholder-component--animated.html). +2. A gray bar should span the horizontal length of the screen view with an animated, dash-line border moving clockwise around the edge. + +## Scenario: size variations + +1. Given I am viewing the [size variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-placeholder-placeholder-component--sizes/02-components-placeholder-placeholder-component--sizes.html). +2. Extra small size, gray bar with dash-line border that spans the horizontal length of the screen view. +3. Small size, gray bar with dash-line border that spans the horizontal length of the screen view. +4. Medium size, gray bar with dash-line border that spans the horizontal length of the screen view. +5. Large size, gray bar with dash-line border that spans the horizontal length of the screen view. +6. Extra large size, gray bar with dash-line border that spans the horizontal length of the screen view. +7. There should be medium spacing for padding. Reference the spacing sizes on the [Spacing page](https://boltdesignsystem.com/pattern-lab/?p=viewall-visual-styles-spacing). + +## Scenario: stacking variations + +1. Given I am viewing the [stacking components page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-placeholder-placeholder-component--stacked/02-components-placeholder-placeholder-component--stacked.html). +2. Two, vertically arranged, gray bars that span the horizontal length of the screen view. +3. Both with animated, dash-line borders moving clockwise around their edge. +4. There should be medium spacing for padding. Reference the spacing sizes on the [Spacing page](https://boltdesignsystem.com/pattern-lab/?p=viewall-visual-styles-spacing). diff --git a/packages/components/bolt-placeholder/__tests__/__snapshots__/placeholder.js.snap b/packages/components/bolt-placeholder/__tests__/__snapshots__/placeholder.js.snap new file mode 100644 index 0000000000..231a63a5c2 --- /dev/null +++ b/packages/components/bolt-placeholder/__tests__/__snapshots__/placeholder.js.snap @@ -0,0 +1,148 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component Placeholder size: large 1`] = ` + + + + + + + + + large Bolt Placeholder + + + + +`; + +exports[` Component Placeholder size: medium 1`] = ` + + + + + + + + + medium Bolt Placeholder + + + + +`; + +exports[` Component Placeholder size: small 1`] = ` + + + + + + + + + small Bolt Placeholder + + + + +`; + +exports[` Component Placeholder size: xlarge 1`] = ` + + + + + + + + + xlarge Bolt Placeholder + + + + +`; + +exports[` Component Placeholder size: xsmall 1`] = ` + + + + + + + + + xsmall Bolt Placeholder + + + + +`; + +exports[` Component placeholder component 1`] = ` + + + + + + + + + Bolt Placeholder Example + + + + +`; + +exports[` Component placeholder component animated 1`] = ` + + + + + + + + + Bolt Placeholder Example + + + + +`; + +exports[` Component stacked 1`] = ` + + + + + + + + + Bolt Placeholder Example + + + + + + + + + + + + + Bolt Placeholder Example + + + + +`; diff --git a/packages/components/bolt-placeholder/__tests__/placeholder.js b/packages/components/bolt-placeholder/__tests__/placeholder.js new file mode 100644 index 0000000000..29416e04d0 --- /dev/null +++ b/packages/components/bolt-placeholder/__tests__/placeholder.js @@ -0,0 +1,65 @@ +import { render, renderString } from '@bolt/twig-renderer'; + +const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); +const { join } = require('path'); +const schema = readYamlFileSync(join(__dirname, '../placeholder.schema.yml')); +const { size } = schema.properties; + +describe(' Component', () => { + test('placeholder component animated', async () => { + const results = await render( + '@bolt-components-placeholder/placeholder.twig', + { + text: 'Bolt Placeholder Example', + size: 'large', + animated: true, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('placeholder component', async () => { + const results = await render( + '@bolt-components-placeholder/placeholder.twig', + { + text: 'Bolt Placeholder Example', + size: 'large', + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + size.enum.forEach(async sizeChoice => { + test(`Placeholder size: ${sizeChoice}`, async () => { + const results = await render( + '@bolt-components-placeholder/placeholder.twig', + { + text: `${sizeChoice} Bolt Placeholder`, + size: sizeChoice, + }, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + test('stacked ', async () => { + const results = await renderString(` + {% include "@bolt-components-placeholder/placeholder.twig" with { + text: "Bolt Placeholder Example", + size: "large", + animated: true + } %} + + {% include "@bolt-components-placeholder/placeholder.twig" with { + text: "Bolt Placeholder Example", + size: "large", + animated: true + } %} + `); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-placeholder/package.json b/packages/components/bolt-placeholder/package.json index 060006ad0b..20cff99833 100644 --- a/packages/components/bolt-placeholder/package.json +++ b/packages/components/bolt-placeholder/package.json @@ -9,7 +9,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", "license": "MIT", @@ -19,7 +19,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "schema": "placeholder.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-ratio/CHANGELOG.md b/packages/components/bolt-ratio/CHANGELOG.md index 21ed299359..ecec24251e 100644 --- a/packages/components/bolt-ratio/CHANGELOG.md +++ b/packages/components/bolt-ratio/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix prettier issue ([80b456e](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/commit/80b456e)) +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/commit/f1e6f95)) +* update styles to prevent lazyloaded / blurred images from leaking out of the container ([6a032f4](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/commit/6a032f4)) +* update ratio VRT snapshot with version not as pixelated ([13d498e](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/commit/13d498e)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/ui/objects/bolt-ratio/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-ratio diff --git a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-twig-ratio-prop-fraction-containing-a-decimal-2-snap.png b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-twig-ratio-prop-fraction-containing-a-decimal-2-snap.png index 6d5200cabd..1ea7bcdc8a 100644 Binary files a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-twig-ratio-prop-fraction-containing-a-decimal-2-snap.png and b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-twig-ratio-prop-fraction-containing-a-decimal-2-snap.png differ diff --git a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-web-component-ratio-prop-fraction-containing-a-decimal-2-snap.png b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-web-component-ratio-prop-fraction-containing-a-decimal-2-snap.png index fb1a13afdf..012eb0f79a 100644 Binary files a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-web-component-ratio-prop-fraction-containing-a-decimal-2-snap.png and b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-web-component-ratio-prop-fraction-containing-a-decimal-2-snap.png differ diff --git a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-with-html-5-video-renders-1-snap.png b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-with-html-5-video-renders-1-snap.png index dfbd83d4a9..867d5250ee 100644 Binary files a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-with-html-5-video-renders-1-snap.png and b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-bolt-ratio-with-html-5-video-renders-1-snap.png differ diff --git a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-default-bolt-ratio-w-o-shadow-dom-renders-2-snap.png b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-default-bolt-ratio-w-o-shadow-dom-renders-2-snap.png index e651d6ea4c..c77fd49dae 100644 Binary files a/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-default-bolt-ratio-w-o-shadow-dom-renders-2-snap.png and b/packages/components/bolt-ratio/__tests__/__image_snapshots__/ratio-js-bolt-ratio-component-default-bolt-ratio-w-o-shadow-dom-renders-2-snap.png differ diff --git a/packages/components/bolt-ratio/__tests__/__snapshots__/ratio.js.snap b/packages/components/bolt-ratio/__tests__/__snapshots__/ratio.js.snap index be918da627..6bf782a750 100644 --- a/packages/components/bolt-ratio/__tests__/__snapshots__/ratio.js.snap +++ b/packages/components/bolt-ratio/__tests__/__snapshots__/ratio.js.snap @@ -31,15 +31,15 @@ exports[` Component with HTML5 video renders 2`] = ` style="width: 640px;" > Link 1 Link 2 diff --git a/packages/components/bolt-smooth-scroll/package.json b/packages/components/bolt-smooth-scroll/package.json index 4e48ff344e..f229cae2ba 100755 --- a/packages/components/bolt-smooth-scroll/package.json +++ b/packages/components/bolt-smooth-scroll/package.json @@ -8,7 +8,7 @@ "design system", "component" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.5", "maintainers": [ { @@ -35,7 +35,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "smooth-scroll": "github:bolt-design-system/smooth-scroll#master" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-stack/CHANGELOG.md b/packages/components/bolt-stack/CHANGELOG.md index ef7675eb3a..1e858a609f 100644 --- a/packages/components/bolt-stack/CHANGELOG.md +++ b/packages/components/bolt-stack/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-stack/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* globally update max timeout in Jest ([f1e6f95](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-stack/commit/f1e6f95)) + + + + + ## [2.5.6](http://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-stack/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-stack diff --git a/packages/components/bolt-stack/__tests__/stack.js b/packages/components/bolt-stack/__tests__/stack.js index e62d5004f6..c4b3513b45 100644 --- a/packages/components/bolt-stack/__tests__/stack.js +++ b/packages/components/bolt-stack/__tests__/stack.js @@ -10,7 +10,7 @@ const { join } = require('path'); const schema = readYamlFileSync(join(__dirname, '../stack.schema.yml')); const { spacing } = schema.properties; -const timeout = 60000; +const timeout = 120000; describe(' component', () => { afterAll(async () => { diff --git a/packages/components/bolt-stack/package.json b/packages/components/bolt-stack/package.json index 9dff2659b0..47feb1525e 100644 --- a/packages/components/bolt-stack/package.json +++ b/packages/components/bolt-stack/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/components-stack", - "version": "2.5.6", + "version": "2.6.0-beta.1", "description": "A container component that defines spacing between elements vertically", "repository": { "type": "git", @@ -15,7 +15,7 @@ "bolt design system" ], "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/core": "^2.6.0-beta.1" }, "publishConfig": { "access": "public" diff --git a/packages/components/bolt-sticky/CHANGELOG.md b/packages/components/bolt-sticky/CHANGELOG.md index 5557a1db74..9f33dbe0ca 100644 --- a/packages/components/bolt-sticky/CHANGELOG.md +++ b/packages/components/bolt-sticky/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-sticky/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* make sure Jest tests using the Twig Renderer stop the server when finished ([5e880f5](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-sticky/commit/5e880f5)) + + +### Features + +* add functional test of bolt sticky ([c74043c](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-sticky/commit/c74043c)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-sticky/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-sticky diff --git a/packages/components/bolt-sticky/TESTING.md b/packages/components/bolt-sticky/TESTING.md new file mode 100644 index 0000000000..8595d4b7e3 --- /dev/null +++ b/packages/components/bolt-sticky/TESTING.md @@ -0,0 +1,28 @@ +# Sticky component testing steps + +## Sticky component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-sticky` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [Sticky Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-sticky--10-sticky-simple-example/02-components-sticky--10-sticky-simple-example.html). +2. Then, enable javascript and watch as the Sticky elements re-render on the client-side. +3. The layout should not shift, e.g. the items should still stick to the top of the page and should be identical before and after the web component re-renders. + +# Sticky component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: Sticky + + In order to present items that will attach to the top of the page when scrolled + As a UX designer, developer or content administrator + I need to ensure the "bolt-sticky" component renders and functions as expected + +## Scenario: additional content + +1. Given I am viewing the [additional content page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-sticky--15-sticky-with-content-example/02-components-sticky--15-sticky-with-content-example.html). +2. There should be a webpage for "Pega for Governement: Healthcare & Social Programs". +3. As the page is scrolled the nav element will attach itself to the top of the viewport. +4. In the nav element a yellow indicator will move to underline each nav element link as it's reached on the page. +5. After reaching the end of "Section 2" a light gray nav element will attach itself to the top of the viewport and replace the previous nav element. +6. In the nav element a blue indicator will move to underline each nav element link as it's reached on the page. diff --git a/packages/components/bolt-sticky/__tests__/__snapshots__/sticky.js.snap b/packages/components/bolt-sticky/__tests__/__snapshots__/sticky.js.snap new file mode 100644 index 0000000000..4ac9f89c83 --- /dev/null +++ b/packages/components/bolt-sticky/__tests__/__snapshots__/sticky.js.snap @@ -0,0 +1,147 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component basic usage 1`] = ` +
+
+ +
+ First sticky item +
+
+
+
+ +
+ Second sticky item +
+
+
+
+ +
+ Third sticky item +
+
+
+
+`; + +exports[` Component usage with content 1`] = ` + + + + + + +
+
+ +
+

+ Section 2 +

+

+ Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed. +

+

+ Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci. +

+
+
+
+
+
+`; diff --git a/packages/components/bolt-sticky/__tests__/sticky.js b/packages/components/bolt-sticky/__tests__/sticky.js new file mode 100644 index 0000000000..48d96b7ad8 --- /dev/null +++ b/packages/components/bolt-sticky/__tests__/sticky.js @@ -0,0 +1,127 @@ +import { + render, + renderString, + stopServer, +} from '../../../testing/testing-helpers'; + +describe(' Component', () => { + test('basic usage', async () => { + afterAll(async () => { + await stopServer(); + }); + + const results = await renderString( + ` +
+ + {% embed "@bolt-components-sticky/sticky.twig" %} + {% block sticky_content %} +
+ First sticky item +
+ {% endblock %} + {% endembed %} + +
+ + {% embed "@bolt-components-sticky/sticky.twig" %} + {% block sticky_content %} +
+ Second sticky item +
+ {% endblock %} + {% endembed %} + +
+ + {% embed "@bolt-components-sticky/sticky.twig" %} + {% block sticky_content %} +
+ Third sticky item +
+ {% endblock %} + {% endembed %} + +
+ `, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + test('usage with content', async () => { + const results = await renderString( + ` + {% embed "@bolt-components-sticky/sticky.twig" %} + {% block sticky_content %} + {% include "@bolt-components-navbar/navbar.twig" with { + "theme": "dark", + "title": + { + "tag": "h2", + "text": "Pega for Government: Healthcare & Social Programs", + "icon": + { + "name": "marketing-gray" + } + }, + "links": + [ + { + "text": "Visualization & Simulation", + "url": "#visualization-and-simulation" + }, + { + "text": "Section 1", + "url": "#section-1" + }, + { + "text": "Section 2 is a lot longer", + "url": "#section-2" + }, + { + "text": "The constituent experience", + "url": "#the-constituent-experience" + }, + { + "text": "Section 4", + "url": "#section-4" + } + ] + } only %} + {% endblock %} + {% endembed %} + + {% embed "@bolt-components-band/band.twig" with { + size: "large", + theme: "dark", + full_bleed: true, + attributes: { + id: [ + "section-2" + ] + } + } %} + {% block band_content %} + + {% include "@bolt-components-headline/headline.twig" with { + text: "Section 2", + size: "xxlarge", + tag: "h2" + } only %} + + {% include "@bolt-components-headline/text.twig" with { + text: "Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed." + } only %} + + {% include "@bolt-components-headline/text.twig" with { + text: "Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci." + } only %} + + {% endblock band_content %} + {% endembed %} + `, + ); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); +}); diff --git a/packages/components/bolt-sticky/__tests__/sticky.no2e.js b/packages/components/bolt-sticky/__tests__/sticky.no2e.js new file mode 100644 index 0000000000..6845921e17 --- /dev/null +++ b/packages/components/bolt-sticky/__tests__/sticky.no2e.js @@ -0,0 +1,37 @@ +let currentBrowser; + +module.exports = { + tags: ['component', 'sticky', 'web component'], + 'Bolt Accordion': function(browser) { + const { testingUrl } = browser.globals; + console.log(`global browser url: ${testingUrl}`); + currentBrowser = '--' + browser.currentEnv || 'chrome'; + let testName = 'bolt-sticky'; + + browser + .url( + `${testingUrl}/pattern-lab/patterns/02-components-sticky--10-sticky-simple-example/02-components-sticky--10-sticky-simple-example.html`, + ) + .waitForElementVisible('bolt-sticky', 1000) + .moveToElement('#endOfDocument', 0, 0) + .pause(1000) + .execute( + function(data) { + const boltSticky = document.querySelector('bolt-sticky'); // Grab first sticky element in document + const boundingBox = boltSticky.getBoundingClientRect(); // Get the sticky element's bounding box + return boundingBox && boundingBox.top === 0; // Confirm the bounding box is set to the top of the page + }, + [], + function(result) { + browser.assert.ok( + result.value === true, + `verified that sticks to the top of the page when scrolled past.`, + ); + }, + ) + .saveScreenshot( + `screenshots/bolt-sticky/${testName}--${currentBrowser}.png`, + ) + .end(); + }, +}; diff --git a/packages/components/bolt-sticky/package.json b/packages/components/bolt-sticky/package.json index 75c56b3846..13a0d96c31 100644 --- a/packages/components/bolt-sticky/package.json +++ b/packages/components/bolt-sticky/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.10.0", "maintainers": [ { @@ -37,7 +37,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "stickyfilljs": "^2.0.3" }, "schema": "sticky.schema.yml", diff --git a/packages/components/bolt-sticky/src/sticky.scss b/packages/components/bolt-sticky/src/sticky.scss index 8cb03ac6ac..85564c9b4f 100644 --- a/packages/components/bolt-sticky/src/sticky.scss +++ b/packages/components/bolt-sticky/src/sticky.scss @@ -11,6 +11,6 @@ bolt-sticky { .c-bolt-sticky { position: sticky; top: 0; - z-index: bolt-z-index('navFixed'); + z-index: bolt-z-index(nav); width: 100%; } diff --git a/packages/components/bolt-table/CHANGELOG.md b/packages/components/bolt-table/CHANGELOG.md index 347d52f5db..46e2c0eb66 100644 --- a/packages/components/bolt-table/CHANGELOG.md +++ b/packages/components/bolt-table/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* escape linting ([2212614](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/2212614)) +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/f1e6f95)) +* lint js ([7193a3b](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/7193a3b)) +* remove obsolete snapshots ([feba331](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/feba331)) +* snaps ([26b5fcc](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/26b5fcc)) +* test and typo ([8aa43b3](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/8aa43b3)) +* update jest tests ([78cb2c7](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/commit/78cb2c7)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-table/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-table diff --git a/packages/components/bolt-table/TESTING.md b/packages/components/bolt-table/TESTING.md new file mode 100644 index 0000000000..496d066741 --- /dev/null +++ b/packages/components/bolt-table/TESTING.md @@ -0,0 +1,47 @@ +# Table component testing steps + +## Table component render as expected (functionally and visually) + +The server-side pre-rendered `bolt-table` component should look almost identical to the client-side rendered version. To verify: + +1. Disable javascript and view the [table Demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-table-05-table/02-components-table-05-table.html). +2. Then, enable javascript and watch as the table re-renders on the client-side. +3. The layout should not shift, e.g. the spacing in between each table item should be identical before and after the web component re-renders. + +# Table component functional testing steps + +Functional testing should be performed manually by the QA team across the standard compliment of browsers. In each scenario, browser-type is specified when necessary. If browser type is not specified, the test applies to both "desktop" and "mobile" browsers. + +## Feature: Table + + In order to present items in a table with rows and cells + As a UX designer, developer or content administrator + I need to ensure the "bolt-table" component renders and functions as expected + +## Scenario: format variations + +1. Given I am on the [format variations page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-table-10-table-format-variations/02-components-table-10-table-format-variations.html) +2. When I view the table titled "Regular format" +3. Then I see all text is aligned to the left +4. When I view the table titled "Numeric format" +5. Then I see the side headers are aligned to the right, while text in other cells are center aligned + +## Scenario: borderless table + +1. Given I am on the [borderless demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-table-15-table-borderless/02-components-table-15-table-borderless.html) +2. When I view the table titled "Remove the vertical border in between cells" +3. Then I see no vertical dividers in between cells (excluding side headers) + +## Scenario: first column fixed width table + +1. Given I am on the [first column fixed width demo page](https://boltdesignsystem.com/pattern-lab/patterns/02-components-table-20-table-first-column-fixed-width/02-components-table-20-table-first-column-fixed-width.html) +2. When I view the table titled "Set column widths to be flexible", where the first column _is not_ set to fixed width +3. Then I see the column widths are evenly distributed +4. When I view the table titled "Set the width of the first column to be as wide as the longest text", where the first column _is_ set to fixed width +5. Then I see the first column is as wide as the longest text in that particular column + +## Scenario: table with web components + +[table with Web Components](https://boltdesignsystem.com/pattern-lab/patterns/02-components-table-999-table-with-web-component/02-components-table-999-table-with-web-component.html) + +`// This is a purely visual test, use VRT` diff --git a/packages/components/bolt-table/__tests__/__snapshots__/table.js.snap b/packages/components/bolt-table/__tests__/__snapshots__/table.js.snap new file mode 100644 index 0000000000..52986d256e --- /dev/null +++ b/packages/components/bolt-table/__tests__/__snapshots__/table.js.snap @@ -0,0 +1,877 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` Component borderless table: false 1`] = ` + +
SR-44869 - UTF-8 OpenSpan.Updater.Git.dll
+ + + + + + + + + + + + + + + + + + + + + + +
+ + Description + + Team + + Vehicle Form +
+ Optimus Prime + + The awe-inspiring leader of the Autobot forces. Selfless and endlessly courageous, he is the complete opposite of his mortal enemy Megatron. + + Autobots + + Peterbilt Truck +
+ Bumblebee + + One of Optimus Primes most trusted lieutenants. Although he is not the strongest or most powerful of the Autobots, Bumblebee more than makes up for this with a bottomless well of luck, determination and bravery. He would gladly give his life to protect others and stop the Decepticons. + + Autobots + + VW Beetle +
+
+`; + +exports[` Component borderless table: true 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Description + + Team + + Vehicle Form +
+ Optimus Prime + + The awe-inspiring leader of the Autobot forces. Selfless and endlessly courageous, he is the complete opposite of his mortal enemy Megatron. + + Autobots + + Peterbilt Truck +
+ Bumblebee + + One of Optimus Primes most trusted lieutenants. Although he is not the strongest or most powerful of the Autobots, Bumblebee more than makes up for this with a bottomless well of luck, determination and bravery. He would gladly give his life to protect others and stop the Decepticons. + + Autobots + + VW Beetle +
+
+`; + +exports[` Component first column fixed width table: false 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Prop + + Description + + Type +
+ attributes + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + object + +
+ headers + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + object + +
+ rows + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + array + +
+ format + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + string + +
+
+`; + +exports[` Component first column fixed width table: true 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Prop + + Description + + Type +
+ attributes + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + object + +
+ headers + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + object + +
+ rows + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + array + +
+ format + + Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus. + + + string + +
+
+`; + +exports[` Component table format: numeric 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Pts + + Reb + + Ast + + Stl + + Blk +
+ Michael Jordan + + 70 + + 10 + + 2 + + 5 + + 1 +
+ Toni Kukoc + + 21 + + 15 + + 10 + + 3 + + 4 +
+ Steve Kerr + + 5 + + 2 + + 20 + + 5 + + 0 +
+ Total + + 91 + + 27 + + 32 + + 13 + + 5 +
+
+`; + +exports[` Component table format: regular 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Pts + + Reb + + Ast + + Stl + + Blk +
+ Michael Jordan + + 70 + + 10 + + 2 + + 5 + + 1 +
+ Toni Kukoc + + 21 + + 15 + + 10 + + 3 + + 4 +
+ Steve Kerr + + 5 + + 2 + + 20 + + 5 + + 0 +
+ Total + + 91 + + 27 + + 32 + + 13 + + 5 +
+
+`; + +exports[` Component table with rows only 1`] = ` + + + + + + + + + + + + + + + + + + + +
+ R1C1 + + R1C2 + + R1C3 +
+ R2C1 + + R2C2 + + R2C3 +
+ R3C1 + + R3C2 + + R3C3 +
+
+`; + +exports[` Component table with side headers 1`] = ` + + + + + + + + + + + + + + + + + + + + + + +
+ Row 1 + + R1C1 + + R1C2 + + R1C3 +
+ Row 2 + + R2C1 + + R2C2 + + R2C3 +
+ Row 3 + + R3C1 + + R3C2 + + R3C3 +
+
+`; + +exports[` Component table with top and side headers 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Column 1 + + Column 2 + + Column 3 +
+ Row 1 + + R1C1 + + R1C2 + + R1C3 +
+ Row 2 + + R2C1 + + R2C2 + + R2C3 +
+ Row 3 + + R3C1 + + R3C2 + + R3C3 +
+
+`; + +exports[` Component table with top and side headers 2`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Column 1 + + Column 2 + + Column 3 +
+ Row 1 + + R1C1 + + R1C2 + + R1C3 +
+ Row 2 + + R2C1 + + R2C2 + + R2C3 +
+ Row 3 + + R3C1 + + R3C2 + + R3C3 +
+ Footer + + FC1 + + FC2 + + FC3 +
+
+`; + +exports[` Component table with top headers 1`] = ` + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Column 1 + + Column 2 + + Column 3 +
+ R1C1 + + R1C2 + + R1C3 +
+ R2C1 + + R2C2 + + R2C3 +
+ R3C1 + + R3C2 + + R3C3 +
+
+`; diff --git a/packages/components/bolt-table/__tests__/table.js b/packages/components/bolt-table/__tests__/table.js new file mode 100644 index 0000000000..98fb51df95 --- /dev/null +++ b/packages/components/bolt-table/__tests__/table.js @@ -0,0 +1,257 @@ +/* eslint-disable camelcase */ + +import { + render, + renderString, + stop as stopTwigRenderer, +} from '@bolt/twig-renderer'; +const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); +const { join } = require('path'); +const schema = readYamlFileSync(join(__dirname, '../table.schema.yml')); +const { format, borderless, first_col_fixed_width } = schema.properties; + +async function renderTwig(template, data) { + return await render(template, data, true); +} + +async function renderTwigString(template, data) { + return await renderString(template, data, true); +} + +const timeout = 120000; + +describe(' Component', () => { + afterAll(async () => { + await stopTwigRenderer(); + }, timeout); + + test('table with rows only', async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + rows: [ + { + cells: ['R1C1', 'R1C2', 'R1C3'], + }, + { + cells: ['R2C1', 'R2C2', 'R2C3'], + }, + { + cells: ['R3C1', 'R3C2', 'R3C3'], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('table with top headers', async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + headers: { + top: { + cells: ['Column 1', 'Column 2', 'Column 3'], + }, + }, + rows: [ + { + cells: ['R1C1', 'R1C2', 'R1C3'], + }, + { + cells: ['R2C1', 'R2C2', 'R2C3'], + }, + { + cells: ['R3C1', 'R3C2', 'R3C3'], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('table with side headers', async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + headers: { + side: { + cells: ['Row 1', 'Row 2', 'Row 3', 'Footer'], + }, + }, + rows: [ + { + cells: ['R1C1', 'R1C2', 'R1C3'], + }, + { + cells: ['R2C1', 'R2C2', 'R2C3'], + }, + { + cells: ['R3C1', 'R3C2', 'R3C3'], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('table with top and side headers', async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + headers: { + top: { + cells: ['Column 1', 'Column 2', 'Column 3'], + }, + side: { + cells: ['Row 1', 'Row 2', 'Row 3', 'Footer'], + }, + }, + rows: [ + { + cells: ['R1C1', 'R1C2', 'R1C3'], + }, + { + cells: ['R2C1', 'R2C2', 'R2C3'], + }, + { + cells: ['R3C1', 'R3C2', 'R3C3'], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + test('table with top and side headers', async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + headers: { + top: { + cells: ['Column 1', 'Column 2', 'Column 3'], + }, + side: { + cells: ['Row 1', 'Row 2', 'Row 3', 'Footer'], + }, + }, + rows: [ + { + cells: ['R1C1', 'R1C2', 'R1C3'], + }, + { + cells: ['R2C1', 'R2C2', 'R2C3'], + }, + { + cells: ['R3C1', 'R3C2', 'R3C3'], + }, + ], + footer: { + cells: ['FC1', 'FC2', 'FC3'], + }, + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + + format.enum.forEach(async option => { + test(`table format: ${option}`, async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + format: option, + headers: { + top: { + cells: ['Pts', 'Reb', 'Ast', 'Stl', 'Blk'], + }, + side: { + cells: ['Michael Jordan', 'Toni Kukoc', 'Steve Kerr', 'Total'], + }, + }, + rows: [ + { + cells: ['70', '10', '2', '5', '1'], + }, + { + cells: ['21', '15', '10', '3', '4'], + }, + { + cells: ['5', '2', '20', '5', '0'], + }, + ], + footer: { + cells: ['91', '27', '32', '13', '5'], + }, + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + borderless.enum.forEach(async option => { + test(`borderless table: ${option}`, async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + borderless: option, + headers: { + top: { + cells: ['Description', 'Team', 'Vehicle Form'], + }, + side: { + cells: ['Optimus Prime', 'Bumblebee'], + }, + }, + rows: [ + { + cells: [ + 'The awe-inspiring leader of the Autobot forces. Selfless and endlessly courageous, he is the complete opposite of his mortal enemy Megatron.', + 'Autobots', + 'Peterbilt Truck', + ], + }, + { + cells: [ + 'One of Optimus Primes most trusted lieutenants. Although he is not the strongest or most powerful of the Autobots, Bumblebee more than makes up for this with a bottomless well of luck, determination and bravery. He would gladly give his life to protect others and stop the Decepticons.', + 'Autobots', + 'VW Beetle', + ], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); + + first_col_fixed_width.enum.forEach(async option => { + test(`first column fixed width table: ${option}`, async () => { + const results = await renderTwig('@bolt-components-table/table.twig', { + first_col_fixed_width: option, + headers: { + top: { + cells: ['Prop', 'Description', 'Type'], + }, + }, + rows: [ + { + cells: [ + 'attributes', + 'Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus.', + 'object', + ], + }, + { + cells: [ + 'headers', + 'Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus.', + 'object', + ], + }, + { + cells: [ + 'rows', + 'Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus.', + 'array', + ], + }, + { + cells: [ + 'format', + 'Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget odio ac lectus vestibulum faucibus eget in metus.', + 'string', + ], + }, + ], + }); + expect(results.ok).toBe(true); + expect(results.html).toMatchSnapshot(); + }); + }); +}); diff --git a/packages/components/bolt-table/package.json b/packages/components/bolt-table/package.json index 126483144f..28b1f36a7c 100644 --- a/packages/components/bolt-table/package.json +++ b/packages/components/bolt-table/package.json @@ -8,7 +8,7 @@ "design system", "components" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "maintainers": [ { @@ -33,7 +33,7 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6", + "@bolt/core": "^2.6.0-beta.1", "himalaya": "^1.1.0" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-table/table.schema.yml b/packages/components/bolt-table/table.schema.yml index 8378304276..44177cbb53 100644 --- a/packages/components/bolt-table/table.schema.yml +++ b/packages/components/bolt-table/table.schema.yml @@ -76,7 +76,13 @@ properties: type: boolean description: Removes the vertical border in between cells. default: false + enum: + - true + - false first_col_fixed_width: type: boolean description: Sets the width of the first column to be as wide as the longest text. default: false + enum: + - true + - false diff --git a/packages/components/bolt-teaser/CHANGELOG.md b/packages/components/bolt-teaser/CHANGELOG.md index bddaa7c82d..c11a7aee78 100644 --- a/packages/components/bolt-teaser/CHANGELOG.md +++ b/packages/components/bolt-teaser/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-teaser/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* correctly add all dependencies ([d9de9c0](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-teaser/commit/d9de9c0)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-teaser/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-teaser diff --git a/packages/components/bolt-teaser/package.json b/packages/components/bolt-teaser/package.json index d233ac161b..23574e3cc0 100644 --- a/packages/components/bolt-teaser/package.json +++ b/packages/components/bolt-teaser/package.json @@ -8,7 +8,7 @@ "ui toolkit", "design system" ], - "version": "2.5.6", + "version": "2.6.0-beta.1", "sourceFilesFrom": "0.9.0", "author": "Salem Ghoweri", "homepage": "https://boltdesignsystem.com", @@ -20,7 +20,9 @@ "access": "public" }, "dependencies": { - "@bolt/core": "^2.5.6" + "@bolt/components-headline": "^2.6.0-beta.1", + "@bolt/components-logo": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "teaser.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-text/CHANGELOG.md b/packages/components/bolt-text/CHANGELOG.md index 077b5ce85d..20d3e0792a 100644 --- a/packages/components/bolt-text/CHANGELOG.md +++ b/packages/components/bolt-text/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* replace %extends with separate element and :host selectors to fix IE bug ([ff75848](https://github.com/bolt-design-system/bolt/commit/ff75848)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-text diff --git a/packages/components/bolt-text/__tests__/__image_snapshots__/text-js-bolt-text-component-multiple-bolt-text-elements-w-shadow-dom-render-1-snap.png b/packages/components/bolt-text/__tests__/__image_snapshots__/text-js-bolt-text-component-multiple-bolt-text-elements-w-shadow-dom-render-1-snap.png new file mode 100644 index 0000000000..9b64b73f98 Binary files /dev/null and b/packages/components/bolt-text/__tests__/__image_snapshots__/text-js-bolt-text-component-multiple-bolt-text-elements-w-shadow-dom-render-1-snap.png differ diff --git a/packages/components/bolt-text/__tests__/__snapshots__/text.js.snap b/packages/components/bolt-text/__tests__/__snapshots__/text.js.snap index 1d97429a96..f9834690d0 100644 --- a/packages/components/bolt-text/__tests__/__snapshots__/text.js.snap +++ b/packages/components/bolt-text/__tests__/__snapshots__/text.js.snap @@ -109,6 +109,23 @@ exports[` Component Long xxxlarge headline using w/o Shad `; +exports[` Component Multiple elements w/ Shadow DOM render 2`] = ` +
+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + +
+`; + exports[` Component xxxlarge headline using w/ Shadow DOM renders 2`] = ` Component', () => { - let page, context; + let page; afterAll(async () => { await stopServer(); + await page.close(); }, 100); - beforeAll(async () => { - context = await global.__BROWSER__.createIncognitoBrowserContext(); - }); - beforeEach(async () => { - page = await context.newPage(); + await page.evaluate(() => { + document.body.innerHTML = ''; + }); + }, timeout); + + beforeAll(async () => { + page = await global.__BROWSER__.newPage(); await page.goto('http://127.0.0.1:4444/', { timeout: 0, - waitLoad: true, - waitNetworkIdle: true, // defaults to false }); }, timeout); @@ -50,6 +51,34 @@ describe(' Component', () => { expect(renderedHTML).toMatchSnapshot(); }); + // Multiple text elements (Shadow DOM) + test('Multiple elements w/ Shadow DOM render', async function() { + const renderedTextHTML = await page.evaluate(() => { + const wrapper = document.createElement('div'); + const text1 = document.createElement('bolt-text'); + const text2 = document.createElement('bolt-text'); + + text1.textContent = `Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.`; + text2.textContent = `Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.`; + + wrapper.appendChild(text1); + wrapper.appendChild(text2); + document.body.appendChild(wrapper); + + return wrapper.outerHTML; + }); + + const renderedHTML = await html(renderedTextHTML); + const image = await page.screenshot(); + + expect(image).toMatchImageSnapshot({ + failureThreshold: '0.03', + failureThresholdType: 'percent', + }); + + expect(renderedHTML).toMatchSnapshot(); + }); + // Code text (Shadow DOM) test('Code text using w/ Shadow DOM renders', async function() { const renderedTextHTML = await page.evaluate(() => { diff --git a/packages/components/bolt-text/package.json b/packages/components/bolt-text/package.json index 7ee267f31f..72ede4addf 100644 --- a/packages/components/bolt-text/package.json +++ b/packages/components/bolt-text/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/components-text", "description": "Text Component in Bolt", - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "license": "MIT", "repository": { @@ -18,8 +18,8 @@ "access": "public" }, "dependencies": { - "@bolt/components-link": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-link": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "schema": "text.schema.yml", "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" diff --git a/packages/components/bolt-text/src/text.scss b/packages/components/bolt-text/src/text.scss index abfd220e49..6d274ea135 100644 --- a/packages/components/bolt-text/src/text.scss +++ b/packages/components/bolt-text/src/text.scss @@ -4,7 +4,8 @@ Text \* ------------------------------------ */ -%bolt-text { +// Attribute selectors for parent bolt-text +bolt-text { @include bolt-margin-bottom(medium); // Default vspacing @include bolt-font-size(medium); // Default font-size display: block; @@ -30,14 +31,33 @@ } } -// Attribute selectors for parent bolt-text -bolt-text { - @extend %bolt-text; -} - // when fully encapsulated in the Shadow DOM :host { - @extend %bolt-text; + @include bolt-margin-bottom(medium); // Default vspacing + @include bolt-font-size(medium); // Default font-size + display: block; +} + +:host([display='inline']) { + display: inline; +} + +:host([display='block']) { + display: block; +} + +// Adding vspacing here so that we can remove vspacing on last-child +:host([headline]), +:host([eyebrow]) { + @include bolt-margin-bottom(xxsmall); +} + +:host([subheadline]) { + @include bolt-margin-bottom(xsmall); +} + +:host(:last-child) { + @include bolt-margin-bottom(0); } $bolt-text-v2--minus-letter-spacing: -0.025rem; diff --git a/packages/components/bolt-tooltip/CHANGELOG.md b/packages/components/bolt-tooltip/CHANGELOG.md index e6729e5f32..e48f07b2ba 100644 --- a/packages/components/bolt-tooltip/CHANGELOG.md +++ b/packages/components/bolt-tooltip/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* globally update max timeout in Jest ([f1e6f95](https://github.com/bolt-design-system/bolt/commit/f1e6f95)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/compare/v2.5.5...v2.5.6) (2019-07-30) **Note:** Version bump only for package @bolt/components-tooltip diff --git a/packages/components/bolt-tooltip/__tests__/tooltip.js b/packages/components/bolt-tooltip/__tests__/tooltip.js index b641aa5514..7b057700c0 100644 --- a/packages/components/bolt-tooltip/__tests__/tooltip.js +++ b/packages/components/bolt-tooltip/__tests__/tooltip.js @@ -9,7 +9,7 @@ const { readYamlFileSync } = require('@bolt/build-tools/utils/yaml'); const { join } = require('path'); const schema = readYamlFileSync(join(__dirname, '../tooltip.schema.yml')); const { direction, noWrap, spacing } = schema.properties; -const timeout = 60000; +const timeout = 120000; describe(' Component', () => { afterAll(async () => { diff --git a/packages/components/bolt-tooltip/package.json b/packages/components/bolt-tooltip/package.json index 23ef7fa545..a07154903b 100644 --- a/packages/components/bolt-tooltip/package.json +++ b/packages/components/bolt-tooltip/package.json @@ -1,7 +1,7 @@ { "name": "@bolt/components-tooltip", "description": "Tooltip Component in Bolt", - "version": "2.5.6", + "version": "2.6.0-beta.1", "homepage": "https://boltdesignsystem.com", "license": "MIT", "repository": { @@ -19,10 +19,10 @@ "access": "public" }, "dependencies": { - "@bolt/components-button": "^2.5.6", - "@bolt/components-icon": "^2.5.6", - "@bolt/components-icons": "^2.5.6", - "@bolt/core": "^2.5.6" + "@bolt/components-button": "^2.6.0-beta.1", + "@bolt/components-icon": "^2.6.0-beta.1", + "@bolt/components-icons": "^2.6.0-beta.1", + "@bolt/core": "^2.6.0-beta.1" }, "gitHead": "d41aa75ae3d195d9d7fb3952eed5e0ae80988133" } diff --git a/packages/components/bolt-trigger/CHANGELOG.md b/packages/components/bolt-trigger/CHANGELOG.md index ead097c877..239e99bcfc 100644 --- a/packages/components/bolt-trigger/CHANGELOG.md +++ b/packages/components/bolt-trigger/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* add 'disabled' attr to trigger component ([5d53cd2](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/commit/5d53cd2)) +* wrong variable name in trigger JS ([bad2ccc](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/commit/bad2ccc)) + + +### Features + +* add 'disabled' state to trigger link, update demo ([a538ac9](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/commit/a538ac9)) +* output `display` instead of `display="true"` for consistency ([aa28e34](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/commit/aa28e34)) + + + + + ## [2.5.6](https://github.com/bolt-design-system/bolt/tree/master/packages/components/bolt-trigger/compare/v2.5.5...v2.5.6) (2019-07-30) diff --git a/packages/components/bolt-trigger/__tests__/__snapshots__/trigger.js.snap b/packages/components/bolt-trigger/__tests__/__snapshots__/trigger.js.snap index bc3671aa07..da98372945 100644 --- a/packages/components/bolt-trigger/__tests__/__snapshots__/trigger.js.snap +++ b/packages/components/bolt-trigger/__tests__/__snapshots__/trigger.js.snap @@ -1,5 +1,30 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`trigger Trigger with "disabled" adds attr to + +`; + +exports[`trigger Trigger with "disabled" does not add attr to 1`] = ` + + + Hello World + + +`; + exports[`trigger Trigger with "no_outline" 1`] = ` { expect(results.html).toMatchSnapshot(); }); + test('Trigger with "disabled" adds attr to \ No newline at end of file diff --git a/packages/testing/testing-utils/__tests__/fixtures/card/card.twig b/packages/testing/testing-utils/__tests__/fixtures/card/card.twig new file mode 100644 index 0000000000..95b21cf33e --- /dev/null +++ b/packages/testing/testing-utils/__tests__/fixtures/card/card.twig @@ -0,0 +1,13 @@ +
+

{{ title }}

+
+ {% include "@x/button.twig" %} +
{% include "@x/button.twig" %}
+ {% include '@x/button/button.twig' %} + {% include '@x/icon/icon.twig' %} + {% include "button.twig" %} + {% include "@x/button.twig" with { + text: "Hi", + } %} +
+
diff --git a/packages/testing/testing-utils/__tests__/test-utils.test.js b/packages/testing/testing-utils/__tests__/test-utils.test.js new file mode 100644 index 0000000000..d8a8b43709 --- /dev/null +++ b/packages/testing/testing-utils/__tests__/test-utils.test.js @@ -0,0 +1,115 @@ +const { join } = require('path'); +const tu = require('../test-utils'); + +const repoRoot = join(__dirname, '../../../..'); + +describe('test-utils', () => { + test('getPkgPathFromName', () => { + const path = tu.getPkgPathFromName('@bolt/components-band'); + expect(path).toBe(join(repoRoot, 'packages/components/bolt-band')); + }); + + test('getPkgDependencies', () => { + const deps = tu.getPkgDependencies('@bolt/components-band'); + const expected = [ + '@bolt/core', + '@bolt/components-grid', + '@bolt/components-background', + '@bolt/components-background-shapes', + ].sort(); + expect(deps.sort()).toEqual(expected); + }); + + test('getPkgDependents', () => { + const dependents = tu.getPkgDependents('@bolt/components-grid'); + expect(dependents).toEqual(['@bolt/components-band']); + }); + + test('getFilesPkgSync', () => { + const pkgName = tu.getFilesPkgSync( + join(repoRoot, 'packages/components/bolt-band/src/band.js'), + ); + expect(pkgName).toEqual('@bolt/components-band'); + }); + + test('getPkgFiles', () => { + const files = tu.getPkgFiles('@bolt/testing-helpers'); + const pkgPath = tu.getPkgPathFromName('@bolt/testing-helpers'); + ['index.js', 'is-connected.js', 'CHANGELOG.md', 'package.json'] + .map(file => join(pkgPath, file)) + .forEach(file => { + expect(files).toContain(file); + }); + }); + + test('getPkgList', () => { + const pkgs = tu.getPkgList(); + expect(pkgs.length).toBeGreaterThan(1); + const [pkg] = pkgs; + expect(pkg).toMatchObject({ + name: expect.any(String), + version: expect.any(String), + location: expect.any(String), + }); + }); + + test.skip('getFilesChanged', () => { + const files = tu.getFilesChanged({ + from: 'v2.4.4', + base: 'v2.4.3', + }); + + const expected = [ + '.boltrc.js', + 'CHANGELOG.md', + 'docs-site/.boltrc.js', + 'docs-site/.incache', + 'docs-site/CHANGELOG.md', + 'docs-site/config/config.yml', + 'docs-site/package.json', + 'lerna.json', + 'package.json', + 'packages/api/CHANGELOG.md', + 'packages/api/package.json', + 'packages/build-tools/CHANGELOG.md', + 'packages/build-tools/package.json', + 'packages/components/bolt-action-blocks/CHANGELOG.md', + 'packages/components/bolt-action-blocks/package.json', + 'packages/components/bolt-action-blocks/src/action-block.twig', + 'packages/core-php/composer.json', + 'packages/core-php/composer.lock', + 'packages/core-php/package.json', + 'packages/core-php/readme.md', + 'packages/core-php/src/TwigExtensions/BoltCore.php', + 'packages/core-php/src/TwigExtensions/BoltCoreCompat.php', + 'packages/core-php/src/TwigExtensions/BoltExtras.php', + 'packages/core-php/src/TwigFunctions.php', + 'packages/core-php/src/Utils.php', + 'packages/drupal-modules/bolt_connect/bolt_connect.info.yml', + 'packages/drupal-modules/bolt_connect/composer.json', + 'packages/twig-renderer/CHANGELOG.md', + 'packages/twig-renderer/SetupTwigRenderer.php', + 'packages/twig-renderer/package.json', + 'yarn.lock', + ].map(x => join(repoRoot, x)); + + expect(files.sort()).toStrictEqual(expected.sort()); + }); + + test.skip('getFilesChanged', () => { + const pkgs = tu + .getPkgsChanged({ + from: 'v2.4.4', + base: 'v2.4.3', + }) + .map(p => p.name); + + const expected = [ + '@bolt/components-action-blocks', + '@bolt/core-php', + '@bolt/twig-renderer', + ]; + + expect(pkgs.sort()).toStrictEqual(expected.sort()); + }); +}); diff --git a/packages/testing/testing-utils/cli/list-pkg-paths-changed.js b/packages/testing/testing-utils/cli/list-pkg-paths-changed.js new file mode 100755 index 0000000000..d9c94134ba --- /dev/null +++ b/packages/testing/testing-utils/cli/list-pkg-paths-changed.js @@ -0,0 +1,76 @@ +#! /usr/bin/env node +const execa = require('execa'); +const { getPkgsChanged } = require('../test-utils'); + +let base = 'master'; + +if (process.env.TRAVIS === 'true') { + const { + // for push builds, or builds not triggered by a pull request, this is the name of the branch. + // for builds triggered by a pull request this is the name of the branch targeted by the pull request. + // for builds triggered by a tag, this is the same as the name of the tag(TRAVIS_TAG). + TRAVIS_BRANCH, + // The pull request number if the current job is a pull request, “false” if it’s not a pull request. + TRAVIS_PULL_REQUEST, + } = process.env; + + const isPr = TRAVIS_PULL_REQUEST !== 'false'; + if (isPr) { + base = TRAVIS_BRANCH; + } + // https://github.com/travis-ci/travis-ci/issues/6069#issuecomment-319710346 + [ + { + label: 'Setting git config', + cmd: + 'git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"', + }, + { + label: 'Git Fetch', + cmd: 'git fetch', + }, + ].forEach(step => { + process.stderr.write(`${step.label}\n`); + const results = execa.shellSync(step.cmd); + if (results.failed) { + process.stderr.write(`Uh oh, this Travis git step failed:\n`); + process.stderr.write(`${results.stderr}\n`); + process.stderr.write(`${results.stdout}\n`); + process.exit(1); + return; + } + process.stderr.write('Ran OK\n'); + }); +} + +const pkgs = getPkgsChanged({ from: 'HEAD', base: `origin/${base}` }); + +// This provides a regex for test files to the `jest` cli +// https://jestjs.io/docs/en/cli#jest-regexfortestfiles +// Example: `jest "pkgs/button|pkgs/card"` will only run tests found in the directories `pkgs/button` and `pkgs/card` +// The function used above gathers info about which packages changed. +// This file is to be used with `jest`, like so: +// `jest "$(bolt-list-pkg-paths-changed)"` +// use `stderr` to communicate to user, this will not be passed to jest +// use `stdout` to provide a command line argument to `jest`, this will not be seen by user + +// account for situations where no pkgs have recently changed +if (pkgs.length >= 1) { + process.stderr.write(`Comparing this commit "HEAD" to base of "${base}":\n`); + process.stderr.write( + `These packages were found to have had recent changes: + ${pkgs.map(pkg => pkg.name).join('\n')} + + Filtering tests to only run on these packages.\n`, + ); + + pkgs.forEach(pkg => { + process.stderr.write(`- ${pkg.name} : ${pkg.relPath} \n`); + }); + + const filteredList = pkgs.map(pkg => pkg.relPath).join('|'); + process.stdout.write(filteredList || './fake-test-path'); // dummy path to Jest so we can exit early +} else { + process.stderr.write(`No packages have recently changed! Exiting early...`); + process.stdout.write('./fake-test-path'); // dummy path to Jest so we can exit early +} diff --git a/packages/testing/testing-utils/dependency-map.js b/packages/testing/testing-utils/dependency-map.js new file mode 100644 index 0000000000..927e195215 --- /dev/null +++ b/packages/testing/testing-utils/dependency-map.js @@ -0,0 +1,147 @@ +const globby = require('globby'); +const findPkg = require('find-pkg'); +const { readFile, readJSON, readJSONSync, existsSync } = require('fs-extra'); +const { join, dirname } = require('path'); + +const repoRoot = join(__dirname, '../../..'); + +const twigNamespacesManifestPath = join( + repoRoot, + 'www/build/data/twig-namespaces.bolt.json', +); +if (!existsSync(twigNamespacesManifestPath)) { + console.log( + `Please do a build first, need to get this file: ${twigNamespacesManifestPath}`, + ); + process.exit(1); +} + +const fullConfigPath = join(repoRoot, 'www/build/data/config.bolt.json'); +if (!existsSync(fullConfigPath)) { + console.log( + `Please do a build first, need to get this file: ${fullConfigPath}`, + ); + process.exit(1); +} + +/** + * @typedef {Object} TwigNamespace + * @prop {boolean} recursive + * @prop {string[]} paths + */ + +/** @type {{ [key: string]: TwigNamespace }} */ +const twigNamespaces = readJSONSync(twigNamespacesManifestPath); +const { configFileUsed } = readJSONSync(fullConfigPath); +const twigNamespaceRoot = dirname(configFileUsed); + +/** + * @param {string} templateName i.e. `@bolt/button.twig` + * @returns {Promise} file path to template file + */ +async function getTwigFilePath(templateName) { + if (!templateName.startsWith('@')) { + throw new Error( + `This function only resolves Twig files using namespaces (i.e. starts with "@" or "@bolt") and instead this (probably a file path) was passed in: ${templateName}`, + ); + } + let [namespace, ...paths] = templateName.split('/'); + namespace = namespace.replace('@', ''); + const relPath = paths.join('/'); + const namespaceConfig = twigNamespaces[namespace]; + if (!namespaceConfig) { + throw new Error( + `No Twig Namespace registered for "${namespace}". Looking for "${templateName}".`, + ); + } + + const globPatterns = namespaceConfig.paths.map(path => { + const suffix = namespaceConfig.recursive ? join('**', relPath) : relPath; + return join(twigNamespaceRoot, path, suffix); + }); + + const files = await globby(globPatterns); + + if (files.length > 1) { + throw new Error( + `More than 1 possible Twig file found when looking for "${templateName}".`, + ); + } + + if (files.length === 0) { + throw new Error(`No Twig files found when looking for "${templateName}".`); + } + + return files[0]; +} + +/** + * @param {string} twigString - Twig code as a string to parse + * @param {Object} [opt] + * @param {boolean} [opt.unique=true] + * @returns {string[]} list of other Twig files used in it via `include`, `embed`, or `extend`. i.e. `['@bolt/button.twig']` + * @see {findTwigFilesUsedInFile} + */ +function findTwigFilesUsedInString(twigString, { unique = true } = {}) { + /* eslint-disable prettier/prettier */ + const twigRegex = new RegExp( + "(?<=" + // begin lookahead assertion; these patterns must appear before and will not be included in result + "(include|extends|embed) " + // any of these words and then a space + "[\"|']" + // either `"` or `'` + ")" + // end lookahead assertion + "(.*\.twig)" // this will be captured as result. any character `.` infinite times `*` followed by a literal period `\.` and then `twig` + , 'g'); // Regex flags - `g`: global + /* eslint-enable prettier/prettier */ + + let results = twigString.match(twigRegex); + // if nothing found, results `null` and we want to consistently return same types, in this case, an array + results = results || []; + if (unique) { + results = [...new Set(results)]; + } + return ( + results + // don't include any Yeoman generator files + .filter(r => !r.includes('<%=')) + // don't include any dynamic file includes + .filter(r => !r.includes('~')) + ); +} + +/** + * @param {string} twigFilePath i.e. `path/to/file.twig` + * @param {Object} [opt] + * @param {boolean} [opt.unique=true] + * @returns {Promise} list of other Twig files used in it via `include`, `embed`, or `extend`. i.e. `['@bolt/button.twig']` + * @see {findTwigFilesUsedInString} + */ +async function findTwigFilesUsedInFile(twigFilePath, { unique = true } = {}) { + const twigString = await readFile(twigFilePath, { + encoding: 'utf8', + }); + + return findTwigFilesUsedInString(twigString, { unique }); +} + +/** + * Get a package's name from a path to any file in the package + * @param {string} file + * @return {Promise} name of package, i.e. '@bolt/components-band' + */ +async function getFilesPkg(file) { + const pkgPath = await findPkg(dirname(file)); + let pkg = await readJSON(pkgPath); + // grab parent package of package.json that are used by Yeoman `generator-*`s + if (pkg.name.includes('<%=')) { + const pkgPath2 = findPkg(dirname(join(pkgPath, '..'))); + pkg = await readJSON(pkgPath2); + } + return pkg ? pkg.name : ''; +} + +module.exports = { + findTwigFilesUsedInFile, + findTwigFilesUsedInString, + getTwigFilePath, + getFilesPkg, +}; diff --git a/packages/testing/testing-utils/index.js b/packages/testing/testing-utils/index.js new file mode 100644 index 0000000000..0408a90db5 --- /dev/null +++ b/packages/testing/testing-utils/index.js @@ -0,0 +1,27 @@ +const { + getPkgPathFromName, + getPkgDependents, + getPkgDependencies, + getPkgList, + getPkgFiles, + getFilesPkgSync, + getFilesChanged, +} = require('./test-utils'); +const { + findTwigFilesUsedInFile, + getFilesPkg, + getTwigFilePath, +} = require('./dependency-map'); + +module.exports = { + getPkgPathFromName, + getPkgDependents, + getPkgDependencies, + getPkgList, + getPkgFiles, + getFilesPkgSync, + getFilesChanged, + findTwigFilesUsedInFile, + getFilesPkg, + getTwigFilePath, +}; diff --git a/packages/testing/testing-utils/package.json b/packages/testing/testing-utils/package.json new file mode 100644 index 0000000000..2a8fc00d03 --- /dev/null +++ b/packages/testing/testing-utils/package.json @@ -0,0 +1,36 @@ +{ + "name": "@bolt/testing-utils", + "version": "2.6.0-beta.1", + "description": "Server side utilities for running tests in the Bolt Design System.", + "main": "index.js", + "bin": { + "bolt-list-pkg-paths-changed": "cli/list-pkg-paths-changed.js" + }, + "scripts": { + "test": "tsc" + }, + "dependencies": { + "find-pkg": "^2.0.0", + "fs-extra": "^8.1.0", + "globby": "^9.2.0" + }, + "keywords": [ + "bolt design system", + "design system", + "testing" + ], + "homepage": "https://boltdesignsystem.com", + "bugs": "https://github.com/bolt-design-system/bolt/issues", + "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/testing-utils", + "license": "MIT", + "publishConfig": { + "access": "public" + }, + "maintainers": [ + { + "name": "Salem Ghoweri", + "email": "me@salemghoweri.com", + "web": "https://github.com/sghoweri" + } + ] +} diff --git a/packages/testing/testing-utils/test-utils.js b/packages/testing/testing-utils/test-utils.js new file mode 100755 index 0000000000..9d08ef4cba --- /dev/null +++ b/packages/testing/testing-utils/test-utils.js @@ -0,0 +1,219 @@ +// IMPORTANT: NO ASYNC +// Only synchronous functions. Tests runners don't take well to waiting, or `await`-ing :) Jest needs to know the name of every test at bootstrap and you can't run any async at beginning (i.e. before a global `beforeAll()` than can be async). CLI tools can miss the `stdout` sometimes if async isn't done totally right. It all makes it way more resiliant to just synchronous. +const execa = require('execa'); +const { join, dirname, relative, parse } = require('path'); +const { readJSONSync } = require('fs-extra'); +const globby = require('globby'); +const findPkg = require('find-pkg'); + +/** + * helper function to get gitSha without needing a GITHUB_TOKEN (for local dev); + * @returns {string} git sha of last commit + */ +const gitSha = execa.sync('git', ['rev-parse', '--short', 'HEAD']).stdout; + +const repoRoot = join(__dirname, '../../..'); +const lernaCli = join(repoRoot, 'node_modules/.bin/lerna'); + +/** + * Run Lerna commands and retrieve structured data + * @param {string} cmd - anything after the `lerna` cli, `--json` gets appended, see `lerna -h` + * @returns {Object | Array} lernaResults + */ +function runLernaCmd(cmd) { + try { + const results = execa.shellSync([lernaCli, cmd, '--json'].join(' '), { + cwd: repoRoot, + }); + return JSON.parse(results.stdout); + } catch (err) { + console.error(err); + process.exit(1); + } +} + +/** + * @typedef {Object} BoltPkg + * @prop {string} name + * @prop {string} version + * @prop {string} location + * @prop {boolean} private + */ + +/** + * Get all Bolt packages known by Lerna + * @param {Object} opt + * @param {boolean} [opt.includePrivatePkgs=false] - include any packages with `"private": true` in their `package.json` + * @returns {BoltPkg[]} - boltPkgs + */ +function getPkgList({ includePrivatePkgs = false } = {}) { + const cmds = ['list']; + if (includePrivatePkgs) cmds.push('--all'); + return runLernaCmd(cmds.join(' ')); +} + +/** + * Get a package's recursive dependencies + * @param {string} pkgName - name of package, i.e. '@bolt/components-band' + * @returns {string[]} list of local packages that are dependencies, recursively + * @see {getPkgDependents} + */ +function getPkgDependencies(pkgName) { + const cmds = [ + 'list', + '--include-filtered-dependencies', + `--scope '${pkgName}'`, + ]; + const pkgs = runLernaCmd(cmds.join(' ')); + return pkgs.filter(p => p.name !== pkgName).map(p => p.name); +} + +/** + * Get a package's recursive dependents + * @param {string} pkgName - name of package, i.e. '@bolt/components-band' + * @returns {string[]} list of local packages that are dependents, recursively + * @see {getPkgDependencies} + */ +function getPkgDependents(pkgName) { + const cmds = [ + 'list', + '--include-filtered-dependents', + `--scope '${pkgName}'`, + ]; + const pkgs = runLernaCmd(cmds.join(' ')); + return pkgs.filter(p => p.name !== pkgName).map(p => p.name); +} + +/** + * Get a packages file path from its name + * @param {string} pkgName - name of package, i.e. '@bolt/components-band' + * @returns {string} absolute path to folder + */ +function getPkgPathFromName(pkgName) { + try { + const pkg = require.resolve(`${pkgName}/package.json`); + return dirname(pkg); + } catch (err) { + console.error(err); + process.exit(1); + } +} + +/** + * Get a list of all files in a package + * @param {string} pkgName - name of package, i.e. `@bolt/components-band` + * @returns {string[]} list of file paths in that package + */ +function getPkgFiles(pkgName) { + const pkgDir = getPkgPathFromName(pkgName); + return globby.sync(join(pkgDir, '**/*.*'), { + gitignore: true, + }); +} + +/** + * Get a package's name from a path to any file in the package + * @param {string} file + * @return {string} name of package, i.e. '@bolt/components-band' + */ +function getFilesPkgSync(file) { + const pkgPath = findPkg.sync(file); + let pkg = readJSONSync(pkgPath); + // grab parent package of package.json that are used by Yeoman `generator-*`s + if (pkg.name.startsWith('<%=')) { + const pkgPath2 = findPkg.sync(join(pkgPath, '..')); + pkg = readJSONSync(pkgPath2); + } + return pkg ? pkg.name : ''; +} + +/** + * @param {Object} opt + * @param {string} [opt.from] - git commit id to compare from (i.e. current PR branch). defaults to current commit id + * @param {string} [opt.base='master'] - git commit id to compare to (i.e. the base branch your PR is pointed to) + * @param {string} [opt.inDir] - directory to filter by + * @return {string[]} list of files changed + */ +function getFilesChanged({ from = 'HEAD', base = 'master', inDir } = {}) { + const cmds = ['git', 'diff', '--name-only', `${base}...${from}`]; + if (inDir) cmds.push(inDir); + try { + const results = execa.shellSync(cmds.join(' '), { + cwd: repoRoot, + }); + const files = results.stdout.split('\n'); + if (!files) return []; + return files.map(file => join(repoRoot, file)); + } catch (err) { + console.error(err); + process.exit(1); + } +} + +/** + * @param {Object} opt + * @param {string} [opt.from] - git commit id to compare from (i.e. current PR branch). defaults to current commit id + * @param {string} [opt.base='master'] - git commit id to compare to (i.e. the base branch your PR is pointed to) + * @returns {{ name: string, absPath: string, relPath: string }[]} + */ +function getPkgsChanged({ from = 'HEAD', base = 'master' } = {}) { + const filesChanged = getFilesChanged({ from, base }); + if (!filesChanged) return []; + + const foldersToExclude = ['__tests__', '__snapshots__']; + const filesToExclude = ['CHANGELOG.md', 'package.json']; + const pkgsToExclude = [ + 'bolt', // monorepo + '@bolt/website', + 'generator-bolt', + '@bolt/drupal-twig-extensions', + '@bolt/uikit-workshop', + '@bolt/bolt-starter', + ]; + + // will contain package names and keep them unique + const pkgs = new Set(); + + filesChanged.forEach(filePath => { + const { base: filename, dir } = parse(filePath); + const dirs = dir.split('/'); + // exclude if in foldersToExclude + if (dirs.some(d => foldersToExclude.includes(d))) { + return; + } + + // exclude if in filesToExclude + if (filesToExclude.includes(filename)) { + return; + } + + const pkgName = getFilesPkgSync(filePath); + + // exclude if in pkgsToExclude + if (pkgsToExclude.includes(pkgName)) { + return; + } + pkgs.add(pkgName); + }); + + return [...pkgs].map(name => { + const absPath = getPkgPathFromName(name); + return { + name, + absPath, + relPath: relative(repoRoot, absPath), + }; + }); +} + +module.exports = { + getPkgPathFromName, + getPkgDependents, + getPkgDependencies, + getPkgList, + getPkgFiles, + getFilesPkgSync, + getFilesChanged, + getPkgsChanged, + gitSha, +}; diff --git a/packages/testing/testing-utils/tsconfig.json b/packages/testing/testing-utils/tsconfig.json new file mode 100644 index 0000000000..ecdbfaebb1 --- /dev/null +++ b/packages/testing/testing-utils/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "../../../tsconfig.json", + "include": ["*.js"] +} \ No newline at end of file diff --git a/packages/twig-renderer/CHANGELOG.md b/packages/twig-renderer/CHANGELOG.md index 9cc06ab0a3..519aeced47 100644 --- a/packages/twig-renderer/CHANGELOG.md +++ b/packages/twig-renderer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/twig-renderer/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + +**Note:** Version bump only for package @bolt/twig-renderer + + + + + ## [2.5.2](https://github.com/bolt-design-system/bolt/tree/master/packages/twig-renderer/compare/v2.5.1...v2.5.2) (2019-06-25) **Note:** Version bump only for package @bolt/twig-renderer diff --git a/packages/twig-renderer/package.json b/packages/twig-renderer/package.json index 84c5027e18..518d1ce3bf 100644 --- a/packages/twig-renderer/package.json +++ b/packages/twig-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/twig-renderer", - "version": "2.5.2", + "version": "2.6.0-beta.1", "license": "MIT", "description": "Renders Twig templates using an on-the-fly PHP rendering service.", "main": "twig-renderer.js", @@ -20,7 +20,7 @@ ], "dependencies": { "@basalt/twig-renderer": "^0.12.0", - "@bolt/build-utils": "^2.5.2", + "@bolt/build-utils": "^2.6.0-beta.1", "@bolt/drupal-twig-extensions": "^2.5.1", "sleep-promise": "^8.0.1" }, diff --git a/packages/twig-renderer/twig-renderer.js b/packages/twig-renderer/twig-renderer.js index e738a4485e..644c727b0c 100644 --- a/packages/twig-renderer/twig-renderer.js +++ b/packages/twig-renderer/twig-renderer.js @@ -36,7 +36,7 @@ async function init(keepAlive = false) { debug: true, alterTwigEnv: config.alterTwigEnv, hasExtraInfoInResponses: false, // Will add `info` onto results with a lot of info about Twig Env - maxConcurrency: 50, + maxConcurrency: 30, keepAlive, // only set this to be true when doing in-browser requests to avoid issues with this process not exiting when complete }); state = STATES.READY; @@ -67,7 +67,7 @@ async function prep(keepAlive) { * @param {string} template - Template name (i.e. `@bolt/button.twig`) * @param {Object} data - Optional data to pass to template * @param {Boolean} keepAlive - Optionally tell the Twig renderer service to keep alive to help speed up requests - * @return {Promise<{{ ok: boolean, html: string, message: string}}>} - Results of render + * @return {Promise<{ ok: boolean, html: string, message: string }>} - Results of render */ async function render(template, data = {}, keepAlive = false) { await prep(keepAlive); @@ -80,7 +80,7 @@ async function render(template, data = {}, keepAlive = false) { * @param {string} templateString - String that is a Twig template (i.e. `

{{ text }}

`) * @param {Object} data - Optional data to pass to template * @param {Boolean} keepAlive - Optionally tell the Twig renderer service to keep alive to help speed up requests - * @return {Promise<{{ ok: boolean, html: string, message: string}}>} - Results of render + * @return {Promise<{ ok: boolean, html: string, message: string }>} - Results of render */ async function renderString(templateString, data = {}, keepAlive = false) { await prep(keepAlive); diff --git a/packages/uikit-critical-css-webpack-plugin/CHANGELOG.md b/packages/uikit-critical-css-webpack-plugin/CHANGELOG.md new file mode 100644 index 0000000000..5471bf7fec --- /dev/null +++ b/packages/uikit-critical-css-webpack-plugin/CHANGELOG.md @@ -0,0 +1,13 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix eslint errors ([6d7f6a4](https://github.com/bolt-design-system/bolt/commit/6d7f6a4)) +* retest build after removing Babel-related dependencies hoisted when installing ([733cf0d](https://github.com/bolt-design-system/bolt/commit/733cf0d)) +* temporarily mark as private ([d2d0a7c](https://github.com/bolt-design-system/bolt/commit/d2d0a7c)) diff --git a/packages/uikit-critical-css-webpack-plugin/README.md b/packages/uikit-critical-css-webpack-plugin/README.md new file mode 100644 index 0000000000..5fc71a819f --- /dev/null +++ b/packages/uikit-critical-css-webpack-plugin/README.md @@ -0,0 +1,62 @@ +Critical-Css-Webpack-Plugin +======================= +> webpack plugin for critical css, based on [critical](https://github.com/addyosmani/critical), with publicPath supportive. + + +Installation +---- + +```bash +$ yarn add critical-css-webpack-plugin --dev +``` + +Usage +----- + +**webpack.config.js** + +```javascript +const CriticalCssPlugin = require('critical-css-webpack-plugin') + +... +plugins: [ + new CriticalCssPlugin() +] +... +``` + +Options +------- +> same as [critical options](https://github.com/addyosmani/critical#options) + +**default options** + +```javascript +{ + base: {webpack.output.path}, + src: 'index.html', + dest: 'index.html', + inline: true, + minify: true, + extract: true, + width: 375, + height: 565, + penthouse: { + blockJSRequests: false + } +} +``` + +You pass options to overwrite default value. + +**webpack.config.js** + +```javascript +... +plugins: [ + new CriticalCssPlugin({ + // your options + }) +] +... +``` diff --git a/packages/uikit-critical-css-webpack-plugin/index.js b/packages/uikit-critical-css-webpack-plugin/index.js new file mode 100644 index 0000000000..ff39f38edd --- /dev/null +++ b/packages/uikit-critical-css-webpack-plugin/index.js @@ -0,0 +1,49 @@ +const path = require('path'); +const critical = require('critical'); + +class CriticalCssWebpackPlugin { + constructor(options) { + this.options = Object.assign( + { + src: 'index.html', + target: { + html: 'index.html', + }, + inline: true, + minify: true, + extract: true, + width: 375, + height: 565, + penthouse: { + blockJSRequests: false, + }, + }, + options, + ); + } + + emit(compilation, callback) { + const css = Object.keys(compilation.assets) + .filter(function(filename) { + return /\.css$/.test(filename); + }) + .map(function(filename) { + return path.join(compilation.outputOptions.path, filename); + }); + + critical.generate(Object.assign({ css }, this.options), err => { + callback(err); + }); + } + + apply(compiler) { + compiler.hooks.afterEmit.tapAsync( + 'CriticalCssWebpackPlugin', + (compilation, callback) => { + this.emit(compilation, callback); + }, + ); + } +} + +module.exports = CriticalCssWebpackPlugin; diff --git a/packages/uikit-critical-css-webpack-plugin/package.json b/packages/uikit-critical-css-webpack-plugin/package.json new file mode 100644 index 0000000000..42dfb95a7b --- /dev/null +++ b/packages/uikit-critical-css-webpack-plugin/package.json @@ -0,0 +1,10 @@ +{ + "name": "@bolt/critical-css-webpack-plugin", + "version": "2.6.0-beta.1", + "main": "index.js", + "license": "MIT", + "private": true, + "dependencies": { + "critical": "^2.0.0-19" + } +} diff --git a/packages/uikit-prerender-spa-plugin/CHANGELOG.md b/packages/uikit-prerender-spa-plugin/CHANGELOG.md new file mode 100644 index 0000000000..9b7940b844 --- /dev/null +++ b/packages/uikit-prerender-spa-plugin/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.6.0-beta.1](https://github.com/chrisvfritz/prerender-spa-plugin/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix eslint errors ([6d7f6a4](https://github.com/chrisvfritz/prerender-spa-plugin/commit/6d7f6a4)) +* retest build after removing Babel-related dependencies hoisted when installing ([733cf0d](https://github.com/chrisvfritz/prerender-spa-plugin/commit/733cf0d)) +* temporarily mark as private ([1673619](https://github.com/chrisvfritz/prerender-spa-plugin/commit/1673619)) +* update eslint rules to temporarily ignore new uikit-related packages ([9a2eb46](https://github.com/chrisvfritz/prerender-spa-plugin/commit/9a2eb46)) diff --git a/packages/uikit-prerender-spa-plugin/index.es6.js b/packages/uikit-prerender-spa-plugin/index.es6.js new file mode 100644 index 0000000000..b64633fdd3 --- /dev/null +++ b/packages/uikit-prerender-spa-plugin/index.es6.js @@ -0,0 +1,202 @@ +const path = require('path'); +const Prerenderer = require('@prerenderer/prerenderer'); +const PuppeteerRenderer = require('@bolt/uikit-prerenderer'); +const { minify } = require('html-minifier'); + +function PrerenderSPAPlugin(...args) { + const rendererOptions = {}; // Primarily for backwards-compatibility. + + this._options = {}; + + // Normal args object. + if (args.length === 1) { + this._options = args[0] || {}; + + // Backwards-compatibility with v2 + } else { + console.warn( + "[prerender-spa-plugin] You appear to be using the v2 argument-based configuration options. It's recommended that you migrate to the clearer object-based configuration system.\nCheck the documentation for more information.", + ); + let staticDir, routes; + + args.forEach(arg => { + if (typeof arg === 'string') staticDir = arg; + else if (Array.isArray(arg)) routes = arg; + else if (typeof arg === 'object') this._options = arg; + }); + + staticDir ? (this._options.staticDir = staticDir) : null; + routes ? (this._options.routes = routes) : null; + } + + // Backwards compatiblity with v2. + if (this._options.captureAfterDocumentEvent) { + console.warn( + '[prerender-spa-plugin] captureAfterDocumentEvent has been renamed to renderAfterDocumentEvent and should be moved to the renderer options.', + ); + rendererOptions.renderAfterDocumentEvent = this._options.captureAfterDocumentEvent; + } + + if (this._options.captureAfterElementExists) { + console.warn( + '[prerender-spa-plugin] captureAfterElementExists has been renamed to renderAfterElementExists and should be moved to the renderer options.', + ); + rendererOptions.renderAfterElementExists = this._options.captureAfterElementExists; + } + + if (this._options.captureAfterTime) { + console.warn( + '[prerender-spa-plugin] captureAfterTime has been renamed to renderAfterTime and should be moved to the renderer options.', + ); + rendererOptions.renderAfterTime = this._options.captureAfterTime; + } + + this._options.server = this._options.server || {}; + this._options.renderer = + this._options.renderer || + new PuppeteerRenderer( + Object.assign({}, { headless: true }, rendererOptions), + ); + + if (this._options.postProcessHtml) { + console.warn( + '[prerender-spa-plugin] postProcessHtml should be migrated to postProcess! Consult the documentation for more information.', + ); + } +} + +PrerenderSPAPlugin.prototype.apply = function(compiler) { + const compilerFS = compiler.outputFileSystem; + + // From https://github.com/ahmadnassri/mkdirp-promise/blob/master/lib/index.js + const mkdirp = function(dir, opts) { + return new Promise((resolve, reject) => { + compilerFS.mkdirp(dir, opts, (err, made) => + err === null ? resolve(made) : reject(err), + ); + }); + }; + + const afterEmit = (compilation, done) => { + const PrerendererInstance = new Prerenderer(this._options); + + PrerendererInstance.initialize() + .then(() => { + return PrerendererInstance.renderRoutes(this._options.routes || []); + }) + // Backwards-compatibility with v2 (postprocessHTML should be migrated to postProcess) + .then(renderedRoutes => + this._options.postProcessHtml + ? renderedRoutes.map(renderedRoute => { + const processed = this._options.postProcessHtml(renderedRoute); + if (typeof processed === 'string') renderedRoute.html = processed; + else renderedRoute = processed; + + return renderedRoute; + }) + : renderedRoutes, + ) + // Run postProcess hooks. + .then(renderedRoutes => + this._options.postProcess + ? Promise.all( + renderedRoutes.map(renderedRoute => + this._options.postProcess(renderedRoute), + ), + ) + : renderedRoutes, + ) + // Check to ensure postProcess hooks returned the renderedRoute object properly. + .then(renderedRoutes => { + const isValid = renderedRoutes.every(r => typeof r === 'object'); + if (!isValid) { + throw new Error( + '[prerender-spa-plugin] Rendered routes are empty, did you forget to return the `context` object in postProcess?', + ); + } + + return renderedRoutes; + }) + // Minify html files if specified in config. + .then(renderedRoutes => { + if (!this._options.minify) return renderedRoutes; + + renderedRoutes.forEach(route => { + route.html = minify(route.html, this._options.minify); + }); + + return renderedRoutes; + }) + // Calculate outputPath if it hasn't been set already. + .then(renderedRoutes => { + renderedRoutes.forEach(rendered => { + if (!rendered.outputPath) { + rendered.outputPath = path.join( + this._options.outputDir || this._options.staticDir, + rendered.route, + 'index.html', + ); + } + }); + + return renderedRoutes; + }) + // Create dirs and write prerendered files. + .then(processedRoutes => { + const promises = Promise.all( + processedRoutes.map(processedRoute => { + return mkdirp(path.dirname(processedRoute.outputPath)) + .then(() => { + return new Promise((resolve, reject) => { + compilerFS.writeFile( + processedRoute.outputPath, + processedRoute.html.trim(), + err => { + if (err) + // eslint-disable-next-line prefer-promise-reject-errors + reject( + `[prerender-spa-plugin] Unable to write rendered route to file "${processedRoute.outputPath}" \n ${err}.`, + ); + else resolve(); + }, + ); + }); + }) + .catch(err => { + if (typeof err === 'string') { + err = `[prerender-spa-plugin] Unable to create directory ${path.dirname( + processedRoute.outputPath, + )} for route ${processedRoute.route}. \n ${err}`; + } + + throw err; + }); + }), + ); + + return promises; + }) + .then(r => { + PrerendererInstance.destroy(); + done(); + }) + .catch(err => { + PrerendererInstance.destroy(); + const msg = '[prerender-spa-plugin] Unable to prerender all routes!'; + console.error(msg); + compilation.errors.push(new Error(msg)); + done(); + }); + }; + + if (compiler.hooks) { + const plugin = { name: 'PrerenderSPAPlugin' }; + compiler.hooks.afterEmit.tapAsync(plugin, afterEmit); + } else { + compiler.plugin('after-emit', afterEmit); + } +}; + +PrerenderSPAPlugin.PuppeteerRenderer = PuppeteerRenderer; + +module.exports = PrerenderSPAPlugin; diff --git a/packages/uikit-prerender-spa-plugin/index.js b/packages/uikit-prerender-spa-plugin/index.js new file mode 100644 index 0000000000..cb82e0b68d --- /dev/null +++ b/packages/uikit-prerender-spa-plugin/index.js @@ -0,0 +1,140 @@ +const path = require('path'); + +const Prerenderer = require('@prerenderer/prerenderer'); + +const PuppeteerRenderer = require('@bolt/uikit-prerenderer'); + +const { + minify +} = require('html-minifier'); + +function PrerenderSPAPlugin(...args) { + const rendererOptions = {}; // Primarily for backwards-compatibility. + + this._options = {}; // Normal args object. + + if (args.length === 1) { + this._options = args[0] || {}; // Backwards-compatibility with v2 + } else { + console.warn("[prerender-spa-plugin] You appear to be using the v2 argument-based configuration options. It's recommended that you migrate to the clearer object-based configuration system.\nCheck the documentation for more information."); + let staticDir, routes; + args.forEach(arg => { + if (typeof arg === 'string') staticDir = arg;else if (Array.isArray(arg)) routes = arg;else if (typeof arg === 'object') this._options = arg; + }); + staticDir ? this._options.staticDir = staticDir : null; + routes ? this._options.routes = routes : null; + } // Backwards compatiblity with v2. + + + if (this._options.captureAfterDocumentEvent) { + console.warn('[prerender-spa-plugin] captureAfterDocumentEvent has been renamed to renderAfterDocumentEvent and should be moved to the renderer options.'); + rendererOptions.renderAfterDocumentEvent = this._options.captureAfterDocumentEvent; + } + + if (this._options.captureAfterElementExists) { + console.warn('[prerender-spa-plugin] captureAfterElementExists has been renamed to renderAfterElementExists and should be moved to the renderer options.'); + rendererOptions.renderAfterElementExists = this._options.captureAfterElementExists; + } + + if (this._options.captureAfterTime) { + console.warn('[prerender-spa-plugin] captureAfterTime has been renamed to renderAfterTime and should be moved to the renderer options.'); + rendererOptions.renderAfterTime = this._options.captureAfterTime; + } + + this._options.server = this._options.server || {}; + this._options.renderer = this._options.renderer || new PuppeteerRenderer(Object.assign({}, { + headless: true + }, rendererOptions)); + + if (this._options.postProcessHtml) { + console.warn('[prerender-spa-plugin] postProcessHtml should be migrated to postProcess! Consult the documentation for more information.'); + } +} + +PrerenderSPAPlugin.prototype.apply = function (compiler) { + const compilerFS = compiler.outputFileSystem; // From https://github.com/ahmadnassri/mkdirp-promise/blob/master/lib/index.js + + const mkdirp = function (dir, opts) { + return new Promise((resolve, reject) => { + compilerFS.mkdirp(dir, opts, (err, made) => err === null ? resolve(made) : reject(err)); + }); + }; + + const afterEmit = (compilation, done) => { + const PrerendererInstance = new Prerenderer(this._options); + PrerendererInstance.initialize().then(() => { + return PrerendererInstance.renderRoutes(this._options.routes || []); + }) // Backwards-compatibility with v2 (postprocessHTML should be migrated to postProcess) + .then(renderedRoutes => this._options.postProcessHtml ? renderedRoutes.map(renderedRoute => { + const processed = this._options.postProcessHtml(renderedRoute); + + if (typeof processed === 'string') renderedRoute.html = processed;else renderedRoute = processed; + return renderedRoute; + }) : renderedRoutes) // Run postProcess hooks. + .then(renderedRoutes => this._options.postProcess ? Promise.all(renderedRoutes.map(renderedRoute => this._options.postProcess(renderedRoute))) : renderedRoutes) // Check to ensure postProcess hooks returned the renderedRoute object properly. + .then(renderedRoutes => { + const isValid = renderedRoutes.every(r => typeof r === 'object'); + + if (!isValid) { + throw new Error('[prerender-spa-plugin] Rendered routes are empty, did you forget to return the `context` object in postProcess?'); + } + + return renderedRoutes; + }) // Minify html files if specified in config. + .then(renderedRoutes => { + if (!this._options.minify) return renderedRoutes; + renderedRoutes.forEach(route => { + route.html = minify(route.html, this._options.minify); + }); + return renderedRoutes; + }) // Calculate outputPath if it hasn't been set already. + .then(renderedRoutes => { + renderedRoutes.forEach(rendered => { + if (!rendered.outputPath) { + rendered.outputPath = path.join(this._options.outputDir || this._options.staticDir, rendered.route, 'index.html'); + } + }); + return renderedRoutes; + }) // Create dirs and write prerendered files. + .then(processedRoutes => { + const promises = Promise.all(processedRoutes.map(processedRoute => { + return mkdirp(path.dirname(processedRoute.outputPath)).then(() => { + return new Promise((resolve, reject) => { + compilerFS.writeFile(processedRoute.outputPath, processedRoute.html.trim(), err => { + if (err) // eslint-disable-next-line prefer-promise-reject-errors + reject(`[prerender-spa-plugin] Unable to write rendered route to file "${processedRoute.outputPath}" \n ${err}.`);else resolve(); + }); + }); + }).catch(err => { + if (typeof err === 'string') { + err = `[prerender-spa-plugin] Unable to create directory ${path.dirname(processedRoute.outputPath)} for route ${processedRoute.route}. \n ${err}`; + } + + throw err; + }); + })); + return promises; + }).then(r => { + PrerendererInstance.destroy(); + done(); + }).catch(err => { + PrerendererInstance.destroy(); + const msg = '[prerender-spa-plugin] Unable to prerender all routes!'; + console.error(msg); + compilation.errors.push(new Error(msg)); + done(); + }); + }; + + if (compiler.hooks) { + const plugin = { + name: 'PrerenderSPAPlugin' + }; + compiler.hooks.afterEmit.tapAsync(plugin, afterEmit); + } else { + compiler.plugin('after-emit', afterEmit); + } +}; + +PrerenderSPAPlugin.PuppeteerRenderer = PuppeteerRenderer; +module.exports = PrerenderSPAPlugin; diff --git a/packages/uikit-prerender-spa-plugin/package.json b/packages/uikit-prerender-spa-plugin/package.json new file mode 100644 index 0000000000..1d7ffbdda7 --- /dev/null +++ b/packages/uikit-prerender-spa-plugin/package.json @@ -0,0 +1,68 @@ +{ + "name": "@bolt/prerender-spa-plugin", + "version": "2.6.0-beta.1", + "description": "Flexible, framework-agnostic static site generation for sites and SPAs built with webpack.", + "license": "MIT", + "private": true, + "main": "index.js", + "scripts": { + "postinstall": "npm run build", + "build": "babel index.es6.js --out-file index.js", + "prepublishOnly": "npm run build" + }, + "files": [ + "index.es6.js", + "index.js" + ], + "keywords": [ + "prerender", + "spa", + "ssr", + "serverside-rendering" + ], + "author": { + "name": "Chris Fritz", + "email": "chrisvfritz@gmail.com", + "url": "https://twitter.com/chrisvfritz" + }, + "contributors": [ + { + "name": "Salem Ghoweri", + "email": "me@salemghoweri.com", + "url": "https://github.com/sghoweri" + }, + { + "name": "Chris Fritz", + "email": "chrisvfritz@gmail.com", + "url": "https://twitter.com/chrisvfritz" + }, + { + "name": "Drew Lustro", + "url": "https://drewlustro.com/" + }, + { + "name": "Joshua Bemenderfer", + "email": "tribex10@gmail.com", + "url": "https://joshderf.com/" + }, + { + "name": "qkdreyer", + "email": "quentin.dreyer@gmail.com" + } + ], + "repository": "chrisvfritz/prerender-spa-plugin", + "bugs": { + "url": "https://github.com/chrisvfritz/prerender-spa-plugin/issues", + "email": "chrisvfritz@gmail.com" + }, + "dependencies": { + "@babel/cli": "^7.5.0", + "@babel/core": "^7.5.4", + "@bolt/uikit-prerenderer": "^2.6.0-beta.1", + "@prerenderer/prerenderer": "^0.7.2", + "html-minifier": "^4.0.0" + }, + "engines": { + "node": ">=10.0.0" + } +} diff --git a/packages/uikit-prerenderer/CHANGELOG.md b/packages/uikit-prerenderer/CHANGELOG.md new file mode 100644 index 0000000000..6a23a0ab5e --- /dev/null +++ b/packages/uikit-prerenderer/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.6.0-beta.1](https://github.com/Tribex/prerenderer/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix eslint errors ([6d7f6a4](https://github.com/Tribex/prerenderer/commit/6d7f6a4)) +* mark as private for now ([f7eb881](https://github.com/Tribex/prerenderer/commit/f7eb881)) +* retest build after removing Babel-related dependencies hoisted when installing ([733cf0d](https://github.com/Tribex/prerenderer/commit/733cf0d)) +* update eslint rules to temporarily ignore new uikit-related packages ([9a2eb46](https://github.com/Tribex/prerenderer/commit/9a2eb46)) diff --git a/packages/uikit-prerenderer/index.js b/packages/uikit-prerenderer/index.js new file mode 100644 index 0000000000..092b1d8583 --- /dev/null +++ b/packages/uikit-prerenderer/index.js @@ -0,0 +1,146 @@ +const promiseLimit = require('promise-limit'); + +const puppeteer = require('puppeteer-core'); + +const localChrome = require('local-chrome'); + +const waitForRender = function (options) { + options = options || {}; + return new Promise((resolve, reject) => { + // Render when an event fires on the document. + if (options.renderAfterDocumentEvent) { + if (window['__PRERENDER_STATUS'] && window['__PRERENDER_STATUS'].__DOCUMENT_EVENT_RESOLVED) resolve(); + document.addEventListener(options.renderAfterDocumentEvent, () => resolve()); // Render after a certain number of milliseconds. + } else if (options.renderAfterTime) { + setTimeout(() => resolve(), options.renderAfterTime); // Default: Render immediately after page content loads. + } else { + resolve(); + } + }); +}; + +class PuppeteerRenderer { + constructor(rendererOptions) { + this._puppeteer = null; + this._rendererOptions = rendererOptions || {}; + if (this._rendererOptions.maxConcurrentRoutes == null) this._rendererOptions.maxConcurrentRoutes = 0; + + if (this._rendererOptions.inject && !this._rendererOptions.injectProperty) { + this._rendererOptions.injectProperty = '__PRERENDER_INJECTED'; + } + } + + async initialize() { + try { + // Workaround for Linux SUID Sandbox issues. + if (process.platform === 'linux') { + if (!this._rendererOptions.args) this._rendererOptions.args = []; + + if (this._rendererOptions.args.indexOf('--no-sandbox') === -1) { + this._rendererOptions.args.push('--no-sandbox'); + + this._rendererOptions.args.push('--disable-setuid-sandbox'); + } + } // Puppeteer.launch({ + // executablePath: localChrome + // }) + + + if (localChrome) { + this._rendererOptions = Object.assign(this._rendererOptions, { + executablePath: localChrome + }); + } + + this._puppeteer = await puppeteer.launch(this._rendererOptions); // if (this._rendererOptions.useLocalChrome) { + // } + } catch (e) { + console.error(e); + console.error('[Prerenderer - PuppeteerRenderer] Unable to start Puppeteer'); // Re-throw the error so it can be handled further up the chain. Good idea or not? + + throw e; + } + + return this._puppeteer; + } + + async handleRequestInterception(page, baseURL) { + await page.setRequestInterception(true); + page.on('request', req => { + // Skip third party requests if needed. + if (this._rendererOptions.skipThirdPartyRequests) { + if (!req.url().startsWith(baseURL)) { + req.abort(); + return; + } + } + + req.continue(); + }); + } + + async renderRoutes(routes, Prerenderer) { + const rootOptions = Prerenderer.getOptions(); + const options = this._rendererOptions; + const limiter = promiseLimit(this._rendererOptions.maxConcurrentRoutes); + const pagePromises = Promise.all(routes.map((route, index) => limiter(async () => { + const page = await this._puppeteer.newPage(); + + if (options.consoleHandler) { + page.on('console', message => options.consoleHandler(route, message)); + } + + if (options.inject) { + await page.evaluateOnNewDocument(`(function () { window['${options.injectProperty}'] = ${JSON.stringify(options.inject)}; })();`); + } + + const baseURL = `http://localhost:${rootOptions.server.port}`; // Allow setting viewport widths and such. + + if (options.viewport) await page.setViewport(options.viewport); + await this.handleRequestInterception(page, baseURL); // Hack just in-case the document event fires before our main listener is added. + + if (options.renderAfterDocumentEvent) { + page.evaluateOnNewDocument(function (options) { + window['__PRERENDER_STATUS'] = {}; + document.addEventListener(options.renderAfterDocumentEvent, () => { + window['__PRERENDER_STATUS'].__DOCUMENT_EVENT_RESOLVED = true; + }); + }, this._rendererOptions); + } + + const navigationOptions = options.navigationOptions ? { + waituntil: 'networkidle0', + ...options.navigationOptions + } : { + waituntil: 'networkidle0' + }; + await page.goto(`${baseURL}${route}`, navigationOptions); // Wait for some specific element exists + + const { + renderAfterElementExists + } = this._rendererOptions; + + if (renderAfterElementExists && typeof renderAfterElementExists === 'string') { + await page.waitForSelector(renderAfterElementExists); + } // Once this completes, it's safe to capture the page contents. + + + await page.evaluate(waitForRender, this._rendererOptions); + const result = { + originalRoute: route, + route: await page.evaluate('window.location.pathname'), + html: await page.content() + }; + await page.close(); + return result; + }))); + return pagePromises; + } + + destroy() { + this._puppeteer.close(); + } + +} + +module.exports = PuppeteerRenderer; diff --git a/packages/uikit-prerenderer/package.json b/packages/uikit-prerenderer/package.json new file mode 100644 index 0000000000..487a4488a5 --- /dev/null +++ b/packages/uikit-prerenderer/package.json @@ -0,0 +1,55 @@ +{ + "name": "@bolt/uikit-prerenderer", + "version": "2.6.0-beta.1", + "description": "A renderer for @prerenderer/prerenderer that uses puppeteer to prerender the Pattern Lab UIKit.", + "license": "MIT", + "main": "index.js", + "private": true, + "scripts": { + "postinstall": "npm run build", + "preinstall": "export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1", + "build": "babel renderer.mjs --out-file index.js", + "prepublishOnly": "npm run build" + }, + "files": [ + "es6/*", + "es5-autogenerated/*" + ], + "keywords": [ + "prerender", + "prerenderer", + "spa", + "ssr", + "serverside-rendering", + "puppeteer", + "google-chrome", + "headless-chrome" + ], + "author": { + "name": "Joshua Bemenderfer", + "email": "tribex10@gmail.com", + "url": "https://joshderf.com/" + }, + "contributors": [ + { + "name": "Salem Ghoweri", + "email": "me@salemghoweri.com", + "url": "https://github.com/sghoweri" + } + ], + "repository": "Tribex/prerenderer", + "bugs": { + "url": "https://github.com/Tribex/prerenderer/issues", + "email": "tribex10@gmail.com" + }, + "dependencies": { + "@babel/cli": "^7.5.0", + "@babel/core": "^7.5.4", + "local-chrome": "^0.1.0", + "promise-limit": "^2.7.0", + "puppeteer-core": "^1.18.1" + }, + "engines": { + "node": ">=10.0.0" + } +} diff --git a/packages/uikit-prerenderer/renderer.mjs b/packages/uikit-prerenderer/renderer.mjs new file mode 100644 index 0000000000..2648290dba --- /dev/null +++ b/packages/uikit-prerenderer/renderer.mjs @@ -0,0 +1,178 @@ +const promiseLimit = require('promise-limit'); +const puppeteer = require('puppeteer-core'); +const localChrome = require('local-chrome'); + +const waitForRender = function(options) { + options = options || {}; + + return new Promise((resolve, reject) => { + // Render when an event fires on the document. + if (options.renderAfterDocumentEvent) { + if ( + window['__PRERENDER_STATUS'] && + window['__PRERENDER_STATUS'].__DOCUMENT_EVENT_RESOLVED + ) + resolve(); + document.addEventListener(options.renderAfterDocumentEvent, () => + resolve(), + ); + + // Render after a certain number of milliseconds. + } else if (options.renderAfterTime) { + setTimeout(() => resolve(), options.renderAfterTime); + + // Default: Render immediately after page content loads. + } else { + resolve(); + } + }); +}; + +class PuppeteerRenderer { + constructor(rendererOptions) { + this._puppeteer = null; + this._rendererOptions = rendererOptions || {}; + + if (this._rendererOptions.maxConcurrentRoutes == null) + this._rendererOptions.maxConcurrentRoutes = 0; + + if (this._rendererOptions.inject && !this._rendererOptions.injectProperty) { + this._rendererOptions.injectProperty = '__PRERENDER_INJECTED'; + } + } + + async initialize() { + try { + // Workaround for Linux SUID Sandbox issues. + if (process.platform === 'linux') { + if (!this._rendererOptions.args) this._rendererOptions.args = []; + + if (this._rendererOptions.args.indexOf('--no-sandbox') === -1) { + this._rendererOptions.args.push('--no-sandbox'); + this._rendererOptions.args.push('--disable-setuid-sandbox'); + } + } + + // Puppeteer.launch({ + // executablePath: localChrome + // }) + if (localChrome) { + this._rendererOptions = Object.assign(this._rendererOptions, { + executablePath: localChrome, + }); + } + + this._puppeteer = await puppeteer.launch(this._rendererOptions); + + // if (this._rendererOptions.useLocalChrome) { + // } + } catch (e) { + console.error(e); + console.error( + '[Prerenderer - PuppeteerRenderer] Unable to start Puppeteer', + ); + // Re-throw the error so it can be handled further up the chain. Good idea or not? + throw e; + } + + return this._puppeteer; + } + + async handleRequestInterception(page, baseURL) { + await page.setRequestInterception(true); + + page.on('request', req => { + // Skip third party requests if needed. + if (this._rendererOptions.skipThirdPartyRequests) { + if (!req.url().startsWith(baseURL)) { + req.abort(); + return; + } + } + + req.continue(); + }); + } + + async renderRoutes(routes, Prerenderer) { + const rootOptions = Prerenderer.getOptions(); + const options = this._rendererOptions; + + const limiter = promiseLimit(this._rendererOptions.maxConcurrentRoutes); + + const pagePromises = Promise.all( + routes.map((route, index) => + limiter(async () => { + const page = await this._puppeteer.newPage(); + + if (options.consoleHandler) { + page.on('console', message => + options.consoleHandler(route, message), + ); + } + + if (options.inject) { + await page.evaluateOnNewDocument( + `(function () { window['${ + options.injectProperty + }'] = ${JSON.stringify(options.inject)}; })();`, + ); + } + + const baseURL = `http://localhost:${rootOptions.server.port}`; + + // Allow setting viewport widths and such. + if (options.viewport) await page.setViewport(options.viewport); + + await this.handleRequestInterception(page, baseURL); + + // Hack just in-case the document event fires before our main listener is added. + if (options.renderAfterDocumentEvent) { + page.evaluateOnNewDocument(function(options) { + window['__PRERENDER_STATUS'] = {}; + document.addEventListener( + options.renderAfterDocumentEvent, + () => { + window['__PRERENDER_STATUS'].__DOCUMENT_EVENT_RESOLVED = true; + }, + ); + }, this._rendererOptions); + } + + const navigationOptions = options.navigationOptions + ? { waituntil: 'networkidle0', ...options.navigationOptions } + : { waituntil: 'networkidle0' }; + await page.goto(`${baseURL}${route}`, navigationOptions); + + // Wait for some specific element exists + const { renderAfterElementExists } = this._rendererOptions; + if ( + renderAfterElementExists && + typeof renderAfterElementExists === 'string' + ) { + await page.waitForSelector(renderAfterElementExists); + } + // Once this completes, it's safe to capture the page contents. + await page.evaluate(waitForRender, this._rendererOptions); + + const result = { + originalRoute: route, + route: await page.evaluate('window.location.pathname'), + html: await page.content(), + }; + + await page.close(); + return result; + }), + ), + ); + + return pagePromises; + } + + destroy() { + this._puppeteer.close(); + } +} + +module.exports = PuppeteerRenderer; diff --git a/packages/uikit-workshop/CHANGELOG.md b/packages/uikit-workshop/CHANGELOG.md index 251da939d5..197210a7aa 100644 --- a/packages/uikit-workshop/CHANGELOG.md +++ b/packages/uikit-workshop/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-beta.1](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/compare/v2.5.6...v2.6.0-beta.1) (2019-08-09) + + +### Bug Fixes + +* fix nav scrollbar in IE 11 + fix dependency-related JS error getting thrown in IE 11 ([e777ca2](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/commit/e777ca2)) +* immediately load up the pl-search component vs defer loading ([3a49603](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/commit/3a49603)) +* major cross browser fixes + polyfill updates ([50b4214](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/commit/50b4214)) +* retest build after removing Babel-related dependencies hoisted when installing ([733cf0d](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/commit/733cf0d)) +* update deps ([7fedea2](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/commit/7fedea2)) + + + + + ## [2.5.1](https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop/compare/v2.5.0...v2.5.1) (2019-06-21) **Note:** Version bump only for package @bolt/uikit-workshop diff --git a/packages/uikit-workshop/package.json b/packages/uikit-workshop/package.json index bfabe6395f..bedc36d9da 100755 --- a/packages/uikit-workshop/package.json +++ b/packages/uikit-workshop/package.json @@ -1,6 +1,6 @@ { "name": "@bolt/uikit-workshop", - "version": "2.5.1", + "version": "2.6.0-beta.1", "description": "Next-gen Pattern Lab UI used by the Bolt Design System. Pattern Lab PHP and Pattern Lab Node-friendly!", "keywords": [ "bolt design system", @@ -13,6 +13,7 @@ "repository": "https://github.com/bolt-design-system/bolt/tree/master/packages/uikit-workshop", "license": "MIT", "scripts": { + "preinstall": "export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1", "build": "webpack-cli --config webpack.config.js --display=minimal", "test": "npm run build -- --bail", "watch": "webpack-cli --config webpack.config.js --progress --watch" @@ -23,83 +24,87 @@ "> 0.25%" ], "dependencies": { - "@babel/core": "^7.4.5", - "@babel/plugin-proposal-class-properties": "^7.4.4", + "@babel/core": "^7.5.4", + "@babel/plugin-proposal-class-properties": "^7.5.0", "@babel/plugin-proposal-decorators": "^7.4.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-jsx": "^7.2.0", "@babel/plugin-transform-react-jsx": "^7.3.0", - "@babel/plugin-transform-runtime": "^7.4.4", - "@babel/preset-env": "^7.4.5", + "@babel/plugin-transform-runtime": "^7.5.0", + "@babel/preset-env": "^7.5.4", + "@bolt/critical-css-webpack-plugin": "^2.6.0-beta.1", + "@bolt/uikit-prerenderer": "^2.6.0-beta.1", "@moonandyou/chrome-path": "^0.2.1", "@reach/visually-hidden": "^0.1.4", "@skatejs/renderer-preact": "^0.3.3", - "@svgr/webpack": "^4.3.0", + "@svgr/webpack": "^4.3.1", "@webcomponents/custom-elements": "^1.2.4", "@webcomponents/shadydom": "^1.6.0", "@webcomponents/template": "^1.4.0", - "autoprefixer": "^9.6.0", + "autoprefixer": "^9.6.1", "babel-loader": "^8.0.6", "classnames": "^2.2.6", "clean-css-loader": "^2.0.0", - "clean-webpack-plugin": "^0.1.19", + "clean-webpack-plugin": "0.1.19", "clipboard": "^2.0.4", - "copy-webpack-plugin": "^4.5.2", - "core-js": "^3.1.3", + "copy-webpack-plugin": "^5.0.3", + "core-js": "^3.1.4", "cosmiconfig": "^5.2.1", - "critical": "^1.3.4", - "critical-css-webpack-plugin": "^0.2.0", - "css-loader": "^2.1.1", - "deepmerge": "^3.2.0", + "critical": "2.0.0-19", + "css-loader": "^3.0.0", + "deepmerge": "^4.0.0", "document-register-element": "^1.13.2", - "element-closest": "^3.0.1", - "es6-promise": "^4.2.6", + "element-closest": "2.0.2", + "es6-promise": "^4.2.8", "fg-loadcss": "^2.1.0", "fg-loadjs": "^1.1.0", - "fuse.js": "^3.4.4", - "get-own-property-symbols": "^0.9.2", + "fuse.js": "^3.4.5", + "get-own-property-symbols": "^0.9.3", "hard-source-webpack-plugin-patch": "^0.13.3", "hogan.js": "^3.0.2", "htm": "^2.1.1", "html-loader": "^0.5.5", "html-webpack-plugin": "github:jantimon/html-webpack-plugin#webpack-4", "iframe-resizer": "^4.1.1", - "lit-html": "^1.1.0", + "lit-html": "^1.1.1", + "local-chrome": "^0.1.0", "mini-css-extract-plugin": "^0.7.0", "mousetrap": "^1.6.3", "no-emit-webpack-plugin": "^2.0.1", "node-sass": "^4.12.0", - "node-sass-selector-importer": "^5.3.1", + "node-sass-selector-importer": "^5.3.2", "penthouse": "^2.2.0", "postcss-loader": "^3.0.0", - "preact": "8.3.1", - "preact-compat": "3.18.4", - "preact-context": "1.1.2", + "preact": "8.4.2", + "preact-compat": "3.19.0", + "preact-context": "1.1.3", "preact-render-to-string": "^4.1.0", - "preload-webpack-plugin": "^3.0.0-beta.3", + "preload-webpack-plugin": "^2.3.0", "prerender-spa-plugin": "^3.4.0", + "pretty": "^2.0.0", "prismjs": "^1.16.0", + "puppeteer-core": "^1.18.1", "pwa-helpers": "^0.9.1", - "raw-loader": "^2.0.0", + "raw-loader": "^3.0.0", "react": "^16.8.6", - "react-animate-height": "^2.0.9", + "react-animate-height": "^2.0.15", "react-autosuggest": "^9.4.3", "react-dom": "^16.8.6", "react-html-parser": "^2.0.2", - "react-popper-tooltip": "2.7.0", - "redux": "^4.0.1", + "react-popper-tooltip": "2.8.3", + "redux": "3.7.2", "redux-thunk": "^2.3.0", "reselect": "^4.0.0", "sass-loader": "^7.1.0", - "scriptjs": "^2.5.8", + "scriptjs": "^2.5.9", "scroll-js": "^2.2.1", "skatejs": "^5.2.4", "style-loader": "^0.23.1", "terser-webpack-plugin": "^1.3.0", "uglifyjs-webpack-plugin": "^2.1.3", - "url-search-params-polyfill": "^6.0.0", - "webpack": "^4.32.2", - "webpack-cli": "^3.3.2", + "url-search-params-polyfill": "^7.0.0", + "webpack": "^4.35.3", + "webpack-cli": "^3.3.5", "whendefined": "^0.0.1", "wolfy87-eventemitter": "^5.2.6", "workbox-build": "^4.3.1", diff --git a/packages/uikit-workshop/src/sass/scss/04-components/_pattern-info.scss b/packages/uikit-workshop/src/sass/scss/04-components/_pattern-info.scss index fe0cdc6af2..221bf64a2d 100644 --- a/packages/uikit-workshop/src/sass/scss/04-components/_pattern-info.scss +++ b/packages/uikit-workshop/src/sass/scss/04-components/_pattern-info.scss @@ -34,7 +34,7 @@ * Pattern info inside modal */ .pl-c-drawer & { - overflow: scroll; + overflow: auto; -webkit-overflow-scrolling: touch; flex-grow: 1; diff --git a/packages/uikit-workshop/src/sass/scss/04-components/_tabs.scss b/packages/uikit-workshop/src/sass/scss/04-components/_tabs.scss index cd1c9ab50f..86380c9466 100644 --- a/packages/uikit-workshop/src/sass/scss/04-components/_tabs.scss +++ b/packages/uikit-workshop/src/sass/scss/04-components/_tabs.scss @@ -74,7 +74,7 @@ flex-shrink: 1; display: flex; flex-basis: auto; - overflow: scroll; + overflow: auto; -webkit-overflow-scrolling: touch; height: 100%; diff --git a/packages/uikit-workshop/src/scripts/components/modal-viewer.js b/packages/uikit-workshop/src/scripts/components/modal-viewer.js index 0e0e8c24e2..27feb58676 100644 --- a/packages/uikit-workshop/src/scripts/components/modal-viewer.js +++ b/packages/uikit-workshop/src/scripts/components/modal-viewer.js @@ -111,7 +111,7 @@ export const modalViewer = { obj, modalViewer.targetOrigin ); - + const obj2 = JSON.stringify({ event: 'patternLab.annotationsHighlightHide', }); @@ -121,7 +121,7 @@ export const modalViewer = { ); } else { modalViewer.iframeElement = document.querySelector('.pl-js-iframe'); - + if (modalViewer.iframeElement.contentWindow){ modalViewer.close(); } else { @@ -153,7 +153,7 @@ export const modalViewer = { ); } else { modalViewer.iframeElement = document.querySelector('.pl-js-iframe'); - + if (modalViewer.iframeElement.contentWindow){ modalViewer.insert(templateRendered, patternPartial, iframePassback); } else { @@ -290,7 +290,7 @@ export const modalViewer = { if (data.event !== undefined && data.event === 'patternLab.pageLoad') { // @todo: refactor to better handle async iframe loading - // extra check to make sure the PL drawer will always render even if the iframe gets async loaded / rendered. + // extra check to make sure the PL drawer will always render even if the iframe gets async loaded / rendered. if (modalViewer.delayCheckingModalViewer){ modalViewer._handleInitialModalViewerState(); } diff --git a/packages/uikit-workshop/src/scripts/components/panels-viewer.js b/packages/uikit-workshop/src/scripts/components/panels-viewer.js index cf503a7a14..d2a1af4572 100755 --- a/packages/uikit-workshop/src/scripts/components/panels-viewer.js +++ b/packages/uikit-workshop/src/scripts/components/panels-viewer.js @@ -5,16 +5,14 @@ import Hogan from 'hogan.js'; // import Prism from 'prismjs'; import Normalizer from 'prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js'; +import pretty from 'pretty'; +import { html, render } from 'lit-html'; +import { unsafeHTML } from 'lit-html/directives/unsafe-html.js'; import { Panels } from './panels'; import { panelsUtil } from './panels-util'; import { urlHandler, Dispatcher } from '../utils'; import './pl-copy-to-clipboard/pl-copy-to-clipboard'; -import prettier from 'prettier/standalone'; -import prettierHtml from 'prettier/parser-html'; -import { html, render } from 'lit-html'; -import { unsafeHTML } from 'lit-html/directives/unsafe-html.js'; import { PrismLanguages as Prism } from './prism-languages'; -const prettierPlugins = [prettierHtml]; const normalizeWhitespace = new Normalizer({ 'remove-trailing': true, @@ -89,6 +87,10 @@ export const panelsViewer = { } // if httpRequestReplace has not been set, use the extension. this is likely for the raw template + if (panel.httpRequestReplace === undefined) { + panel.httpRequestReplace = ''; + } + if (panel.httpRequestReplace === '') { panel.httpRequestReplace = panel.httpRequestReplace + '.' + patternData.patternExtension; @@ -106,12 +108,10 @@ export const panelsViewer = { /* eslint-disable */ e.onload = (function(i, panels, patternData, iframeRequest) { return function() { - if (panels[i].name === "HTML"){ - templateFormatted = prettier.format(this.responseText, { - parser: 'html', - plugins: prettierPlugins, - printWidth: 100, - }); + + // use pretty to format HTML + if (panels[i].name === "HTML") { + templateFormatted = pretty(this.responseText, {ocd: true}); } else { templateFormatted = this.responseText; } @@ -121,14 +121,22 @@ export const panelsViewer = { Prism.languages[panels[i].name.toLowerCase()] || 'markup', // Prism.languages[panels[i].name.toLowerCase()], ); - + const codeTemplate = (code, language) => html`
${unsafeHTML(code)}
`; const result = document.createDocumentFragment(); + const fallBackResult = document.createDocumentFragment(); + render(codeTemplate(templateHighlighted, 'html'), result); - const templateRendered = result.children[0].outerHTML; + render(codeTemplate(templateFormatted, 'html'), fallBackResult); - panels[i].content = templateRendered; + if (result.children){ + panels[i].content = result.children[0].outerHTML; + } else if (fallBackResult.children){ + panels[i].content = fallBackResult.children[0].outerHTML; + } else { + panels[i].content = '
' + templateFormatted.replace(//g, '>') + '
'; + } Dispatcher.trigger('checkPanels', [ panels, diff --git a/packages/uikit-workshop/src/scripts/components/pl-header/pl-header.scss b/packages/uikit-workshop/src/scripts/components/pl-header/pl-header.scss index cde3b9f04d..0c9a259234 100755 --- a/packages/uikit-workshop/src/scripts/components/pl-header/pl-header.scss +++ b/packages/uikit-workshop/src/scripts/components/pl-header/pl-header.scss @@ -7,7 +7,7 @@ pl-header { position: sticky; top: 0; left: 0; - z-index: 4; + z-index: 100; display: flex; /* 2 */ width: 100%; background-color: $pl-color-black; @@ -22,6 +22,7 @@ pl-header { border-right-color: var(--theme-border, $pl-color-gray-20); border-bottom-color: $pl-color-gray-20; border-bottom-color: var(--theme-border, $pl-color-gray-20); + box-shadow: 0 8px 15px 1px rgba(6, 10, 36, 0.1),0 18px 24px 1px rgba(6, 10, 36, 0.12); .pl-c-body--theme-light & { color: $pl-color-black; diff --git a/packages/uikit-workshop/src/scripts/components/pl-layout/pl-layout.js b/packages/uikit-workshop/src/scripts/components/pl-layout/pl-layout.js index 30ad15bc09..436b650771 100755 --- a/packages/uikit-workshop/src/scripts/components/pl-layout/pl-layout.js +++ b/packages/uikit-workshop/src/scripts/components/pl-layout/pl-layout.js @@ -5,7 +5,6 @@ import { html } from 'lit-html'; import { store } from '../../store.js'; // connect to redux import { BaseLitComponent } from '../base-component.js'; -import iFrameResize from 'iframe-resizer/js/iframeResizer.js'; @define class Layout extends BaseLitComponent { @@ -35,16 +34,6 @@ class Layout extends BaseLitComponent { rendered(){ this.iframeElement = this.renderRoot.querySelector('.pl-js-iframe'); - iFrameResize({ - checkOrigin: false, - scrolling: false, - heightCalculationMethod: 'documentElementOffset', // most accurate calculation in testing available options - initCallback() { - console.log('iFrameResize'); - document.querySelector('.pl-js-iframe').classList.add('is-ready'); // toggles class that removes initial min-height styling - }, - }, this.iframeElement); - } _stateChanged(state) { diff --git a/packages/uikit-workshop/src/scripts/components/pl-nav/pl-nav.js b/packages/uikit-workshop/src/scripts/components/pl-nav/pl-nav.js index d84590fab8..9240f90794 100755 --- a/packages/uikit-workshop/src/scripts/components/pl-nav/pl-nav.js +++ b/packages/uikit-workshop/src/scripts/components/pl-nav/pl-nav.js @@ -11,11 +11,11 @@ import 'url-search-params-polyfill'; const SubSubList = (props) => { const { children, category, elem } = props; const reorderedChildren = []; - + const nonViewAllItems = children.filter((item => (item.patternName !== 'View All' && !item.patternName.includes(' Docs')))); // const nonViewAllItems = children.filter((item => (item.patternName !== 'View All'))); const viewAllItems = children.filter((item => item.patternName === 'View All')); - + reorderedChildren.push(...viewAllItems, ...nonViewAllItems); return ( @@ -35,10 +35,10 @@ const SubSubList = (props) => { `} onClick={(e) => elem.handleClick(e, patternSubtypeItem.patternPartial)} data-patternpartial={patternSubtypeItem.patternPartial}> - { - patternSubtypeItem.patternName === 'View All' ? - `${category}` : - patternSubtypeItem.patternName + { + patternSubtypeItem.patternName === 'View All' ? + `${category}` : + patternSubtypeItem.patternName } { patternSubtypeItem.patternState && ( { { - nonViewAllItems.length > 1 && ( + nonViewAllItems.length > 1 && elem.layoutMode && ( { `} onClick={(e) => elem.handleClick(e, patternSubtypeItem.patternPartial)} data-patternpartial={patternSubtypeItem.patternPartial}> - { - patternSubtypeItem.patternName === 'View All' ? - `${category} Overview` : - patternSubtypeItem.patternName + { + patternSubtypeItem.patternName === 'View All' ? + `${category} Overview` : + patternSubtypeItem.patternName } { patternSubtypeItem.patternState && ( {