From 4259031f48c30aba965c879049fa707134c28616 Mon Sep 17 00:00:00 2001 From: Jason Basuil Date: Tue, 7 Dec 2021 17:47:39 -0800 Subject: [PATCH 01/33] allows Tooltip to open on hover (#487) --- spec/__snapshots__/Storyshots.test.js.snap | 46 ++++++++++++++++++++++ src/Tooltip/Tooltip.jsx | 16 ++++++-- src/Tooltip/Tooltip.stories.jsx | 8 ++++ 3 files changed, 67 insertions(+), 3 deletions(-) diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 995634fe..1a8b5ddd 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -19711,6 +19711,52 @@ exports[`Storyshots Design System/Tooltip With Header 1`] = ` `; +exports[`Storyshots Design System/Tooltip With Hover 1`] = ` +
+
+ +
+
+`; + exports[`Storyshots Design System/Tooltip With Html 1`] = `
{ + handleToggleTooltipClick = (event) => { + if (this.props.withHover) return; + event.preventDefault(); this.clickOutsideListener = addClickOutsideListener( event.target.parentNode, @@ -58,6 +60,10 @@ class Tooltip extends Component { this.setState((state) => ({ visible: !state.visible }), this.handleShow); }; + handleToggleTooltipHover = () => { + this.setState((state) => ({ visible: !state.visible }), this.handleShow); + }; + render() { return ( @@ -92,6 +100,7 @@ Tooltip.propTypes = { strategy: PropTypes.string, text: PropTypes.oneOfType([PropTypes.string, PropTypes.node]).isRequired, theme: PropTypes.string, + withHover: PropTypes.bool, onShow: PropTypes.func, }; @@ -101,6 +110,7 @@ Tooltip.defaultProps = { header: undefined, strategy: undefined, theme: 'dark', + withHover: undefined, onShow: undefined, }; diff --git a/src/Tooltip/Tooltip.stories.jsx b/src/Tooltip/Tooltip.stories.jsx index be2cf00d..6be5bfc1 100644 --- a/src/Tooltip/Tooltip.stories.jsx +++ b/src/Tooltip/Tooltip.stories.jsx @@ -70,6 +70,14 @@ export const GrayIcon = () => ( /> ); +export const WithHover = () => ( + +); + const trackingEvent = { event: 'test tracking event', eventData: { userId: 1 }, From 01593c3c7e03d0fc3338850a887a4062411cf69b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Dec 2021 17:50:22 -0800 Subject: [PATCH 02/33] Prepare hotfix 1.24.1 (#492) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5b33655d..48564318 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.24.0", + "version": "1.24.1", "dependencies": { "react-router-dom": "^5.2.0", "react-select": "^3.0.8", From fb499964f6a28369748bb76b9bcf352a2ed5155e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Dec 2021 10:08:05 -0800 Subject: [PATCH 03/33] Merge release/1.25.0 into main branch (#494) * HOTFIX update tooltip primary variant to ux-emerald (#415) * Feature RS-8352 Tabs (#477) Add Tabs and Tabs with react-bootstrap and styled-components * feature/UIDS-442 add Button to DS (#450) Adds react-bootstrap and Button component to the Design System * Bug/UIDS-484 Set node version on nightly visual tests (#485) * chore/UIDS-476 documentation updates (#486) * Chore/ Add Percy snapshots for buttons (#488) * Chore/ Delete old sample file for cypress tests (#482) * Merge hotfix/1.24.1 into develop branch (#493) * allows Tooltip to open on hover (#487) * Prepare release 1.25.0 Co-authored-by: Rachel Roppolo Co-authored-by: Jane Sebastian Co-authored-by: Jason Basuil Co-authored-by: brianCollinsUI <84730553+brianCollinsUI@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/percy-nightly-tests.yml | 6 +- .storybook/main.js | 2 +- .storybook/manager.js | 7 + .storybook/preview.js | 2 - .storybook/user-interviews-theme.js | 9 + README.md | 34 +- cypress/integration/button_spec.js | 31 + cypress/integration/sample_spec.js | 23 - jest.config.js | 4 +- package.json | 18 +- public/ui-design-system.svg | 23 +- spec/__snapshots__/Storyshots.test.js.snap | 1602 +++++++++++++---- spec/spec_helper.js | 2 + src/Alert/Alert.jsx | 11 +- src/Alert/Alert.mdx | 70 +- src/Avatar/Avatar.mdx | 76 +- src/Button/Button.jsx | 40 + src/Button/Button.mdx | 34 +- src/Button/Button.scss | 198 ++ src/Button/Buttons.stories.jsx | 195 ++ src/Button/index.js | 3 + src/Card/Card.mdx | 61 +- src/CheckboxButton/CheckboxButton.mdx | 43 +- .../CheckboxButtonGroup.mdx | 55 +- src/Form/Form.mdx | 57 +- src/Form/Form.stories.jsx | 3 +- src/FormGroup/FormGroup.mdx | 105 +- src/IconCell/IconCell.mdx | 58 +- src/LoadingOverlay/LoadingOverlay.mdx | 45 +- src/Modal/Modal.mdx | 106 +- src/Modal/Modal.stories.jsx | 57 +- src/Pill/Pill.mdx | 80 +- src/Popper/Popper.mdx | 65 +- src/ProfileCell/ProfileCell.mdx | 75 +- src/RadioButton/RadioButton.mdx | 42 +- src/RadioButtonGroup/RadioButtonGroup.mdx | 41 +- src/Table/Table.mdx | 266 +-- src/Table/Table.stories.jsx | 18 +- src/Tabs/Tab/Tab.jsx | 25 + src/Tabs/Tab/index.js | 3 + src/Tabs/Tabs.jsx | 41 + src/Tabs/Tabs.mdx | 59 + src/Tabs/Tabs.stories.jsx | 64 + src/Tabs/Tabs.styles.js | 36 + src/Tabs/Tabs.test.jsx | 109 ++ src/Tabs/__snapshots__/Tabs.test.jsx.snap | 463 +++++ src/Tabs/index.js | 7 + src/Toast/Toast.stories.jsx | 3 +- src/Tooltip/Tooltip.mdx | 87 +- src/Tooltip/Tooltip.scss | 2 +- src/index.js | 8 + stories/Intro.stories.mdx | 18 +- yarn.lock | 607 +++++-- 53 files changed, 4136 insertions(+), 963 deletions(-) create mode 100644 .storybook/manager.js create mode 100644 .storybook/user-interviews-theme.js create mode 100644 cypress/integration/button_spec.js delete mode 100644 cypress/integration/sample_spec.js create mode 100644 spec/spec_helper.js create mode 100644 src/Button/Button.jsx create mode 100644 src/Button/Button.scss create mode 100644 src/Button/Buttons.stories.jsx create mode 100644 src/Button/index.js create mode 100644 src/Tabs/Tab/Tab.jsx create mode 100644 src/Tabs/Tab/index.js create mode 100644 src/Tabs/Tabs.jsx create mode 100644 src/Tabs/Tabs.mdx create mode 100644 src/Tabs/Tabs.stories.jsx create mode 100644 src/Tabs/Tabs.styles.js create mode 100644 src/Tabs/Tabs.test.jsx create mode 100644 src/Tabs/__snapshots__/Tabs.test.jsx.snap create mode 100644 src/Tabs/index.js diff --git a/.github/workflows/percy-nightly-tests.yml b/.github/workflows/percy-nightly-tests.yml index 9fdcdbfd..b833291b 100644 --- a/.github/workflows/percy-nightly-tests.yml +++ b/.github/workflows/percy-nightly-tests.yml @@ -8,8 +8,10 @@ jobs: env: FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} steps: - - name: Checkout - uses: actions/checkout@master + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '14.17.4' - run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ - run: npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN - name: Install diff --git a/.storybook/main.js b/.storybook/main.js index becf0d50..622fbfb5 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -4,7 +4,7 @@ module.exports = { name: '@storybook/addon-docs', options: { mdxBabelOptions: { babelrc: true, configFile: true } }, }, - '@storybook/addon-a11y/register', + '@storybook/addon-a11y', '@storybook/addon-actions/register', '@storybook/addon-knobs/register', '@storybook/addon-links/register', diff --git a/.storybook/manager.js b/.storybook/manager.js new file mode 100644 index 00000000..472bd212 --- /dev/null +++ b/.storybook/manager.js @@ -0,0 +1,7 @@ +import { addons } from '@storybook/addons'; + +import userInterviewsTheme from './user-interviews-theme'; + +addons.setConfig({ + theme: userInterviewsTheme, +}); diff --git a/.storybook/preview.js b/.storybook/preview.js index 44a6accd..57d5f0fb 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -1,6 +1,4 @@ import React from 'react'; import { addDecorator } from "@storybook/react"; -import { withA11y } from "@storybook/addon-a11y"; addDecorator(story =>
{story()}
); -addDecorator(withA11y); diff --git a/.storybook/user-interviews-theme.js b/.storybook/user-interviews-theme.js new file mode 100644 index 00000000..72f9caf1 --- /dev/null +++ b/.storybook/user-interviews-theme.js @@ -0,0 +1,9 @@ +import { create } from '@storybook/theming'; +import UILogo from '../public/ui-design-system.svg'; + +export default create({ + base: 'light', + brandTitle: 'User Interviews', + brandUrl: 'https://github.com/user-interviews/ui-design-system', + brandImage: UILogo, +}); diff --git a/README.md b/README.md index 16f6af4c..e14a4512 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,35 @@ Keeping the design system relevant is important for consistency in our app. Core - For every component, we typically separate each variant out into its own story that gets exported. - Documentation lives in `Component.mdx` which references stories defined in `Component.stories.jsx`. See documentation style here in [Stories with arbitrary MDX](https://github.com/storybookjs/storybook/blob/master/addons/docs/docs/recipes.md#csf-stories-with-arbitrary-mdx). -- See our [Storybook Notion Doc](https://www.notion.so/userinterviews1/Storybook-9a3585db57514ec783e39c78518ad5e6) for examples. +- See our [Storybook Notion Doc](https://www.notion.so/userinterviews1/Storybook-9a3585db57514ec783e39c78518ad5e6) for examples. You can find our current documentation template that we try to follow for all of our `mdx` files in that Notion doc. + +## Who can update documentation? + +- Anyone! We encourage all contributors to the Design System (engineers, designers, product) to add to our documentation. + +## Steps to update any documentation file + +After cloning the repo, obtain a `.npmrc` file from another developer. This file contains authorization tokens for any private +node packages. + +### `git checkout -b chore/UIDS-###-update-some-component-documentation` + +In your terminal, check out a new branch locally for you to make changes. You should have a Github issue to track that corresponds to the branch name. + +### `yarn install` + +Installs all yarn dependencies + +### `yarn storybook` + +Launches the Storybook server.
+ +- In the code editor of your choice, navigate to the Component library found under src `ui-design-system/src` +- Open any `Component.mdx` file (e.g. `Alert.mdx`) that you want to edit. These are markdown files. See [markdown docs](https://docs.github.com/en/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) for additional how-to. +- While Storybook is running, you should be able to view any changes you make to the `mdx` file after saving your changes. +- Push your changes to Github and submit for a review / pull request. + +If you need any help with setup or have questions about the process of writing documentation, feel free to reach out to a developer or a member of the Design System team. # Future additions to this document @@ -80,7 +108,7 @@ In the project directory, you can run: ### `yarn storybook` -Launches the Storybook server.
+Launches the Storybook server. ### `yarn install` @@ -216,4 +244,4 @@ If you are not able to or choose not to use the github actions described above, ```` #### 🤔 Snags -- you'll have to manually refresh your browser tab, after the automatic refresh, to see your expected changes. \ No newline at end of file +- you'll have to manually refresh your browser tab, after the automatic refresh, to see your expected changes. diff --git a/cypress/integration/button_spec.js b/cypress/integration/button_spec.js new file mode 100644 index 00000000..8480a1cc --- /dev/null +++ b/cypress/integration/button_spec.js @@ -0,0 +1,31 @@ +const buttons = [ + { + name: 'Primary', + path: 'design-system-button--primary', + class: '.Button', + match: 'Confirm', + }, + { + name: 'Danger', + path: 'design-system-button--danger', + class: '.Button', + match: 'Delete', + }, + { + name: 'Warning', + path: 'design-system-button--warning', + class: '.Button', + match: 'Edit', + }, +]; + +describe('Button', () => { + buttons.forEach((test) => { + it(test.name, () => { + cy.visit(test.path); + cy.get('#storybook-preview-iframe').iframe().find(test.class).should('contain', test.match); + cy.wait(1000); + cy.percySnapshot(test.path); + }); + }); +}); diff --git a/cypress/integration/sample_spec.js b/cypress/integration/sample_spec.js deleted file mode 100644 index 8b2fa206..00000000 --- a/cypress/integration/sample_spec.js +++ /dev/null @@ -1,23 +0,0 @@ -/* eslint-disable arrow-body-style */ -/* eslint-disable prefer-arrow-callback */ - -describe('Integration test with visual testing', function () { - it('Loads non button version', function () { - cy.visit('http://localhost:9009/?path=/story/design-system-form-elements-form-group--with-trailing-icon'); - - cy.get('#storybook-preview-iframe').iframe().find('.InputLabel').should('contain', 'Form Group with input trailing icon'); - - cy.percySnapshot('Non-button'); - }); - - // TODO: Wait on new props to be merged into develop - // https://github.com/user-interviews/ui-design-system/pull/431 - // it('Loads button version', function () { - // cy.visit('http://localhost:9009/?path=/story/design-system-form-elements-form-group--with-trailing-icon-and-button'); - - // cy.get('#storybook-preview-iframe').iframe().find('.InputLabel') - // .should('contain', 'Form Group with input trailing icon and button'); - - // cy.percySnapshot('Button'); - // }); -}); diff --git a/jest.config.js b/jest.config.js index 9efe87ce..65fcce88 100644 --- a/jest.config.js +++ b/jest.config.js @@ -128,7 +128,9 @@ module.exports = { // setupFiles: [], // A list of paths to modules that run some code to configure or set up the testing framework before each test - // setupFilesAfterEnv: [], + setupFilesAfterEnv: [ + '/spec/spec_helper.js' + ], // A list of paths to snapshot serializer modules Jest should use for snapshot testing // snapshotSerializers: [], diff --git a/package.json b/package.json index 48564318..b2833a68 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.24.1", + "version": "1.25.0", "dependencies": { + "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", "react-select": "^3.0.8", "react-transition-group": "^4.3.0", @@ -43,14 +44,14 @@ "@popperjs/core": "^2.5.3", "bootstrap": "5.0", "classnames": "^2.2.5", - "node-sass": "^4.13.0", "prop-types": "^15.6.1", "react": "^16.12.0", "react-copy-to-clipboard": "^5.0.2", "react-dom": "^16.12.0", "react-modal": "^3.12.1", "react-popper": "^2.2.3", - "react-tracking": "^8.1.0" + "react-tracking": "^8.1.0", + "styled-components": "^5.3.3" }, "devDependencies": { "@babel/cli": "^7.8.4", @@ -78,7 +79,10 @@ "@storybook/addons": "^6.2.1", "@storybook/react": "^6.2.1", "@storybook/storybook-deployer": "^2.8.7", + "@testing-library/jest-dom": "^5.15.0", + "@testing-library/react": "^12.1.2", "@testing-library/react-hooks": "^3.2.1", + "@testing-library/user-event": "^13.5.0", "babel-eslint": "^10.0.3", "babel-loader": "^8.0.6", "babel-plugin-module-resolver": "^4.0.0", @@ -100,7 +104,7 @@ "eslint-plugin-react-hooks": "^2.5.1", "eslint-utils": "^1.4.3", "jest": "^26.6.3", - "node-sass": "4.13.1", + "node-sass": "^4.14.1", "nodemon": "^2.0.15", "prop-types": "^15.6.1", "react": "16.14.0", @@ -111,7 +115,11 @@ "react-test-renderer": "^16.12.0", "react-tracking": "8.1.0", "sass-loader": "^8.0.2", - "style-loader": "^1.1.3" + "style-loader": "^1.1.3", + "styled-components": "^5.3.3" + }, + "resolutions": { + "styled-components": "^5" }, "description": "UI Storybook design system", "files": [ diff --git a/public/ui-design-system.svg b/public/ui-design-system.svg index 44981617..978f188f 100644 --- a/public/ui-design-system.svg +++ b/public/ui-design-system.svg @@ -1,5 +1,20 @@ - - - - + + + + + + + + + + + + + + + + + + + diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 1a8b5ddd..e742fa4a 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -1654,6 +1654,792 @@ exports[`Storyshots Design System/Avatar With Image 1`] = `
`; +exports[`Storyshots Design System/Button Danger 1`] = ` +
+ + + + + + + + + + + +
+`; + +exports[`Storyshots Design System/Button Primary 1`] = ` +
+ + + + + + + + + + + +
+`; + +exports[`Storyshots Design System/Button Warning 1`] = ` +
+ + + + + + + + + + + +
+`; + exports[`Storyshots Design System/Card Default 1`] = `
@@ -4306,16 +5096,19 @@ exports[`Storyshots Design System/Modal Default 1`] = ` className="ModalFooter" > @@ -4390,16 +5183,19 @@ exports[`Storyshots Design System/Modal Large Modal 1`] = ` className="ModalFooter" > @@ -4474,16 +5270,19 @@ exports[`Storyshots Design System/Modal Medium Modal 1`] = ` className="ModalFooter" > @@ -4570,13 +5369,16 @@ exports[`Storyshots Design System/Modal Transactional Modal 1`] = ` className="ModalFooter" > @@ -4760,16 +5565,19 @@ exports[`Storyshots Design System/Modal With Subtitle Modal 1`] = ` className="ModalFooter" > @@ -11994,18 +12802,9 @@ exports[`Storyshots Design System/Table Table With Compact Option 1`] = ` >
`; +exports[`Storyshots Design System/Tabs Controlled 1`] = ` +
+
+ +
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+
+ Tab Content One +
+
+
+
+ Tab Content Two +
+
+
+
+ Tab Content Three +
+
+
+
+ Tab Content Four +
+
+
+
+
+
+`; + +exports[`Storyshots Design System/Tabs Uncontrolled 1`] = ` +
+
+ +
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+
+ Tab Content One +
+
+
+
+ Tab Content Two +
+
+
+
+ Tab Content Three +
+
+
+
+ Tab Content Four +
+
+
+
+
+
+`; + exports[`Storyshots Design System/Toast Manual Dismiss Toast 1`] = `
+ {' '} + + {' '} + + {' '} + + {' '} + + {' '} + + +); + +export const Danger = () => ( + <> + + {' '} + + {' '} + + {' '} + + {' '} + + {' '} + + +); + +export const Warning = () => ( + <> + + {' '} + + {' '} + + {' '} + + {' '} + + {' '} + + +); diff --git a/src/Button/index.js b/src/Button/index.js new file mode 100644 index 00000000..803f51fb --- /dev/null +++ b/src/Button/index.js @@ -0,0 +1,3 @@ +import Button from './Button'; + +export default Button; diff --git a/src/Card/Card.mdx b/src/Card/Card.mdx index c64e4f42..3f5e8a81 100644 --- a/src/Card/Card.mdx +++ b/src/Card/Card.mdx @@ -1,35 +1,70 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Card from './Card'; -# Cards -Cards serve as containers to help group content on a page, and should always be placed over a background color of `$ux-gray-100` to maintain contrast against the page. +# Card - +## + +

+ Cards serve as containers to help group content on a page. +

+ + -
+ + +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props -## Anatomy +## Stories + +### Default + + + + + +## Formatting + +### States + +### Anatomy - **Title:** Brief descriptor of overall card content - **Helper text:** Provided to the right of the header - **Subtitle:** Additional context for card content - **Divider line:** Creates visual separation between title and content +- **Padding:** Cards have a `padding`: 1.5rem by default + +### Sizing + - **Width:** Card width is defined by, informed by the surrounding layout: - `card-width`: 56rem - `card-width-md`: 40rem - `card-width-sm`: 32rem - `card-width-xs`: 15rem -- **Padding:** Cards have a `padding`: 1.5rem by default + +### Alignment + ## Best practices -- Content inside cards should be left-aligned. Deviations are left up to the designer's discretion. -## Stories +### General -### Default +- Content inside cards should generally be left-aligned. Deviations are left up to the designer's discretion. +- Avoid using custom HTML elements for the Title, Subtitle, or Helper text unless explicitly told by a designer. Use designated props for these. - - - \ No newline at end of file +### Behavior + +### Implementation + +### UX Copy diff --git a/src/CheckboxButton/CheckboxButton.mdx b/src/CheckboxButton/CheckboxButton.mdx index 2564515c..f3533816 100644 --- a/src/CheckboxButton/CheckboxButton.mdx +++ b/src/CheckboxButton/CheckboxButton.mdx @@ -2,16 +2,28 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import CheckboxButton from './CheckboxButton'; # CheckboxButton -A checkbox control. + +## + +

+ A checkbox control. It is shown as a square box that is ticked (checked) when activated. +

- +### When to use +- Reason 1 +- Reason 2 -## Anatomy -- States: checked, unchecked, & indeterminate +### When to not use +- Reason 1 +- Reason 2 + +## Props + + ## Stories @@ -30,3 +42,26 @@ A checkbox control. + +## Formatting + +### States + +- checked, unchecked, & indeterminate + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy diff --git a/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx b/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx index ef952805..f453b2a0 100644 --- a/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx +++ b/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx @@ -1,12 +1,33 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -# Checkbox Button Groups +# Checkbox Button Group -## Variants +## + +

+ A FormGroup that utilizes Checkboxes. Supports borders, row/column orientations, and descriptions. +

+ + + + + +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props +- WIP + +## Stories ### Default -Multi-selection button. Can be toggled on/off by clicking. +- Multi-selection button. Can be toggled on/off by clicking. @@ -14,7 +35,7 @@ Multi-selection button. Can be toggled on/off by clicking. ### Bordered -Multi-selection button. Only used in the context of Checkbox FormGroups. +- Multi-selection button. Only used in the context of Checkbox FormGroups. @@ -22,14 +43,32 @@ Multi-selection button. Only used in the context of Checkbox FormGroups. ### Description -Multi-selection button. Includes helper text and/or a description in addition to the default label. +- Multi-selection button. Includes helper text and/or a description in addition to the default label. -## Good practices +## Formatting + +### States + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +- Required checkboxes (e.g. Terms of Service agreement, phone verification) should be unselected by default +- When using Default checkbox buttons, the options should always be stacked vertically (except when used in the context of Inline FormGroups) + +### Behavior -* Required checkboxes (e.g. Terms of Service agreement, phone verification) should be unselected by default +### Implementation -* When using Default checkbox buttons, the options should always be stacked vertically (except when used in the context of Inline FormGroups) +### UX Copy diff --git a/src/Form/Form.mdx b/src/Form/Form.mdx index 0f811da5..1586ec0e 100644 --- a/src/Form/Form.mdx +++ b/src/Form/Form.mdx @@ -1,38 +1,55 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Form from './Form'; # Form -A wrapper component that handles the submission of forms. - - - - - +## -## Anatomy -- +

+ A wrapper component that handles the submission of forms. +

-## Best practices -- + + + -## Guidelines +### When to use +- Reason 1 +- Reason 2 -### General -- +### When to not use +- Reason 1 +- Reason 2 -### Implementation -- +## Props -### Copy -- + ## Stories ### Default - + - +
+ +## Formatting + +### States +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation +### UX Copy diff --git a/src/Form/Form.stories.jsx b/src/Form/Form.stories.jsx index e7a74c50..4260550f 100644 --- a/src/Form/Form.stories.jsx +++ b/src/Form/Form.stories.jsx @@ -1,6 +1,7 @@ import React, { useState } from 'react'; import { action } from '@storybook/addon-actions'; +import Button from 'src/Button'; import Form from 'src/Form'; import FormControlLabel from 'src/FormControlLabel'; import FormGroup from 'src/FormGroup'; @@ -69,6 +70,6 @@ export const Default = () => ( text="second choice" /> - + ); diff --git a/src/FormGroup/FormGroup.mdx b/src/FormGroup/FormGroup.mdx index fb9ce22d..bb5aad73 100644 --- a/src/FormGroup/FormGroup.mdx +++ b/src/FormGroup/FormGroup.mdx @@ -1,78 +1,123 @@ -import { Story, Preview } from '@storybook/addon-docs/blocks'; +import { Story, ArgsTable, Canvas } from '@storybook/addon-docs/blocks'; +import FormGroup from './FormGroup'; -# Input Fields Anatomy +# FormGroup -Input fields let users enter and edit text. These are the variants available in the design system. +## -## Placeholder Text +

+ The FormGroup component wraps a form control with proper spacing, along with support for a label, helper text, and validation state. + Here we use an Input field as the form control. +

+ + + + + +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props + + + +## Stories + +### Default with placeholder - Used to give the user an idea of what sort text they should include here. Does not carry over as default text if no other text is added, so if left blank will produce an error. - + - +
-## Helper Text +### With Helper Text - Information tied to a field that gives suggestions or additional information that might be beneficial to the user - + - + -## Required +### Required - To indicate that a field is required, display "(Required)" next to the label - If some fields are required, indicate all required ones - If most fields are required, indicate optional fields by displaying "(Optional)" next to the label - + - + -## With Tooltip +### With Label Tooltip - Information users will typically only reference once (and then it's learned) or here and there. This information is typically more of a recommendation, and not vital for the user to know, but helpful if they do! - + - + -## Leading Icon +### Leading Icon - + - + -## Trailing Icon +### Trailing Icon - + - + -## Trailing Icon with Button +### Trailing Icon with Button - This has a trailing icon wrapped in a button you can pass an onClick function to. - + - + -## Leading & Trailing Icons +### Leading & Trailing Icons - + - + -## Error +### Error - Keep the text as short as possible; for complex info, provide a link to more information in a new browser tab - + - + + +## Formatting + +### States + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy diff --git a/src/IconCell/IconCell.mdx b/src/IconCell/IconCell.mdx index 3e9db678..2c76ef4d 100644 --- a/src/IconCell/IconCell.mdx +++ b/src/IconCell/IconCell.mdx @@ -1,28 +1,60 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import IconCell from './IconCell'; # Icon Cell -An icon with a colored background used to draw more attention to surrounding elements. - - - +## - +

+ An icon with a colored background used to draw more attention to surrounding elements. +

-## Anatomy + + + -- **Icon: ** an icon from Font Awesome -- **Background: ** a colored background +### When to use +- Reason 1 +- Reason 2 -## Best practices +### When to not use +- Reason 1 +- Reason 2 -- Use Regular Font Awesome icons +## Props + + ## Stories ### Default - + - + + + +## Formatting + +### States + +### Anatomy +- **Icon: ** an icon from FontAwesome +- **Background: ** a colored background + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +- Use Regular Font Awesome icons + +### UX Copy diff --git a/src/LoadingOverlay/LoadingOverlay.mdx b/src/LoadingOverlay/LoadingOverlay.mdx index 2888519e..f2adac9f 100644 --- a/src/LoadingOverlay/LoadingOverlay.mdx +++ b/src/LoadingOverlay/LoadingOverlay.mdx @@ -1,11 +1,48 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import LoadingOverlay from './LoadingOverlay'; # LoadingOverlay -A visual indicator for a loading state. - +## + +

+ A visual indicator for a loading state. +

+ + -
+ + +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props + +## Formatting + +### States + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy + diff --git a/src/Modal/Modal.mdx b/src/Modal/Modal.mdx index 1000dee8..42105c45 100644 --- a/src/Modal/Modal.mdx +++ b/src/Modal/Modal.mdx @@ -1,37 +1,88 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Modal from './Modal'; # Modal -Modals are large UI elements that sit on top of an application's main window—often with a layer of transparency behind them to give users a peek into the main app. -To return to the application's main interface, users must interact with the modal layer. +## + +

+ Modals are large UI elements that sit on top of an application's main window—often with a layer of transparency behind them to give users a peek into the main app. + To return to the application's main interface, users must interact with the modal layer. +

+ +### When to use +- Use when we want to focus the user’s attention +- Use to collect input from user +- Use to show relevant info + +### When to not use +- Reason 1 +- Reason 2 + +## Props -## Anatomy +## Stories + +### Default + +- The most common modal that will be used. + +### Medium Modal + +- For a wider content area. + +### Large Modal + +- For a large content area. + +### Transactional modal + +- The user needs to take an action for the modal to be completed and closed. It contains the cancel and primary action buttons. + +### Warning modal + +- They appear in anticipation of a significant change. Used mainly to inform but not alarm. + +### Danger modal + +- Used for a destructive or irreversible action. The impact of taking this action should be explained clearly to the user. + + +## Formatting + +### States + +### Anatomy - **Header:** Includes the title, helper text and close icon - **Body:** Contains the information and / or interface elements for the user to complete a task - **Footer:** Includes the actions to cancel or complete a task. The buttons variants change depending on the modal’s variant. - **Overlay** Obscures and disables the background content +### Sizing +- `small`, `medium`, `large` + +### Alignment + + ## Best practices +### General + - The button group should be right aligned with the main action to complete the task to the utmost right. - Use sparingly, they can be annoying when used too frequently. They are disruptive -- Avoid cases where we go from one modal to another modal -- Use when we want to focus the user’s attention -- Use to collect input from user -- Use to show relevant info -- Should be initiated by the user: don’t use when user hasn’t triggered the modal -- Should not include more than 2 interactions -## Guidelines +### Behavior -### General +- Avoid cases where we go from one modal to another modal +- Should be initiated by the user: don’t use when user hasn’t triggered the modal ### Implementation +- Should not include more than 2 interactions + `ModalHeader` - Only use the `title` prop to display the title - Always use the `onRequestClose` prop to ensure the close button is available for users in the top right-hand corner @@ -61,39 +112,12 @@ DON'T: `ModalFooter` - Always ensure you are using the proper button - `variant='warning'` should use the primary button and color -- `variant='danger'` should use the outlined danger button and color +- `variant='danger'` should use the danger button and color -### Copy +### UX Copy 1. **Be clear and concise:** Exercise brevity over personality and use precise language. 2. **Use active voice:** Active voice = the subject performs the action denoted by the verb. 3. **Lead with what’s important:** Hit on higher priority information as early on as possible. 4. **Be as helpful as possible:** Include more recommendations, details, etc over personality. 5. **Be consistent:** Be mindful to keep terminology, sentence structure, type casing, etc the same - For additional Copy information [User Interviews Style Guide for Copy](https://docs.google.com/document/d/1cP9svm0tzM_e5JonUMr1HPEgcnlo__S8t0wd3Xi3i5w/view) - -## Stories - -### Default - -- To use in projects as the foundation of any modal. We might need to detach it to customize it. - -### Medium Modal - -- For a wider content area. - -### Large Modal - -- For a large content area. - -### Transactional modal - -- The user needs to take an action for the modal to be completed and closed. It contains the cancel and primary action buttons. - -### Warning modal - -- They appear in anticipation of a significant change. Used mainly to inform but not alarm. - -### Danger modal - -- Used for destructive or irreversible actions. We should explain the impact of proceeding with this action. - diff --git a/src/Modal/Modal.stories.jsx b/src/Modal/Modal.stories.jsx index 405ea858..d9fd44e5 100644 --- a/src/Modal/Modal.stories.jsx +++ b/src/Modal/Modal.stories.jsx @@ -1,5 +1,6 @@ import React from 'react'; import { action } from '@storybook/addon-actions'; +import Button from 'src/Button'; import Input from 'src/Input'; import { Modal, ModalBody, ModalFooter, ModalHeader, MODAL_SIZES, @@ -36,9 +37,11 @@ export const Default = () => (

Some content goes here.

- - - + + ); @@ -59,9 +62,11 @@ export const MediumModal = () => (

Some content goes here.

- - - + + ); @@ -82,9 +87,11 @@ export const LargeModal = () => (

Some content goes here.

- - - + + ); @@ -105,9 +112,11 @@ export const WithSubtitleModal = () => (

Some content goes here.

- - - + + ); @@ -128,9 +137,11 @@ export const TransactionalModal = () => (

The user needs to take action here.

- - - + + ); @@ -151,9 +162,11 @@ export const WarningModal = () => (

Are you sure you want to do this?

- - - + + ); @@ -174,9 +187,11 @@ export const DangerModal = () => (

Are you sure you want to do this?

- - - + + ); diff --git a/src/Pill/Pill.mdx b/src/Pill/Pill.mdx index c069cfb7..8a7b11c5 100644 --- a/src/Pill/Pill.mdx +++ b/src/Pill/Pill.mdx @@ -1,58 +1,88 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Pill from './Pill'; # Pill -Represents an object that can be viewed with or without an icon. Useful when describing or categorizing a property. - - - - - +## -## Anatomy +

+ Represents an object that can be viewed with or without an icon. Useful when describing or categorizing a property. +

-- **Content: ** main content area of the Pill. Can be provided plain text or a link (``) as `children` -- **Icon: ** relevant icon that makes it easier for users to identify (always placed left of the Content) -- **Close: ** users have the option to clear the pill (provided by default with the presence of the `onClose` function) - -## Best practices + + + +### When to use - Use to label, categorize, or organize items using keywords that describe them -- Help users search for and find related content quickly and easily - Use to highlight an item's status for quick recognition +- Help users search for and find related content quickly and easily - Ideal to indicate meanings that users can learn and recognize across the app +### When to not use +- Reason 1 +- Reason 2 + +## Props + + + + ## Stories ### Default - The default Pill and available colors -- Use the `PILL_COLORS` constant when setting the `color` prop -- Can use either the `text` prop or provide an element via `children` for content. (Note: the `text` prop is planned to be retired in favor of `children` in a future release) -- If using plain text or an element as the content via `children`, do not wrap in block-level elements (e.g. `

` or `div`) - + - + ### With Leading Icon - Import an icon that is most relevant to the text - + - + ### With Close - For Pills that need to option to be closed - + - + ### With Link - For Pills that link to more information - The Pill accepts an `` tag as a child - + - + + + +## Formatting + +### States + +### Anatomy +- **Content: ** main content area of the Pill. Can be provided plain text or a link (``) as `children` +- **Icon: ** relevant icon that makes it easier for users to identify (always placed left of the Content) +- **Close: ** users have the option to clear the pill (provided by default with the presence of the `onClose` function) + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation +- Use the `PILL_COLORS` constant when setting the `color` prop +- Can use either the `text` prop or provide an element via `children` for content. (Note: the `text` prop is planned to be retired in favor of `children` in a future release) +- If using plain text or an element as the content via `children`, do not wrap in block-level elements (e.g. `

` or `div`) + +### UX Copy diff --git a/src/Popper/Popper.mdx b/src/Popper/Popper.mdx index 0585c2da..4efd9caf 100644 --- a/src/Popper/Popper.mdx +++ b/src/Popper/Popper.mdx @@ -1,45 +1,66 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Popper from './Popper'; # Popper -A Popper can be used to display some content on top of another. - - - +## - +

+ A Popper can be used to display some content on top of another. +

-## Anatomy -- **Message:** The message that needs to be conveyed to user. -- **Background:** Provides contrast against the background page color. + + + -## Best practices -- Messages should be important but not imperative for all users +### When to use +- Reason 1 +- Reason 2 -## Guidelines +### When to not use +- Reason 1 +- Reason 2 -### General -- +## Props -### Implementation -- + -### Copy -- ## Stories ### Default - + - + ### Dark - + - + + + +## Formatting + +### States +### Anatomy +- **Message:** The message that needs to be conveyed to user. +- **Background:** Provides contrast against the background page color. + +### Sizing + +### Alignment + + +## Best practices + +### General +- Messages should be important but not imperative for all users + +### Behavior + +### Implementation +### UX Copy diff --git a/src/ProfileCell/ProfileCell.mdx b/src/ProfileCell/ProfileCell.mdx index 2abc0268..8b9337dc 100644 --- a/src/ProfileCell/ProfileCell.mdx +++ b/src/ProfileCell/ProfileCell.mdx @@ -1,44 +1,79 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import ProfileCell from './ProfileCell'; # Profile Cell -Displays information about a user which can include an avatar, name, email, phone number, timezone (or other relevant pieces of information). - +## + +

+ Displays information about a user which can include an avatar, name, email, phone number, timezone (or other relevant pieces of information). +

+ + -
+ - +### When to use +- Reason 1 +- Reason 2 -## Anatomy +### When to not use +- Reason 1 +- Reason 2 -- **Avatar:** Displays photo or initials of a user -- **Name:** First and last name -- **Email** -- **Phone number** -- **Timezone** -## Best practices -- Content inside cards should be left-aligned. Deviations are left up to designer's discretion. +## Props + + + -## Stories +## Stories ### Small - Typically contains one or two lines of information (e.g. name and email). - + - + ### Large - Can contain multiple lines of information (e.g. name, email, phone number, and timezone). - + - + ### With Image - + - \ No newline at end of file + + + +## Formatting + +### States + +### Anatomy +- **Avatar:** Displays photo or initials of a user +- **Name:** First and last name +- **Email** +- **Phone number** +- **Timezone** + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy + +## Anatomy diff --git a/src/RadioButton/RadioButton.mdx b/src/RadioButton/RadioButton.mdx index 2ff5fb5e..40093c47 100644 --- a/src/RadioButton/RadioButton.mdx +++ b/src/RadioButton/RadioButton.mdx @@ -2,16 +2,29 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import RadioButton from './RadioButton'; # RadioButton -A radio button control. + +## + +

+ A radio button control. In a given group, only one radio button can be selected at the same time. +

+### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props + -## Anatomy -- States: checked, unchecked ## Stories @@ -20,3 +33,26 @@ A radio button control. + + +## Formatting + +### States +- checked, unchecked + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy diff --git a/src/RadioButtonGroup/RadioButtonGroup.mdx b/src/RadioButtonGroup/RadioButtonGroup.mdx index 166631e3..8039a7fa 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.mdx +++ b/src/RadioButtonGroup/RadioButtonGroup.mdx @@ -1,8 +1,22 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -# Radio Button Groups +# Radio Button Group -## Variants +## + +

+ A collections of radio buttons describing a set of related options. Only one option selected at a time. +

+ +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Stories ### Default @@ -28,6 +42,25 @@ Single-selection button. Includes helper text and/or a description in addition t -## Good practices -* When using Default radio buttons, the options should always be stacked vertically (except when used in the context of Inline FormGroups) +## Formatting + +### States + +### Anatomy + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation +- When using Default radio buttons, the options should always be stacked vertically (except when used in the context of Inline FormGroups) + +### UX Copy diff --git a/src/Table/Table.mdx b/src/Table/Table.mdx index 53631cd4..e8c3d8b8 100644 --- a/src/Table/Table.mdx +++ b/src/Table/Table.mdx @@ -1,110 +1,30 @@ -import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; import Table from './Table'; # Table -Displays sets of data. Can be fully customized. -- Tables display information that is easy to scan, so that users can look for patterns and insights -- Tables can be embedded in various containers and primary content, such as Cards - - - - - - - -## Anatomy - -The `Table` component aims to be closely mapped to the native `` elements. As such, do try to use the `Table` and it's subcomponents as if you were building a regular table
- -A Table is primarily made up of columns, rows, and cells -- **Header row:** Made up of cells that act as column labels -- **Column label:** The cell that acts as a column header and explains what type of data is in the column -- **Data cell:** The primary component of the table. It can be filled with any type of data or content - -Can also have other components for additional functionality such as: -- **Selecting:** adding a `Checkbox` as a data column for selecting multiple rows -- **Sorting (currently WIP):** adding a `TableSortLabel` to show which columns are actively being sorted - -## Subcomponents -- `Table` -- `TableBody` -- `TableCell` -- `TableHead` -- `TableRow` -- `TableSortLabel` - -## Best practices - -**Tables should:** -- Show values across multiple categories -- Help users visualize and scan multiple values with ease from an entire data set -- Minimize clutter by only including values that supports the table's purpose - -## Guidelines - -### Implementation -- The `Table` and its subcomponents should closely map a native `
` - -``` -***Components*** - -
- - - Column Header 1 - Column Header 2 - - - - - Data Cell 1 - Data Cell 2 - - -
+## -***Native*** +

+ Displays sets of data. Can be fully customized. +

- - - - - - - - - - - - - -
Column Header 1Column Header 2
Data Cell 1Data Cell 2
-``` -### Alignment -- Textual data = Left aligned (default) -- Numerical data = Right aligned (`alignRight` prop on a `TableCell`) -- Align headers with their related data -- Don't center align + + + -### Copy +### When to use +- Tables display information that is easy to scan, so that users can look for patterns and insights +- Tables can be embedded in various containers and primary content, such as Cards -**Headers should:** -- Be informative and descriptive -- Scannable and concise -- Include units of measurement symbols so they aren't repeated in the columns -- Use sentence case (first word capitalized, rest lowercase) +### When to not use +- Reason 1 +- Reason 2 -**Data cells should:** -- Be scannable and concise -- Use sentence case (first word capitalized, rest lowercase) +## Props -**Decimals:** -- Keep decimals consistent. For example, don’t use 3 decimals in one row and 2 in others + -**Ellipsis:** -- Some content may overflow and be given a `text-overflow: ellipsis` property -- Be sure to wrap these data cells in a `Popover` so that users can view extra long data values ## Stories @@ -112,9 +32,9 @@ Can also have other components for additional functionality such as: - A simple example of a `Table` - In the `TableHead`, all `TableCell` components should be given a `header` prop to designate it as a column label - + - + ### Table With Fixed Column Widths - Create a column with a fixed width @@ -123,38 +43,38 @@ Can also have other components for additional functionality such as: - Set `minWidth` to provide extra space in `px` for the `TableCell` - `text-overflow: ellipsis` is set by default for content that exceeds the designated width. This would only be seen if `maxWidth` is set - + - + ### Table On Card - Default `Table` on a `Card` component - + - + ### Table On Card No Padding - When the `Card` component has the `noPadding` prop set - + - + ### Table With Single Action Column - When a row has a single action, expose the action directly (usually through a button) with a clear action verb. Otherwise a kebab should be used when multiple actions are available for a rows - + - + ### Table With Multiple Action Column - Kebabs should be used when there’s more than one action per row - If any row has one action and others more than one action, kebabs should be displayed on all rows - + - + ### Table With Sticky Column And Header - A Table's header row can be made sticky to ensure column labels are always visible when a user scrolls down @@ -166,9 +86,9 @@ Can also have other components for additional functionality such as: - A pin icon can optionally be displayed on a sticky column to let the user toggle between a sticky column state and a default state - *Note: view this story on Canvas instead of Docs to see the sticky header* - + - + ### Table With Multiple Sticky Columns (left & right) And Header - If *multiple* `stickyColumn`s are needed on either left or right side of the Table (e.g. a Checkbox and Email column on the left-side of the Table), `stickyColumnOffsetX` must be set precisely @@ -212,9 +132,9 @@ Can also have other components for additional functionality such as: ``` - + - + ### Table With Multiple Select - Checkboxes are displayed on a separate column @@ -222,18 +142,18 @@ Can also have other components for additional functionality such as: - When `TableRow` prop `selected` evaluates to `true`, `background-color` is set to `$ux-blue-100` - Clicking the first `Checkbox` located on the header row should select or de-select all current rows displayed on the `Table` - + - + ### Table With Multiple Select And Multiple Sticky Columns And Header - Combining the sticky columns & headers with multi-select functionality. - Creates an easier scrolling and selecting experience for users while searching through table data. - *Note: view this story on Canvas instead of Docs to see the sticky header* - + - + ### Table With Sorting - **Currently WIP** @@ -242,22 +162,124 @@ Can also have other components for additional functionality such as: - *Active state:* When users click the column heading the text turns blue and the icon changes to either an ascending or descending icon - + - + ### Table With Cell Right Alignment - `TableCell` can be given `alignRight` prop to align content to the right - Cells with numerical data should be aligned right - + - + ### Table With Compact Option - `TableCell` can be given a `compact` prop to reduce the size of the cell - This allows the `Table` to display more rows on a page - + - + + + +## Formatting + +### States + +### Anatomy + +The `Table` component aims to be closely mapped to the native `` elements. As such, do try to use the `Table` and it's subcomponents as if you were building a regular table
+ +A Table is primarily made up of columns, rows, and cells +- **Header row:** Made up of cells that act as column labels +- **Column label:** The cell that acts as a column header and explains what type of data is in the column +- **Data cell:** The primary component of the table. It can be filled with any type of data or content + +Can also have other components for additional functionality such as: +- **Selecting:** adding a `Checkbox` as a data column for selecting multiple rows +- **Sorting (currently WIP):** adding a `TableSortLabel` to show which columns are actively being sorted + +## Subcomponents +- `Table` +- `TableBody` +- `TableCell` +- `TableHead` +- `TableRow` +- `TableSortLabel` + + +### Sizing + +### Alignment +- Textual data = Left aligned (default) +- Numerical data = Right aligned (`alignRight` prop on a `TableCell`) +- Align headers with their related data +- Don't center align + + +## Best practices + +### General +- Show values across multiple categories +- Help users visualize and scan multiple values with ease from an entire data set +- Minimize clutter by only including values that supports the table's purpose + +### Behavior + +### Implementation +- The `Table` and its subcomponents should closely map a native `
` + +``` +***Components*** + +
+ + + Column Header 1 + Column Header 2 + + + + + Data Cell 1 + Data Cell 2 + + +
+ +***Native*** + + + + + + + + + + + + + + +
Column Header 1Column Header 2
Data Cell 1Data Cell 2
+``` + +### UX Copy +**Headers should:** +- Be informative and descriptive +- Scannable and concise +- Include units of measurement symbols so they aren't repeated in the columns +- Use sentence case (first word capitalized, rest lowercase) + +**Data cells should:** +- Be scannable and concise +- Use sentence case (first word capitalized, rest lowercase) + +**Decimals:** +- Keep decimals consistent. For example, don’t use 3 decimals in one row and 2 in others + +**Ellipsis:** +- Some content may overflow and be given a `text-overflow: ellipsis` property +- Be sure to wrap these data cells in a `Popover` so that users can view extra long data values diff --git a/src/Table/Table.stories.jsx b/src/Table/Table.stories.jsx index 279c2133..9d08973b 100644 --- a/src/Table/Table.stories.jsx +++ b/src/Table/Table.stories.jsx @@ -1,6 +1,7 @@ import { faFileAlt, faEllipsisV, faThumbtack } from '@fortawesome/pro-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import React, { useState } from 'react'; +import Button from 'src/Button'; import Card from 'src/Card'; import CheckboxButton from 'src/CheckboxButton'; import { Pill } from 'src/Pill'; @@ -203,13 +204,7 @@ export const TableOnCardNoPadding = () => ( // TODO: placeholder buttons until the Button component is implemented into the DS const kebabButton = () => ; const editButton = () => ( - + ); /* eslint-disable react/prop-types */ const PinButton = ({ isPinActive, ...props }) => ; @@ -633,14 +628,7 @@ export const TableWithCompactOption = () => { return (
- +

{isCompact ? 'Compact' : 'Default'}

diff --git a/src/Tabs/Tab/Tab.jsx b/src/Tabs/Tab/Tab.jsx new file mode 100644 index 00000000..2bd4c4e2 --- /dev/null +++ b/src/Tabs/Tab/Tab.jsx @@ -0,0 +1,25 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import ReactBootstrapTab from 'react-bootstrap/Tab'; + +const Tab = ({ + ...props +}) => ( + +); + +export default Tab; + +Tab.propTypes = { + disabled: PropTypes.bool, + eventKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + tabClassName: PropTypes.string, + title: PropTypes.node.isRequired, +}; + +Tab.defaultProps = { + disabled: false, + eventKey: undefined, + tabClassName: undefined, +}; diff --git a/src/Tabs/Tab/index.js b/src/Tabs/Tab/index.js new file mode 100644 index 00000000..0398ed00 --- /dev/null +++ b/src/Tabs/Tab/index.js @@ -0,0 +1,3 @@ +import Tab from './Tab'; + +export default Tab; diff --git a/src/Tabs/Tabs.jsx b/src/Tabs/Tabs.jsx new file mode 100644 index 00000000..35d469a0 --- /dev/null +++ b/src/Tabs/Tabs.jsx @@ -0,0 +1,41 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import ReactBootstrapTabs from 'react-bootstrap/Tabs'; + +import { StyledTabsWrapper } from './Tabs.styles'; + +const Tabs = ({ + children, + ...props +}) => ( + + + {children} + + +); + +export default Tabs; + +Tabs.propTypes = { + activeKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + defaultActiveKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + id: PropTypes.string.isRequired, + mountOnEnter: PropTypes.bool, + transition: PropTypes.oneOfType([ + PropTypes.oneOf([false]), + PropTypes.elementType, + ]), + unmountOnExit: PropTypes.bool, + onSelect: PropTypes.func, +}; + +Tabs.defaultProps = { + activeKey: undefined, + defaultActiveKey: 1, + mountOnEnter: undefined, + transition: undefined, + unmountOnExit: undefined, + onSelect: undefined, +}; diff --git a/src/Tabs/Tabs.mdx b/src/Tabs/Tabs.mdx new file mode 100644 index 00000000..c72af702 --- /dev/null +++ b/src/Tabs/Tabs.mdx @@ -0,0 +1,59 @@ +import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks'; +import Tabs from './Tabs'; +import Tab from './Tab'; + +# Tabs +Create dynamic tabbed interfaces, as described in the [WAI ARIA Authoring Practices](https://www.w3.org/TR/wai-aria-practices/#tabpanel). Tabs is a higher-level component for quickly creating a Nav matched with a set of TabPanes. + +These are wrapped and styled [React Bootstrap](https://react-bootstrap.github.io) `Tabs` and `Tab` components. Refer to [React Bootstrap `Tabs`](https://react-bootstrap.github.io/components/tabs/) documentation as the source of truth. + +## Best Practices + +There are two ways use the `Tabs` component, controlled or uncontrolled. Uncontrolled `Tabs` simply switch tab content based on user interaction, where as controlled `Tabs` require a function passed in as the `onSelect` prop to set to the `activeKey`. + +Since we should always be tracking user interactions it is highly recommended to use controlled `Tabs` so that tracking can be added to the `onSelect` function. This is also very useful when using `Tabs` without `Tab` content. + +## Tabs Anatomy + + + +- **activeKey:** string which matches the `Tab` **eventKey** which should be active on initial load *and* update this prop from the `onSelect` function +- **defaultActiveKey:** The default active key that is selected on start +- **id:** HTML id attribute, required +- **mountOnEnter:** Wait until the first "enter" transition to mount tabs (add them to the DOM) +- **transition:** Sets a default animation strategy for all children ``s. Not currently used. +- **unmountOnExit:** Unmount tabs (remove it from the DOM) when it is no longer visible +- **onSelect:** Callback fired when a Tab is selected. + +### Controlled Tabs +- **activeKey:** Required +- **defaultActiveKey:** Leave undefined +- **onSelect:** Required + +### Uncontrolled Tabs +- **activeKey:** Leave undefined +- **defaultActiveKey:** Required +- **onSelect:** Leave undefined + +## Tab Anatomy + + + +- **disabled:** The disabled state of the tab. +- **eventKey:** A unique identifier for the Component, the eventKey makes it distinguishable from others in a set. Similar to React's key prop, in that it only needs to be unique amongst the Components siblings, not globally. +- **tabClassName:** Class to pass to the underlying nav link. +- **title:** Content for the tab title. + +## Stories + +### Controlled Tabs + + + + + +### Uncontrolled Tabs + + + + diff --git a/src/Tabs/Tabs.stories.jsx b/src/Tabs/Tabs.stories.jsx new file mode 100644 index 00000000..801857fc --- /dev/null +++ b/src/Tabs/Tabs.stories.jsx @@ -0,0 +1,64 @@ +import React, { useState } from 'react'; + +import { Tabs, Tab } from 'src/Tabs'; + +import mdx from './Tabs.mdx'; + +export default { + title: 'Design System/Tabs', + component: Tabs, + parameters: { + docs: { + page: mdx, + }, + }, +}; + +const tabDivStyles = { paddingTop: '20px' }; + +export const Controlled = () => { + const [key, setKey] = useState('one'); + + const onSelectTab = (tabKey) => { + alert(`onSelectTab called with tab key ${tabKey}`); + setKey(tabKey); + }; + + return ( +
+ onSelectTab(tabKey)}> + +
Tab Content One
+
+ +
Tab Content Two
+
+ +
Tab Content Three
+
+ +
Tab Content Four
+
+
+
+ ); +}; + +export const Uncontrolled = () => ( +
+ + +
Tab Content One
+
+ +
Tab Content Two
+
+ +
Tab Content Three
+
+ +
Tab Content Four
+
+
+
+); diff --git a/src/Tabs/Tabs.styles.js b/src/Tabs/Tabs.styles.js new file mode 100644 index 00000000..2523e0a0 --- /dev/null +++ b/src/Tabs/Tabs.styles.js @@ -0,0 +1,36 @@ +import styled from 'styled-components'; +import colors from '../Styles/colors/palette'; + +// TODO: Add global theming or a border/font object instead of these variables +const borderWidth = '0.125rem'; +const fontType30 = '400 0.875rem/1.25rem DM Sans, sans-serif'; + +export const StyledTabsWrapper = styled.span` + .nav-tabs { + border-bottom: ${borderWidth} solid ${colors.UX_GRAY_400}; + } + + .nav-tabs .nav-link { + color: ${colors.UX_GRAY_800}; + font: ${fontType30}; + text-decoration: none; + border: none; + border-radius: 0; + border-bottom: ${borderWidth} solid ${colors.UX_GRAY_400}; + margin-bottom: -${borderWidth}; + padding: 0.375rem 0.75rem; + } + + .nav-tabs .nav-link.active, + .nav-tabs .nav-link:hover, + .nav-tabs .nav-link:active, + .nav-tabs .nav-link:focus { + color: ${colors.UX_BLUE_500}; + border-bottom: ${borderWidth} solid ${colors.UX_BLUE_500}; + } + + .nav-tabs .nav-link.disabled { + color: ${colors.UX_GRAY_600}; + border-bottom: ${borderWidth} solid ${colors.UX_GRAY_400}; + } +`; diff --git a/src/Tabs/Tabs.test.jsx b/src/Tabs/Tabs.test.jsx new file mode 100644 index 00000000..8bcd6d9b --- /dev/null +++ b/src/Tabs/Tabs.test.jsx @@ -0,0 +1,109 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; + +import { Tab, Tabs } from './index'; + +const tabOneKey = 'one'; +const tabTwoKey = 'two'; +const tabThreeKey = 'three'; + +const tabOneTitle = 'Tab One'; +const tabTwoTitle = 'Tab Two'; +const tabThreeTitle = 'Tab Three'; + +const tabOneContent = 'Tab Content One'; +const tabTwoContent = 'Tab Content Two'; +const tabThreeContent = 'Tab Content Three'; + +const uncontrolledProps = { + activeKey: undefined, + defaultActiveKey: tabOneKey, + id: 'tabID', + mountOnEnter: false, + transition: false, + unmountOnExit: false, + onSelect: undefined, +}; + +const onSelectMock = jest.fn(); + +const controlledProps = { + ...uncontrolledProps, + ...{ + activeKey: tabOneKey, + defaultActiveKey: undefined, + onSelect: onSelectMock, + }, +}; + +const renderTabs = (props) => render( + + + {tabOneContent} + + + {tabTwoContent} + + + {tabThreeContent} + + , +); + +describe('Tabs', () => { + describe('uncontrolled tabs', () => { + it('renders the expected snapshot', () => { + const tabs = renderTabs(uncontrolledProps); + expect(tabs).toMatchSnapshot(); + }); + + it('shows the default tab content', () => { + renderTabs(uncontrolledProps); + expect(screen.getByText(tabOneContent)).toHaveClass('active'); + expect(screen.getByText(tabTwoContent)).not.toHaveClass('active'); + }); + + it('shows the tab content when clicked', () => { + renderTabs(uncontrolledProps); + + expect(screen.getByText(tabOneContent)).toHaveClass('active'); + expect(screen.getByText(tabTwoContent)).not.toHaveClass('active'); + + const tabTwoButton = screen.getByRole('tab', { name: tabTwoTitle }); + + userEvent.click(tabTwoButton); + + expect(tabTwoButton).toHaveClass('active'); + + expect(screen.getByText(tabOneContent)).not.toHaveClass('active'); + expect(screen.getByText(tabTwoContent)).toHaveClass('active'); + }); + }); + + describe('controlled tabs', () => { + it('renders the expected snapshot', () => { + const tabs = renderTabs(controlledProps); + expect(tabs).toMatchSnapshot(); + }); + + it('shows the default tab content', () => { + renderTabs(controlledProps); + expect(screen.getByText(tabOneContent)).toHaveClass('active'); + expect(screen.getByText(tabTwoContent)).not.toHaveClass('active'); + }); + + it('shows the tab content when clicked', () => { + renderTabs(controlledProps); + + expect(screen.getByText(tabOneContent)).toHaveClass('active'); + expect(screen.getByText(tabTwoContent)).not.toHaveClass('active'); + + const tabTwoButton = screen.getByRole('tab', { name: tabTwoTitle }); + + userEvent.click(tabTwoButton); + + expect(onSelectMock).toHaveBeenCalled(); + }); + }); +}); diff --git a/src/Tabs/__snapshots__/Tabs.test.jsx.snap b/src/Tabs/__snapshots__/Tabs.test.jsx.snap new file mode 100644 index 00000000..8e7e6a1d --- /dev/null +++ b/src/Tabs/__snapshots__/Tabs.test.jsx.snap @@ -0,0 +1,463 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Tabs controlled tabs renders the expected snapshot 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+ + +
+
+ Tab Content One +
+
+ Tab Content Two +
+
+ Tab Content Three +
+
+
+
+ , + "container":
+ + +
+
+ Tab Content One +
+
+ Tab Content Two +
+
+ Tab Content Three +
+
+
+
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Tabs uncontrolled tabs renders the expected snapshot 1`] = ` +Object { + "asFragment": [Function], + "baseElement": +
+ + +
+
+ Tab Content One +
+
+ Tab Content Two +
+
+ Tab Content Three +
+
+
+
+ , + "container":
+ + +
+
+ Tab Content One +
+
+ Tab Content Two +
+
+ Tab Content Three +
+
+
+
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/src/Tabs/index.js b/src/Tabs/index.js new file mode 100644 index 00000000..a40f3b2a --- /dev/null +++ b/src/Tabs/index.js @@ -0,0 +1,7 @@ +import Tabs from './Tabs'; +import Tab from './Tab'; + +export { + Tab, + Tabs, +}; diff --git a/src/Toast/Toast.stories.jsx b/src/Toast/Toast.stories.jsx index e4ef4c98..2f7d6191 100644 --- a/src/Toast/Toast.stories.jsx +++ b/src/Toast/Toast.stories.jsx @@ -2,6 +2,7 @@ import React from 'react'; import { withKnobs, text, radios } from '@storybook/addon-knobs'; import { MessageTypes } from 'src/Alert'; +import Button from 'src/Button'; import { withToast, withToastPropTypes } from 'src/Toast'; import '../../scss/global.scss'; @@ -17,7 +18,7 @@ const DummyComponent = ({ }) => (

Click the button to see a toast message. Use the knobs to try different types!

- +
); DummyComponent.propTypes = withToastPropTypes; diff --git a/src/Tooltip/Tooltip.mdx b/src/Tooltip/Tooltip.mdx index f3d0b13e..74cd2f1f 100644 --- a/src/Tooltip/Tooltip.mdx +++ b/src/Tooltip/Tooltip.mdx @@ -1,75 +1,94 @@ -import { Story, Preview } from '@storybook/addon-docs/blocks'; +import { Story, Canvas } from '@storybook/addon-docs/blocks'; import { Tooltip } from './Tooltip'; # Tooltip -These are contained messages that can be viewed when prompted by the user, generally only viewed once. - - - - -## Anatomy -- **Message:** The message that needs to be conveyed to user. -- **Background:** Provides contrast against the background page color. +## -## Best practices -- Messages should be important but not imperative for all users -- Tooltips should always be in close proximity and in-line with the component that it's referencing -- Ensure accessibility for keyboard users +

+ Contained messages used for showing extra information about a specifically selected element. +

-## Guidelines + + + -### General -- +### When to use +- Reason 1 +- Reason 2 -### Implementation -- +### When to not use +- Reason 1 +- Reason 2 -### Copy -- ## Stories ### Default - + - + ### Light - + - + ### With Header - + - + ### With HTML - + - + ### Green Icon - + - + ### Gray Icon - + - + ### With Tracking - + - + + +## Formatting + +### States + +### Anatomy +- **Message:** The message that needs to be conveyed to user. +- **Background:** Provides contrast against the background page color. + +### Sizing + +### Alignment + + +## Best practices + +### General +- Messages should be important but not imperative for all users +- Tooltips should always be in close proximity and in-line with the component that it's referencing +- Ensure accessibility for keyboard users + +### Behavior + +### Implementation +### UX Copy diff --git a/src/Tooltip/Tooltip.scss b/src/Tooltip/Tooltip.scss index c722a909..dd3b7c1f 100644 --- a/src/Tooltip/Tooltip.scss +++ b/src/Tooltip/Tooltip.scss @@ -14,7 +14,7 @@ } &--primary { - color: $ux-green; + color: $ux-emerald; } } diff --git a/src/index.js b/src/index.js index b58f6301..c904e721 100644 --- a/src/index.js +++ b/src/index.js @@ -1,4 +1,5 @@ import { Alert, MessageTypes } from 'src/Alert'; +import Button from 'src/Button'; import Avatar from 'src/Avatar'; import Card, { CardSizes } from 'src/Card'; import CheckboxButton, { CHECKED_STATES } from 'src/CheckboxButton'; @@ -35,6 +36,10 @@ import { ValueContainer, } from 'src/Select'; import { colors as COLORS } from 'src/Styles'; +import { + Tab, + Tabs, +} from 'src/Tabs'; import { Table, TableBody, @@ -56,6 +61,7 @@ export { Alert, Avatar, AsyncSelect, + Button, BUTTON_GROUP_ORIENTATIONS, Card, CardSizes, @@ -89,6 +95,8 @@ export { RadioButtonGroup, SELECT_SIZES, SingleSelect, + Tab, + Tabs, Table, TableBody, TableCell, diff --git a/stories/Intro.stories.mdx b/stories/Intro.stories.mdx index ff9b5e2a..27f7631b 100644 --- a/stories/Intro.stories.mdx +++ b/stories/Intro.stories.mdx @@ -7,47 +7,47 @@ import GithubLogo from '../public/github-logo.svg';
- User Interviews Design System -
- We aim to create a system that let us build a user experience that is consistent, + User Interviews Design System +
+ We aim to create a system that allows us to build a user experience that is consistent, flexible and scalable. This style guide is living documentation that will be updated as we continue to evolve and improve our design system.
- + Figma Library - + Github Repo
diff --git a/yarn.lock b/yarn.lock index 3e84be4a..60d006d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -33,6 +33,13 @@ dependencies: "@babel/highlight" "^7.12.13" +"@babel/code-frame@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431" + integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== + dependencies: + "@babel/highlight" "^7.16.0" + "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1" @@ -90,6 +97,15 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.0.tgz#d40f3d1d5075e62d3500bccb67f3daa8a95265b2" + integrity sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew== + dependencies: + "@babel/types" "^7.16.0" + jsesc "^2.5.1" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" @@ -97,6 +113,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-annotate-as-pure@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" + integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== + dependencies: + "@babel/types" "^7.16.0" + "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" @@ -164,6 +187,15 @@ "@babel/template" "^7.12.13" "@babel/types" "^7.12.13" +"@babel/helper-function-name@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481" + integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== + dependencies: + "@babel/helper-get-function-arity" "^7.16.0" + "@babel/template" "^7.16.0" + "@babel/types" "^7.16.0" + "@babel/helper-get-function-arity@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" @@ -171,6 +203,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-get-function-arity@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa" + integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== + dependencies: + "@babel/types" "^7.16.0" + "@babel/helper-hoist-variables@^7.13.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" @@ -179,6 +218,13 @@ "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" +"@babel/helper-hoist-variables@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a" + integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== + dependencies: + "@babel/types" "^7.16.0" + "@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" @@ -193,6 +239,13 @@ dependencies: "@babel/types" "^7.13.12" +"@babel/helper-module-imports@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3" + integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== + dependencies: + "@babel/types" "^7.16.0" + "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14": version "7.13.14" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" @@ -264,11 +317,23 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-split-export-declaration@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438" + integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== + dependencies: + "@babel/types" "^7.16.0" + "@babel/helper-validator-identifier@^7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== +"@babel/helper-validator-identifier@^7.15.7": + version "7.15.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" + integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== + "@babel/helper-validator-option@^7.12.17": version "7.12.17" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" @@ -302,11 +367,25 @@ chalk "^2.0.0" js-tokens "^4.0.0" +"@babel/highlight@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" + integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== + dependencies: + "@babel/helper-validator-identifier" "^7.15.7" + chalk "^2.0.0" + js-tokens "^4.0.0" + "@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.13", "@babel/parser@^7.12.7", "@babel/parser@^7.13.13", "@babel/parser@^7.7.0": version "7.13.13" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw== +"@babel/parser@^7.16.0", "@babel/parser@^7.16.3": + version "7.16.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.4.tgz#d5f92f57cf2c74ffe9b37981c0e72fee7311372e" + integrity sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng== + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a" @@ -1043,6 +1122,13 @@ dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.13.16", "@babel/runtime@^7.14.0", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.9.2": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.3.tgz#b86f0db02a04187a3c17caa77de69840165d42d5" + integrity sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/template@^7.12.13", "@babel/template@^7.12.7", "@babel/template@^7.3.3": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" @@ -1052,6 +1138,15 @@ "@babel/parser" "^7.12.13" "@babel/types" "^7.12.13" +"@babel/template@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" + integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== + dependencies: + "@babel/code-frame" "^7.16.0" + "@babel/parser" "^7.16.0" + "@babel/types" "^7.16.0" + "@babel/traverse@^7.1.0", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.7.0": version "7.13.13" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.13.tgz#39aa9c21aab69f74d948a486dd28a2dbdbf5114d" @@ -1066,6 +1161,21 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.4.5": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.3.tgz#f63e8a938cc1b780f66d9ed3c54f532ca2d14787" + integrity sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag== + dependencies: + "@babel/code-frame" "^7.16.0" + "@babel/generator" "^7.16.0" + "@babel/helper-function-name" "^7.16.0" + "@babel/helper-hoist-variables" "^7.16.0" + "@babel/helper-split-export-declaration" "^7.16.0" + "@babel/parser" "^7.16.3" + "@babel/types" "^7.16.0" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.13", "@babel/types@^7.13.14", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": version "7.13.14" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.14.tgz#c35a4abb15c7cd45a2746d78ab328e362cbace0d" @@ -1075,6 +1185,14 @@ lodash "^4.17.19" to-fast-properties "^2.0.0" +"@babel/types@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" + integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== + dependencies: + "@babel/helper-validator-identifier" "^7.15.7" + to-fast-properties "^2.0.0" + "@base2/pretty-print-object@1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047" @@ -1162,7 +1280,7 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6": +"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6", "@emotion/is-prop-valid@^0.8.8": version "0.8.8" resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== @@ -1208,12 +1326,12 @@ "@emotion/styled-base" "^10.0.27" babel-plugin-emotion "^10.0.27" -"@emotion/stylis@0.8.5": +"@emotion/stylis@0.8.5", "@emotion/stylis@^0.8.4": version "0.8.5" resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== -"@emotion/unitless@0.7.5": +"@emotion/unitless@0.7.5", "@emotion/unitless@^0.7.4": version "0.7.5" resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== @@ -1455,6 +1573,17 @@ "@types/yargs" "^15.0.0" chalk "^4.0.0" +"@jest/types@^27.4.0": + version "27.4.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.4.0.tgz#ac5c04d29ce47e0b96439dfd44ec3cd930fc9f86" + integrity sha512-jIsLdASXMf8GS7P7oGFGwobNse/6Ewq3GBPHoo0i6XRmja+NrUoDqJm4a1ffF2bHGleKJizxokcp1sCqSktP3g== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + "@mdx-js/loader@^1.6.22": version "1.6.22" resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4" @@ -1779,6 +1908,11 @@ schema-utils "^2.6.5" source-map "^0.7.3" +"@popperjs/core@^2.10.1": + version "2.10.2" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz#0798c03351f0dea1a5a4cabddf26a55a7cbee590" + integrity sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ== + "@popperjs/core@^2.5.3", "@popperjs/core@^2.5.4", "@popperjs/core@^2.6.0": version "2.9.2" resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353" @@ -1794,6 +1928,48 @@ prop-types "^15.6.1" react-lifecycles-compat "^3.0.4" +"@react-aria/ssr@^3.0.1": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.1.0.tgz#b7163e6224725c30121932a8d1422ef91d1fab22" + integrity sha512-RxqQKmE8sO7TGdrcSlHTcVzMP450hqowtBSd2bBS9oPlcokVkaGq28c3Rwa8ty5ctw4EBCjXqjP7xdcKMGDzug== + dependencies: + "@babel/runtime" "^7.6.2" + +"@restart/context@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@restart/context/-/context-2.1.4.tgz#a99d87c299a34c28bd85bb489cb07bfd23149c02" + integrity sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q== + +"@restart/hooks@^0.3.26": + version "0.3.27" + resolved "https://registry.yarnpkg.com/@restart/hooks/-/hooks-0.3.27.tgz#91f356d66d4699a8cd8b3d008402708b6a9dc505" + integrity sha512-s984xV/EapUIfkjlf8wz9weP2O9TNKR96C68FfMEy2bE69+H4cNv3RD4Mf97lW7Htt7PjZrYTjSC8f3SB9VCXw== + dependencies: + dequal "^2.0.2" + +"@restart/hooks@^0.4.0": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@restart/hooks/-/hooks-0.4.1.tgz#716b1fd7a67650a6d4ed441b5d704b4f73ca2612" + integrity sha512-87UMGZcFwbj0Gr+8eEBAzL6H8xF5pMwq/S3LWeFK9cg4+lTqLFMsiVQFT4ncMJzqgpdD7T6ktF8PsEHeN2O+MQ== + dependencies: + dequal "^2.0.2" + +"@restart/ui@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@restart/ui/-/ui-0.2.3.tgz#8b68aa2ca07af799a65b288cc3c6039915c46a4c" + integrity sha512-FDhtjIR9QvUfMwvFsgVurRA1qdYxM0F0S07acywjG7gNI2YmQo78rtCYIe553V/pyBjEjaKAg3fzBFCocFTqyQ== + dependencies: + "@babel/runtime" "^7.13.16" + "@popperjs/core" "^2.10.1" + "@react-aria/ssr" "^3.0.1" + "@restart/hooks" "^0.4.0" + "@types/warning" "^3.0.0" + dequal "^2.0.2" + dom-helpers "^5.2.0" + prop-types "^15.7.2" + uncontrollable "^7.2.1" + warning "^4.0.3" + "@sindresorhus/is@^0.14.0": version "0.14.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" @@ -2525,6 +2701,35 @@ dependencies: defer-to-connect "^1.0.1" +"@testing-library/dom@^8.0.0": + version "8.11.1" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.11.1.tgz#03fa2684aa09ade589b460db46b4c7be9fc69753" + integrity sha512-3KQDyx9r0RKYailW2MiYrSSKEfH0GTkI51UGEvJenvcoDoeRYs0PZpi2SXqtnMClQvCqdtTTpOfFETDTVADpAg== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^4.2.0" + aria-query "^5.0.0" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.4.4" + pretty-format "^27.0.2" + +"@testing-library/jest-dom@^5.15.0": + version "5.15.1" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.15.1.tgz#4c49ba4d244f235aec53f0a83498daeb4ee06c33" + integrity sha512-kmj8opVDRE1E4GXyLlESsQthCXK7An28dFWxhiMwD7ZUI7ZxA6sjdJRxLerD9Jd8cHX4BDc1jzXaaZKqzlUkvg== + dependencies: + "@babel/runtime" "^7.9.2" + "@types/testing-library__jest-dom" "^5.9.1" + aria-query "^4.2.2" + chalk "^3.0.0" + css "^3.0.0" + css.escape "^1.5.1" + dom-accessibility-api "^0.5.6" + lodash "^4.17.15" + redent "^3.0.0" + "@testing-library/react-hooks@^3.2.1": version "3.7.0" resolved "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.7.0.tgz#6d75c5255ef49bce39b6465bf6b49e2dac84919e" @@ -2533,11 +2738,31 @@ "@babel/runtime" "^7.12.5" "@types/testing-library__react-hooks" "^3.4.0" +"@testing-library/react@^12.1.2": + version "12.1.2" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-12.1.2.tgz#f1bc9a45943461fa2a598bb4597df1ae044cfc76" + integrity sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g== + dependencies: + "@babel/runtime" "^7.12.5" + "@testing-library/dom" "^8.0.0" + +"@testing-library/user-event@^13.5.0": + version "13.5.0" + resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295" + integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg== + dependencies: + "@babel/runtime" "^7.12.5" + "@types/anymatch@*": version "1.3.1" resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== +"@types/aria-query@^4.2.0": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc" + integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig== + "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": version "7.1.14" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402" @@ -2620,6 +2845,11 @@ resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== +"@types/invariant@^2.2.33": + version "2.2.35" + resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be" + integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg== + "@types/is-function@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83" @@ -2753,6 +2983,11 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== +"@types/prop-types@^15.7.3": + version "15.7.4" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" + integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== + "@types/qs@^6.9.5": version "6.9.6" resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" @@ -2779,6 +3014,13 @@ dependencies: "@types/react" "*" +"@types/react-transition-group@^4.4.1": + version "4.4.4" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e" + integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug== + dependencies: + "@types/react" "*" + "@types/react@*": version "17.0.3" resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz#ba6e215368501ac3826951eef2904574c262cc79" @@ -2788,6 +3030,15 @@ "@types/scheduler" "*" csstype "^3.0.2" +"@types/react@>=16.14.8", "@types/react@>=16.9.11": + version "17.0.35" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.35.tgz#217164cf830267d56cd1aec09dcf25a541eedd4c" + integrity sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + "@types/scheduler@*": version "0.16.1" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" @@ -2818,6 +3069,13 @@ resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4" integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ== +"@types/testing-library__jest-dom@^5.9.1": + version "5.14.1" + resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.1.tgz#014162a5cee6571819d48e999980694e2f657c3c" + integrity sha512-Gk9vaXfbzc5zCXI9eYE9BI5BNHEp4D3FWjgqBE/ePGYElLAP+KvxBcsdkwfIVvezs605oiyd/VrpiHe3Oeg+Aw== + dependencies: + "@types/jest" "*" + "@types/testing-library__react-hooks@^3.4.0": version "3.4.1" resolved "https://registry.yarnpkg.com/@types/testing-library__react-hooks/-/testing-library__react-hooks-3.4.1.tgz#b8d7311c6c1f7db3103e94095fe901f8fef6e433" @@ -2837,6 +3095,11 @@ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== +"@types/warning@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52" + integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI= + "@types/webpack-env@^1.16.0": version "1.16.0" resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.16.0.tgz#8c0a9435dfa7b3b1be76562f3070efb3f92637b4" @@ -2875,6 +3138,13 @@ dependencies: "@types/yargs-parser" "*" +"@types/yargs@^16.0.0": + version "16.0.4" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" + integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== + dependencies: + "@types/yargs-parser" "*" + "@types/yauzl@^2.9.1": version "2.9.2" resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.2.tgz#c48e5d56aff1444409e39fa164b0b4d4552a7b7a" @@ -3232,6 +3502,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + ansi-to-html@^0.6.11: version "0.6.14" resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8" @@ -3301,6 +3576,11 @@ aria-query@^4.2.2: "@babel/runtime" "^7.10.2" "@babel/runtime-corejs3" "^7.10.2" +aria-query@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.0.0.tgz#210c21aaf469613ee8c9a62c7f86525e058db52c" + integrity sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg== + arr-diff@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" @@ -3700,6 +3980,16 @@ babel-plugin-require-context-hook@^1.0.0: resolved "https://registry.yarnpkg.com/babel-plugin-require-context-hook/-/babel-plugin-require-context-hook-1.0.0.tgz#3f0e7cce87c338f53639b948632fd4e73834632d" integrity sha512-EMZD1563QUqLhzrqcThk759RhuNVX/ZJdrtGK6drwzgvnR+ARjWyXIHPbu+tUNaMGtPz/gQeAM2M6VUw2UiUeA== +"babel-plugin-styled-components@>= 1.12.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.1.tgz#4d1ea2169363887ffce5352f32080cba14d243cc" + integrity sha512-U3wmORxerYBiqcRCo6thItIosEIga3F+ph0jJPkiOZJjyhpZyUZFQV9XvrZ2CbBIihJ3rDBC/itQ+Wx3VHMauw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-module-imports" "^7.16.0" + babel-plugin-syntax-jsx "^6.18.0" + lodash "^4.17.11" + babel-plugin-syntax-flow@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" @@ -4258,11 +4548,6 @@ camelcase@^2.0.0: 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.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= - camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -4273,6 +4558,11 @@ camelcase@^6.0.0, camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== +camelize@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" + integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= + caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181: version "1.0.30001205" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001205.tgz#d79bf6a6fb13196b4bb46e5143a22ca0242e0ef8" @@ -4465,7 +4755,7 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" -classnames@^2.2.5: +classnames@^2.2.5, classnames@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== @@ -4533,14 +4823,14 @@ clipboard@^2.0.0: select "^1.1.2" tiny-emitter "^2.0.0" -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" cliui@^6.0.0: version "6.0.0" @@ -4960,6 +5250,11 @@ crypto-random-string@^2.0.0: resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== +css-color-keywords@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" + integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= + css-loader@^3.4.2, css-loader@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" @@ -4989,11 +5284,34 @@ css-select@^2.0.2: domutils "^1.7.0" nth-check "^1.0.2" +css-to-react-native@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" + integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ== + dependencies: + camelize "^1.0.0" + css-color-keywords "^1.0.0" + postcss-value-parser "^4.0.2" + css-what@^3.2.1: version "3.4.2" resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== +css.escape@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= + +css@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d" + integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== + dependencies: + inherits "^2.0.4" + source-map "^0.6.1" + source-map-resolve "^0.6.0" + cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" @@ -5140,7 +5458,7 @@ debug@^4.3.2: dependencies: ms "2.1.2" -decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: +decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -5241,6 +5559,11 @@ depd@~1.1.2: resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= +dequal@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d" + integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug== + des.js@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" @@ -5332,6 +5655,11 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" +dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9: + version "0.5.10" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.10.tgz#caa6d08f60388d0bb4539dd75fe458a9a1d0014c" + integrity sha512-Xu9mD0UjrJisTmv7lmVSDMagQcU9R5hwAbxsaAE/35XPnPLJobbuREfV/rraiSaEj/UOvgrzQs66zyTWTlyd+g== + dom-converter@^0.2: version "0.2.0" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" @@ -5347,6 +5675,14 @@ dom-helpers@^5.0.1: "@babel/runtime" "^7.8.7" csstype "^3.0.2" +dom-helpers@^5.2.0, dom-helpers@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + dom-serializer@0: version "0.2.2" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" @@ -6655,11 +6991,6 @@ gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^1.0.1: - version "1.0.3" - 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.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -7148,7 +7479,7 @@ hmac-drbg@^1.0.1: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" -hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0: +hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== @@ -7460,11 +7791,6 @@ invariant@^2.2.3, invariant@^2.2.4: dependencies: loose-envify "^1.0.0" -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" @@ -8626,13 +8952,6 @@ lazy-universal-dotenv@^3.0.1: dotenv "^8.0.0" dotenv-expand "^5.1.0" -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -8773,7 +9092,7 @@ lodash.uniq@4.5.0: resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= -lodash@^4.0.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.7.0, lodash@~4.17.10: +lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.7.0, lodash@~4.17.10: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -8858,6 +9177,11 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" +lz-string@^1.4.4: + version "1.4.4" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26" + integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY= + make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -9431,10 +9755,10 @@ node-releases@^1.1.61, node-releases@^1.1.70: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== -node-sass@4.13.1: - version "4.13.1" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.1.tgz#9db5689696bb2eec2c32b98bfea4c7a2e992d0a3" - integrity sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw== +node-sass@^4.14.1: + version "4.14.1" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5" + integrity sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g== dependencies: async-foreach "^0.1.3" chalk "^1.1.1" @@ -9450,7 +9774,7 @@ node-sass@4.13.1: node-gyp "^3.8.0" npmlog "^4.0.0" request "^2.88.0" - sass-graph "^2.2.4" + sass-graph "2.2.5" stdout-stream "^1.4.0" "true-case-path" "^1.0.2" @@ -9715,13 +10039,6 @@ os-homedir@^1.0.0: 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.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= - dependencies: - lcid "^1.0.0" - os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -10280,7 +10597,7 @@ postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: uniq "^1.0.1" util-deprecate "^1.0.2" -postcss-value-parser@^4.1.0: +postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== @@ -10331,6 +10648,16 @@ pretty-format@^26.0.0, pretty-format@^26.6.2: ansi-styles "^4.0.0" react-is "^17.0.1" +pretty-format@^27.0.2: + version "27.4.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.0.tgz#440a7b86612a18b0865831a6d8585d989a5420e9" + integrity sha512-n0QR6hMREfp6nLzfVksXMAfIxk1ffOOfbb/FzKHFmRtn9iJKaZXB8WMzLr8a72IASShEAhqK06nlwp1gVWgqKg== + dependencies: + "@jest/types" "^27.4.0" + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" @@ -10400,6 +10727,14 @@ prompts@^2.0.1, prompts@^2.4.0: kleur "^3.0.3" sisteransi "^1.0.5" +prop-types-extra@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/prop-types-extra/-/prop-types-extra-1.1.1.tgz#58c3b74cbfbb95d304625975aa2f0848329a010b" + integrity sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew== + dependencies: + react-is "^16.3.2" + warning "^4.0.0" + prop-types@^15.0.0, prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" @@ -10630,6 +10965,29 @@ rc@^1.2.8: minimist "^1.2.0" strip-json-comments "~2.0.1" +react-bootstrap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-2.0.2.tgz#ec3492513066038bcf612ab8fcab46f88d254ab9" + integrity sha512-QuMqJ+WJmd6dUyOys6OF3nr6T/FjUVAoEMbSjsFrwVufJtvMox0SU1Dvz/cDID+Dl6Rz2RLcJzyqkdl+DEK2Gg== + dependencies: + "@babel/runtime" "^7.14.0" + "@restart/context" "^2.1.4" + "@restart/hooks" "^0.3.26" + "@restart/ui" "^0.2.3" + "@types/invariant" "^2.2.33" + "@types/prop-types" "^15.7.3" + "@types/react" ">=16.14.8" + "@types/react-transition-group" "^4.4.1" + "@types/warning" "^3.0.0" + classnames "^2.3.1" + dom-helpers "^5.2.1" + invariant "^2.2.4" + prop-types "^15.7.2" + prop-types-extra "^1.1.0" + react-transition-group "^4.4.1" + uncontrollable "^7.2.1" + warning "^4.0.3" + react-colorful@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.1.0.tgz#45c8044d80bc0e7ee08dc78c760e6694f3745ca2" @@ -10771,7 +11129,7 @@ react-inspector@^5.1.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== -react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6: +react-is@^16.3.2, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -10933,6 +11291,16 @@ react-transition-group@^4.3.0: loose-envify "^1.4.0" prop-types "^15.6.2" +react-transition-group@^4.4.1: + version "4.4.2" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" + integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + react@16.14.0: version "16.14.0" resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" @@ -11062,6 +11430,14 @@ redent@^1.0.0: indent-string "^2.1.0" strip-indent "^1.0.1" +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + refractor@^3.1.0: version "3.3.1" resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.3.1.tgz#ebbc04b427ea81dc25ad333f7f67a0b5f4f0be3a" @@ -11324,11 +11700,6 @@ require-from-string@^2.0.2: resolved "https://registry.yarnpkg.com/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.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.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" @@ -11509,15 +11880,15 @@ sane@^4.0.3: minimist "^1.1.1" walker "~1.0.5" -sass-graph@^2.2.4: - version "2.2.6" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.6.tgz#09fda0e4287480e3e4967b72a2d133ba09b8d827" - integrity sha512-MKuEYXFSGuRSi8FZ3A7imN1CeVn9Gpw0/SFJKdL1ejXJneI9a5rwlEZrKejhEFAA3O6yr3eIyl/WuvASvlT36g== +sass-graph@2.2.5: + version "2.2.5" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8" + integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== dependencies: glob "^7.0.0" lodash "^4.0.0" scss-tokenizer "^0.2.3" - yargs "^7.0.0" + yargs "^13.3.2" sass-loader@^8.0.2: version "8.0.2" @@ -11887,6 +12258,14 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" +source-map-resolve@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2" + integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.12: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" @@ -12096,7 +12475,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -12113,7 +12492,7 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^3.0.0: +string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== @@ -12222,7 +12601,7 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.1.0, strip-ansi@^5.2.0: +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -12302,6 +12681,22 @@ style-to-object@0.3.0, style-to-object@^0.3.0: dependencies: inline-style-parser "0.1.1" +styled-components@^5, styled-components@^5.3.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743" + integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/traverse" "^7.4.5" + "@emotion/is-prop-valid" "^0.8.8" + "@emotion/stylis" "^0.8.4" + "@emotion/unitless" "^0.7.4" + babel-plugin-styled-components ">= 1.12.0" + css-to-react-native "^3.0.0" + hoist-non-react-statics "^3.0.0" + shallowequal "^1.1.0" + supports-color "^5.5.0" + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -12775,6 +13170,16 @@ unbox-primitive@^1.0.0: has-symbols "^1.0.2" which-boxed-primitive "^1.0.2" +uncontrollable@^7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-7.2.1.tgz#1fa70ba0c57a14d5f78905d533cf63916dc75738" + integrity sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ== + dependencies: + "@babel/runtime" "^7.6.3" + "@types/react" ">=16.9.11" + invariant "^2.2.4" + react-lifecycles-compat "^3.0.4" + undefsafe@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" @@ -13187,7 +13592,7 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" -warning@^4.0.2, warning@^4.0.3: +warning@^4.0.0, warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== @@ -13337,11 +13742,6 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" -which-module@^1.0.0: - version "1.0.0" - 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.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -13394,14 +13794,6 @@ worker-rpc@^0.1.0: dependencies: microevent.ts "~0.1.1" -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-4.0.0.tgz#b3570d7c70156159a2d42be5cc942e957f7b1131" @@ -13411,6 +13803,15 @@ wrap-ansi@^4.0.0: string-width "^2.1.1" strip-ansi "^4.0.0" +wrap-ansi@^5.1.0: + version "5.1.0" + 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" + string-width "^3.0.0" + strip-ansi "^5.0.0" + wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" @@ -13481,11 +13882,6 @@ xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^3.2.1: - version "3.2.2" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" - integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== - y18n@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" @@ -13511,13 +13907,13 @@ yaml@^1.10.0, yaml@^1.7.2: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yargs-parser@5.0.0-security.0: - version "5.0.0-security.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz#4ff7271d25f90ac15643b86076a2ab499ec9ee24" - integrity sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ== +yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== dependencies: - camelcase "^3.0.0" - object.assign "^4.1.0" + camelcase "^5.0.0" + decamelize "^1.2.0" yargs-parser@^18.1.2: version "18.1.3" @@ -13527,6 +13923,22 @@ yargs-parser@^18.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs@^13.3.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.2" + yargs@^15.0.0, yargs@^15.4.1: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" @@ -13544,25 +13956,6 @@ yargs@^15.0.0, yargs@^15.4.1: y18n "^4.0.0" yargs-parser "^18.1.2" -yargs@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.1.tgz#67f0ef52e228d4ee0d6311acede8850f53464df6" - integrity sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g== - 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-security.0" - yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From 8e5b93ed958ca59613bb8d3d8a6c47358e8ab9f8 Mon Sep 17 00:00:00 2001 From: Jason Basuil Date: Fri, 10 Dec 2021 14:25:35 -0800 Subject: [PATCH 04/33] update relative bootstrap imports (#497) --- scss/bootstrap.scss | 3 +++ scss/theme.scss | 1 + src/Button/Button.scss | 4 ---- src/Card/Card.scss | 3 --- src/Layout/SidebarNav/SidebarNavLink.scss | 1 - src/Modal/Modal.scss | 4 +--- src/Toast/Toast.scss | 4 ---- 7 files changed, 5 insertions(+), 15 deletions(-) create mode 100644 scss/bootstrap.scss diff --git a/scss/bootstrap.scss b/scss/bootstrap.scss new file mode 100644 index 00000000..6d5aaa51 --- /dev/null +++ b/scss/bootstrap.scss @@ -0,0 +1,3 @@ +@import '~bootstrap/scss/functions'; +@import '~bootstrap/scss/variables'; +@import '~bootstrap/scss/mixins'; diff --git a/scss/theme.scss b/scss/theme.scss index 937b9b80..ff59125c 100644 --- a/scss/theme.scss +++ b/scss/theme.scss @@ -1,4 +1,5 @@ @import './anchors'; +@import './bootstrap'; @import './borders'; @import './box_shadow'; @import './buttons'; diff --git a/src/Button/Button.scss b/src/Button/Button.scss index 6ffbcafc..a64297cb 100644 --- a/src/Button/Button.scss +++ b/src/Button/Button.scss @@ -1,9 +1,5 @@ @import '../../scss/theme'; -@import "../../node_modules/bootstrap/scss/functions"; -@import "../../node_modules/bootstrap/scss/variables"; -@import "../../node_modules/bootstrap/scss/mixins"; - $primary: $ux-emerald-600; $danger: $ux-red; $warning: $ux-yellow-400; diff --git a/src/Card/Card.scss b/src/Card/Card.scss index f8e50d45..116b8d82 100644 --- a/src/Card/Card.scss +++ b/src/Card/Card.scss @@ -1,6 +1,3 @@ -@import '~bootstrap/scss/functions'; -@import '~bootstrap/scss/variables'; -@import '~bootstrap/scss/mixins/breakpoints'; @import '../../scss/theme'; $card-xs-spacing: 1rem; diff --git a/src/Layout/SidebarNav/SidebarNavLink.scss b/src/Layout/SidebarNav/SidebarNavLink.scss index c9ba3890..9f4ec14a 100644 --- a/src/Layout/SidebarNav/SidebarNavLink.scss +++ b/src/Layout/SidebarNav/SidebarNavLink.scss @@ -1,5 +1,4 @@ @import '../../scss/theme.scss'; -@import '~bootstrap/scss/mixins/breakpoints'; .Layout__sidebar-nav__link { @include font-type-30; diff --git a/src/Modal/Modal.scss b/src/Modal/Modal.scss index c3339658..8e0199fb 100644 --- a/src/Modal/Modal.scss +++ b/src/Modal/Modal.scss @@ -1,6 +1,4 @@ @import '../../scss/theme.scss'; -@import '~bootstrap/scss/functions'; -@import '~bootstrap/scss/variables'; .ReactModal { &__Body--open { @@ -76,4 +74,4 @@ opacity: 1; } } -} \ No newline at end of file +} diff --git a/src/Toast/Toast.scss b/src/Toast/Toast.scss index f296cda9..6b43f538 100644 --- a/src/Toast/Toast.scss +++ b/src/Toast/Toast.scss @@ -1,7 +1,3 @@ -@import '~bootstrap/scss/functions'; -@import '~bootstrap/scss/variables'; -@import '~bootstrap/scss/mixins'; - @import '../../scss/theme'; .Toast { From 0b1f60d3e2bc3ed1268e001ba3875a5f1029cf6a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Dec 2021 14:28:42 -0800 Subject: [PATCH 05/33] Prepare hotfix 1.25.1 (#498) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b2833a68..1bf2265a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.25.0", + "version": "1.25.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", From 35bde052bb3b5ea2bdd1d51fa0b3b55d0be0e1cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Jan 2022 13:05:05 -0800 Subject: [PATCH 06/33] Merge release/1.26.0 into main branch (#513) * HOTFIX update tooltip primary variant to ux-emerald (#415) * Feature RS-8352 Tabs (#477) Add Tabs and Tabs with react-bootstrap and styled-components * feature/UIDS-442 add Button to DS (#450) Adds react-bootstrap and Button component to the Design System * Bug/UIDS-484 Set node version on nightly visual tests (#485) * chore/UIDS-476 documentation updates (#486) * Chore/ Add Percy snapshots for buttons (#488) * Chore/ Delete old sample file for cypress tests (#482) * Merge hotfix/1.24.1 into develop branch (#493) * allows Tooltip to open on hover (#487) * Merge release/1.25.0 into develop branch (#495) * allows Tooltip to open on hover (#487) * Prepare hotfix 1.24.1 (#492) * Prepare release 1.25.0 Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Merge hotfix/1.25.1 into develop branch (#499) * allows Tooltip to open on hover (#487) * Prepare hotfix 1.24.1 (#492) * Merge release/1.25.0 into main branch (#494) * HOTFIX update tooltip primary variant to ux-emerald (#415) * Feature RS-8352 Tabs (#477) Add Tabs and Tabs with react-bootstrap and styled-components * feature/UIDS-442 add Button to DS (#450) Adds react-bootstrap and Button component to the Design System * Bug/UIDS-484 Set node version on nightly visual tests (#485) * chore/UIDS-476 documentation updates (#486) * Chore/ Add Percy snapshots for buttons (#488) * Chore/ Delete old sample file for cypress tests (#482) * Merge hotfix/1.24.1 into develop branch (#493) * allows Tooltip to open on hover (#487) * Prepare release 1.25.0 Co-authored-by: Rachel Roppolo Co-authored-by: Jane Sebastian Co-authored-by: Jason Basuil Co-authored-by: brianCollinsUI <84730553+brianCollinsUI@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * update relative bootstrap imports (#497) * Prepare hotfix 1.25.1 Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Rachel Roppolo Co-authored-by: Jane Sebastian Co-authored-by: brianCollinsUI <84730553+brianCollinsUI@users.noreply.github.com> * Chore/wait a bit longer for things to render on some percy snapshots (#503) * UIDS-438 Add AsyncCreatableSelect (#500) * UIDS-506 Update Form to handle GET method (#507) Previously passing a GET method would have worked for Rails, but it wouldn't put the params in the URL which is the expected behavior. This makes it so we properly pass GET directly to the form method parameter. One other thing this does is remove the CSRF params if GET is passed. These are ignored in GET and thus aren't necessary and would add extra params to the URL. One potential upgrade that was left on the cutting room floor was passing any extra props directly to the form component. * CHORE Fix node version in deploy action (#510) * CHORE Fix yaml spacing on deploy action (#512) * feature/UIDS-312 add Dropdown to DS (#502) * adds Dropdown and subcomponents * adds DropdownIconToggle * creates shared button mixins * remove children proptype, consolidate shared proptypes * add Percy snapshots for Dropdowns * Prepare release 1.26.0 Co-authored-by: Rachel Roppolo Co-authored-by: Jane Sebastian Co-authored-by: Jason Basuil Co-authored-by: brianCollinsUI <84730553+brianCollinsUI@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bob Saris --- .github/workflows/gh-pages-deploy.yml | 4 + cypress/integration/dropdown_spec.js | 28 ++ cypress/integration/table_spec.js | 2 +- cypress/integration/tooltip_spec.js | 1 + package.json | 2 +- scss/buttons.scss | 175 ++++++++++++ spec/__snapshots__/Storyshots.test.js.snap | 285 +++++++++++++++++++- src/Button/Button.scss | 163 +---------- src/Dropdown/Dropdown.jsx | 124 +++++++++ src/Dropdown/Dropdown.mdx | 74 +++++ src/Dropdown/Dropdown.stories.jsx | 87 ++++++ src/Dropdown/Dropdown.types.js | 13 + src/Dropdown/DropdownIconToggle.jsx | 46 ++++ src/Dropdown/DropdownIconToggle.scss | 10 + src/Dropdown/DropdownItem.jsx | 80 ++++++ src/Dropdown/DropdownItem.scss | 15 ++ src/Dropdown/DropdownMenu.jsx | 105 ++++++++ src/Dropdown/DropdownToggle.jsx | 63 +++++ src/Dropdown/DropdownToggle.scss | 43 +++ src/Dropdown/index.js | 13 + src/Form/Form.jsx | 7 +- src/Form/Form.mdx | 11 +- src/Select/AsyncCreatableSelect.jsx | 120 +++++++++ src/Select/AsyncCreatableSelect.stories.jsx | 39 +++ src/Select/index.js | 4 + src/index.js | 16 ++ 26 files changed, 1351 insertions(+), 179 deletions(-) create mode 100644 cypress/integration/dropdown_spec.js create mode 100644 src/Dropdown/Dropdown.jsx create mode 100644 src/Dropdown/Dropdown.mdx create mode 100644 src/Dropdown/Dropdown.stories.jsx create mode 100644 src/Dropdown/Dropdown.types.js create mode 100644 src/Dropdown/DropdownIconToggle.jsx create mode 100644 src/Dropdown/DropdownIconToggle.scss create mode 100644 src/Dropdown/DropdownItem.jsx create mode 100644 src/Dropdown/DropdownItem.scss create mode 100644 src/Dropdown/DropdownMenu.jsx create mode 100644 src/Dropdown/DropdownToggle.jsx create mode 100644 src/Dropdown/DropdownToggle.scss create mode 100644 src/Dropdown/index.js create mode 100644 src/Select/AsyncCreatableSelect.jsx create mode 100644 src/Select/AsyncCreatableSelect.stories.jsx diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index 786b85ca..e52a0bf5 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -12,6 +12,10 @@ steps: - name: Checkout branch uses: actions/checkout@v2 + - name: Setup node + uses: actions/setup-node@v1 + with: + node-version: '14.17.4' - name: Configure npm run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ && diff --git a/cypress/integration/dropdown_spec.js b/cypress/integration/dropdown_spec.js new file mode 100644 index 00000000..0c551f38 --- /dev/null +++ b/cypress/integration/dropdown_spec.js @@ -0,0 +1,28 @@ +const dropdowns = [ + { + name: 'Default', + path: 'design-system-dropdown--default', + class: '.Dropdown', + }, + { + name: 'Sizes', + path: 'design-system-dropdown--sizes', + class: '.Dropdown', + }, + { + name: 'Icon', + path: 'design-system-dropdown--icon', + class: '.Dropdown', + }, +]; + +describe('Dropdown', () => { + dropdowns.forEach((test) => { + it(test.name, () => { + cy.visit(test.path); + cy.get('#storybook-preview-iframe').iframe().find(test.class).should('exist'); + cy.wait(1000); + cy.percySnapshot(test.path); + }); + }); +}); diff --git a/cypress/integration/table_spec.js b/cypress/integration/table_spec.js index f9a9aa1d..f728ed01 100644 --- a/cypress/integration/table_spec.js +++ b/cypress/integration/table_spec.js @@ -71,7 +71,7 @@ describe('Table', () => { it(test.name, () => { cy.visit(test.path); cy.get('#storybook-preview-iframe').iframe().find(test.class).should('exist'); - cy.wait(1000); + cy.wait(2000); cy.percySnapshot(test.path); }); }); diff --git a/cypress/integration/tooltip_spec.js b/cypress/integration/tooltip_spec.js index 81344c71..08c33d02 100644 --- a/cypress/integration/tooltip_spec.js +++ b/cypress/integration/tooltip_spec.js @@ -34,6 +34,7 @@ describe('Tooltip', () => { it(test.name, () => { cy.visit(test.path); cy.get('#storybook-preview-iframe').iframe().find('.Tooltip__icon').click(); + cy.wait(2000); cy.percySnapshot(test.path); }); }); diff --git a/package.json b/package.json index 1bf2265a..b9ff583f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.25.1", + "version": "1.26.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/scss/buttons.scss b/scss/buttons.scss index c36faf8a..489e3b1c 100644 --- a/scss/buttons.scss +++ b/scss/buttons.scss @@ -17,3 +17,178 @@ color: $ux-white; } } + +$primary: $ux-emerald-600; +$danger: $ux-red; +$warning: $ux-yellow-400; + +@mixin btn-primary { + $btn-primary-background: $primary; + $btn-primary-border: $primary; + $btn-primary-color: $ux-white; + + $btn-primary-hover-background: $ux-emerald-700; + $btn-primary-hover-border: $ux-emerald-700; + $btn-primary-hover-color: $ux-white; + + $btn-primary-active-background: $ux-emerald-800; + $btn-primary-active-border: $ux-emerald-800; + $btn-primary-active-color: $ux-white; + + @include button-variant( + $btn-primary-background, + $btn-primary-border, + $btn-primary-color, + + $btn-primary-hover-background, + $btn-primary-hover-border, + $btn-primary-hover-color, + + $btn-primary-active-background, + $btn-primary-active-border, + $btn-primary-active-color, + ); +} + +@mixin btn-outline-primary { + $btn-outline-primary-color: $primary; + $btn-outline-primary-color-hover: $ux-white; + + $btn-outline-primary-hover-background: $ux-emerald-700; + $btn-outline-primary-hover-border: $ux-emerald-700; + $btn-outline-primary-hover-color: $ux-white; + + $btn-outline-primary-border: $primary; + + $btn-outline-primary-active-background: $ux-emerald-800; + $btn-outline-primary-active-border-color: $ux-emerald-800; + + @include button-outline-variant( + $btn-outline-primary-color, + $btn-outline-primary-color-hover, + + $btn-outline-primary-hover-background, + $btn-outline-primary-hover-border, + $btn-outline-primary-hover-color, + ); + border-color: $btn-outline-primary-border; + + &:active { + background-color: $btn-outline-primary-active-background; + border-color: $btn-outline-primary-active-border-color; + } +} + +@mixin btn-danger { + $btn-danger-background: $danger; + $btn-danger-border: $danger; + $btn-danger-color: $ux-white; + + $btn-danger-hover-background: $ux-red-600; + $btn-danger-hover-border: $ux-red-600; + $btn-danger-hover-color: $ux-white; + + $btn-danger-active-background: $ux-red-700; + $btn-danger-active-border: $ux-red-700; + $btn-danger-active-color: $ux-white; + + @include button-variant( + $btn-danger-background, + $btn-danger-border, + $btn-danger-color, + + $btn-danger-hover-background, + $btn-danger-hover-border, + $btn-danger-hover-color, + + $btn-danger-active-background, + $btn-danger-active-border, + $btn-danger-active-color, + ); +} + +@mixin btn-outline-danger { + $btn-outline-danger-color: $danger; + $btn-outline-danger-color-hover: $ux-white; + + $btn-outline-danger-hover-background: $ux-red-600; + $btn-outline-danger-hover-border: $ux-red-600; + $btn-outline-danger-hover-color: $ux-white; + + $btn-outline-danger-border: $danger; + + $btn-outline-danger-active-background: $ux-red-700; + $btn-outline-danger-active-border-color: $ux-red-700; + + @include button-outline-variant( + $btn-outline-danger-color, + $btn-outline-danger-color-hover, + + $btn-outline-danger-hover-background, + $btn-outline-danger-hover-border, + $btn-outline-danger-hover-color, + ); + border-color: $btn-outline-danger-border; + + &:active { + background-color: $btn-outline-danger-active-background; + border-color: $btn-outline-danger-active-border-color; + } +} + +@mixin btn-warning { + $btn-warning-background: $warning; + $btn-warning-border: $warning; + $btn-warning-color: $ux-yellow-900; + + $btn-warning-hover-background: $ux-yellow-500; + $btn-warning-hover-border: $ux-yellow-500; + $btn-warning-hover-color: $ux-yellow-900; + + $btn-warning-active-background: $ux-yellow-600; + $btn-warning-active-border: $ux-yellow-600; + $btn-warning-active-color: $ux-yellow-900; + + @include button-variant( + $btn-warning-background, + $btn-warning-border, + $btn-warning-color, + + $btn-warning-hover-background, + $btn-warning-hover-border, + $btn-warning-hover-color, + + $btn-warning-active-background, + $btn-warning-active-border, + $btn-warning-active-color, + ); +} + +@mixin btn-outline-warning { + $btn-outline-warning-color: $ux-yellow-900; + $btn-outline-warning-color-hover: $ux-yellow-900; + + $btn-outline-warning-hover-background: $warning; + $btn-outline-warning-hover-border: $warning; + $btn-outline-warning-hover-color: $ux-yellow-900; + + $btn-outline-warning-border: $ux-yellow-500; + + $btn-outline-warning-active-background: $ux-yellow-500; + $btn-outline-warning-active-border-color: $ux-yellow-500; + + @include button-outline-variant( + $btn-outline-warning-color, + $btn-outline-warning-color-hover, + + $btn-outline-warning-hover-background, + $btn-outline-warning-hover-border, + $btn-outline-warning-hover-color, + ); + border-color: $btn-outline-warning-border; + + &:active { + background-color: $btn-outline-warning-active-background; + border-color: $btn-outline-warning-active-border-color; + } +} diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index e742fa4a..3064912f 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -2739,6 +2739,154 @@ exports[`Storyshots Design System/Copy To Clipboard Default 1`] = `
`; +exports[`Storyshots Design System/Dropdown Default 1`] = ` +
+
+ +
+
+
+ +
+
+`; + +exports[`Storyshots Design System/Dropdown Icon 1`] = ` +
+
+ +
+
+`; + +exports[`Storyshots Design System/Dropdown Sizes 1`] = ` +
+
+ +
+
+
+ +
+
+`; + exports[`Storyshots Design System/Form Default 1`] = `
+
+ +
+
+ + +
+ + +
+ + + +`; + +exports[`Storyshots Design System/Selects/AsyncCreatable Default 1`] = ` +
+
+
+
+
+ Select... +
+
+
+ ( + + { children } + + ); + +Dropdown.propTypes = { + /** + Aligns the dropdown menu to the specified side of the Dropdown toggle. + You can also align the menu responsively for breakpoints starting at sm and up. + The alignment direction will affect the specified breakpoint or larger. + Note: Using responsive alignment will disable Popper usage for positioning. + */ + align: DROPDOWN_ALIGN_PROP_TYPE, + /** + You can use a custom element type for this component. + */ + as: PropTypes.elementType, + /** + Controls the auto close behaviour of the dropdown when clicking + outside of the button or the list. + */ + autoClose: PropTypes.oneOf([ + true, false, 'outside', 'inside', + ]), + /** + Change the underlying component CSS base class name and modifier class names prefix. + This is an escape hatch for working with heavily customized bootstrap css. + */ + bsPrefix: PropTypes.string, + /** + Determines the direction and location of the Menu in relation to it's Toggle. + */ + className: PropTypes.string, + drop: PropTypes.oneOf([ + 'up', 'start', 'end', 'down', + ]), + /** + Allow Dropdown to flip in case of an overlapping on the reference element. + For more information refer to Popper.js's flip docs. + */ + flip: PropTypes.bool, + /** + Controls the focus behavior for when the Dropdown is opened. + Set to true to always focus the first menu item, + keyboard to focus only when navigating via the keyboard, + or false to disable completely. + The Default behavior is false unless the Menu has a role="menu" where it will default to + keyboard to match the recommended ARIA Authoring practices. + */ + focusFirstItemOnShow: PropTypes.oneOf([ + false, true, 'keyboard', + ]), + navbar: PropTypes.bool, + /** + Whether or not the Dropdown is visible. + */ + show: PropTypes.bool, + /** + A callback fired when a menu item is selected. + (eventKey: any, event: Object) => any + */ + onSelect: PropTypes.func, + /** + A callback fired when the Dropdown wishes to change visibility. + Called with the requested show value, the DOM event, and the source that fired it: + 'click','keydown','rootClose', or 'select'. + */ + onToggle: PropTypes.func, +}; + +Dropdown.defaultProps = { + align: 'start', + as: undefined, + autoClose: true, + bsPrefix: 'dropdown', + className: undefined, + drop: undefined, + flip: undefined, + focusFirstItemOnShow: undefined, + navbar: false, + onSelect: undefined, + onToggle: undefined, + show: undefined, +}; + +export default Dropdown; diff --git a/src/Dropdown/Dropdown.mdx b/src/Dropdown/Dropdown.mdx new file mode 100644 index 00000000..ec17bc3d --- /dev/null +++ b/src/Dropdown/Dropdown.mdx @@ -0,0 +1,74 @@ +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; +import Dropdown from './Dropdown'; + +# Dropdown + +## + +

+ Dropdowns are toggleable, contextual overlays for displaying lists of links and more. + Dropdowns are built using a third-party library Popper.js, which provides dynamic positioning and viewport detection. +

+ + + + + +### When to use +- Reason 1 +- Reason 2 + +### When to not use +- Reason 1 +- Reason 2 + +## Props + + + +## Stories + +### Default + +- The basic Dropdown is composed of a wrapping Dropdown and inner ``, and ``. By default the `` will render a Button component and accepts all the same props. + + + + + +### Sizes + + + + + +### Icon +- A single icon button that opens a ``. + + + + + + +## Formatting + +### States + +### Anatomy +- **Toggle: ** A button to open the dropdown menu. + + +### Sizing + +### Alignment + + +## Best practices + +### General + +### Behavior + +### Implementation + +### UX Copy diff --git a/src/Dropdown/Dropdown.stories.jsx b/src/Dropdown/Dropdown.stories.jsx new file mode 100644 index 00000000..9ac3d076 --- /dev/null +++ b/src/Dropdown/Dropdown.stories.jsx @@ -0,0 +1,87 @@ +import React from 'react'; + +import { + Dropdown, DropdownToggle, DropdownItem, DropdownMenu, DropdownIconToggle, +} from 'src/Dropdown'; +import { faFileAlt } from '@fortawesome/pro-regular-svg-icons'; + +import mdx from './Dropdown.mdx'; + +export default { + title: 'Design System/Dropdown', + component: Dropdown, + subcomponents: { + DropdownToggle, DropdownItem, DropdownMenu, + }, + parameters: { + docs: { + page: mdx, + }, + a11y: {}, + }, +}; + +export const Default = () => ( + <> + + + Dropdown toggle + + + Action + Another action + Click me + + +
+ + + Dropdown toggle + + + Action + Another action + Click me + + + +); + +export const Sizes = () => ( + <> + + + Small toggle + + + Action + Another action + Click me + + +
+ + + Medium toggle + + + Action + Another action + Click me + + + +); + +export const Icon = () => ( + <> + + + + Action + Another action + Click me + + + +); diff --git a/src/Dropdown/Dropdown.types.js b/src/Dropdown/Dropdown.types.js new file mode 100644 index 00000000..fd71366a --- /dev/null +++ b/src/Dropdown/Dropdown.types.js @@ -0,0 +1,13 @@ +import PropTypes from 'prop-types'; + +const alignDirection = PropTypes.oneOf(['start', 'end']); + +// PropType for 'align' prop can be reused for both Dropdown and DropdownMenu components +export const DROPDOWN_ALIGN_PROP_TYPE = PropTypes.oneOfType([ + alignDirection, + PropTypes.shape({ sm: alignDirection }), + PropTypes.shape({ md: alignDirection }), + PropTypes.shape({ lg: alignDirection }), + PropTypes.shape({ xl: alignDirection }), + PropTypes.shape({ xxl: alignDirection }), +]); diff --git a/src/Dropdown/DropdownIconToggle.jsx b/src/Dropdown/DropdownIconToggle.jsx new file mode 100644 index 00000000..3c198ea4 --- /dev/null +++ b/src/Dropdown/DropdownIconToggle.jsx @@ -0,0 +1,46 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faEllipsisV } from '@fortawesome/pro-solid-svg-icons'; + +import './DropdownIconToggle.scss'; + +const DropdownIconToggle = React.forwardRef(({ + ariaLabel, + ariaLabelledBy, + children, + icon, + onClick, +}, ref) => ( + +)); + +DropdownIconToggle.propTypes = { + ariaLabel: PropTypes.string, + ariaLabelledBy: PropTypes.string, + icon: PropTypes.object, + onClick: PropTypes.func, +}; + +DropdownIconToggle.defaultProps = { + ariaLabel: undefined, + ariaLabelledBy: undefined, + icon: faEllipsisV, + onClick: undefined, +}; + +export default DropdownIconToggle; diff --git a/src/Dropdown/DropdownIconToggle.scss b/src/Dropdown/DropdownIconToggle.scss new file mode 100644 index 00000000..3c173a25 --- /dev/null +++ b/src/Dropdown/DropdownIconToggle.scss @@ -0,0 +1,10 @@ +@import '../../scss/theme'; + +.DropdownIconToggle { + all: unset; + color: $ux-blue-500; + + &:hover { + color: $ux-blue-600; + } +} diff --git a/src/Dropdown/DropdownItem.jsx b/src/Dropdown/DropdownItem.jsx new file mode 100644 index 00000000..5ba0391c --- /dev/null +++ b/src/Dropdown/DropdownItem.jsx @@ -0,0 +1,80 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +import { Dropdown as RBDropdown } from 'react-bootstrap'; + +import './DropdownItem.scss'; + +const DropdownItem = ({ + active, + as, + children, + className, + disabled, + eventKey, + href, + onClick, + bsPrefix, + ...props +}) => ( + + { children } + + ); + +DropdownItem.propTypes = { + /** + Highlight the menu item as active. + */ + active: PropTypes.bool, + /** + You can use a custom element type for this component. + */ + as: PropTypes.elementType, + /** + Change the underlying component CSS base class name and modifier class names prefix. + This is an escape hatch for working with heavily customized bootstrap css. + */ + bsPrefix: PropTypes.string, + className: PropTypes.string, + /** + Disable the menu item, making it unselectable. + */ + disabled: PropTypes.bool, + /** + Value passed to the onSelect handler, useful for identifying the selected menu item. + */ + eventKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + /** + HTML href attribute corresponding to a.href. + */ + href: PropTypes.string, + /** + Callback fired when the menu item is clicked. + */ + onClick: PropTypes.func, +}; + +DropdownItem.defaultProps = { + active: undefined, + as: undefined, + bsPrefix: 'dropdown-item', + className: undefined, + disabled: false, + eventKey: undefined, + href: undefined, + onClick: undefined, +}; + +export default DropdownItem; diff --git a/src/Dropdown/DropdownItem.scss b/src/Dropdown/DropdownItem.scss new file mode 100644 index 00000000..63fd5903 --- /dev/null +++ b/src/Dropdown/DropdownItem.scss @@ -0,0 +1,15 @@ +@import '../../scss/theme'; + +.DropdownItem { + @include font-type-30; + color: $ux-gray-900; + + &:hover { + background-color: $ux-blue-100; + } + + &:focus { + background-color: $ux-blue-200; + color: $ux-gray-900; + } +} diff --git a/src/Dropdown/DropdownMenu.jsx b/src/Dropdown/DropdownMenu.jsx new file mode 100644 index 00000000..4e0b7db4 --- /dev/null +++ b/src/Dropdown/DropdownMenu.jsx @@ -0,0 +1,105 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +import { Dropdown as RBDropdown } from 'react-bootstrap'; +import { DROPDOWN_ALIGN_PROP_TYPE } from './Dropdown.types'; + +const DropdownMenu = ({ + align, + as, + children, + className, + flip, + onSelect, + popperConfig, + renderOnMount, + rootCloseEvent, + show, + variant, + bsPrefix, + ...props +}) => ( + + { children } + + ); + +DropdownMenu.propTypes = { + /** + Aligns the dropdown menu to the specified side of the Dropdown toggle. + You can also align the menu responsively for breakpoints starting at sm and up. + The alignment direction will affect the specified breakpoint or larger. + Note: Using responsive alignment will disable Popper usage for positioning. + */ + align: DROPDOWN_ALIGN_PROP_TYPE, + /** + You can use a custom element type for this component. + */ + as: PropTypes.elementType, + /** + Change the underlying component CSS base class name and modifier class names prefix. + This is an escape hatch for working with heavily customized bootstrap css. + */ + bsPrefix: PropTypes.string, + className: PropTypes.string, + /** + Have the dropdown switch to it's opposite placement when necessary to stay on screen. + */ + flip: PropTypes.bool, + /** + A set of popper options and props passed directly to Popper. + */ + popperConfig: PropTypes.object, + /** + Whether to render the dropdown menu in the DOM before the first time it is shown. + */ + renderOnMount: PropTypes.bool, + /** + Which event when fired outside the component will cause it to be closed. + Note: For custom dropdown components, you will have to pass the rootCloseEvent to + in your custom dropdown menu component (similarly to how it is implemented in + ). + */ + rootCloseEvent: PropTypes.oneOf([ + 'click', 'mousedown', + ]), + /** + Controls the visibility of the Dropdown menu. + */ + show: PropTypes.bool, + /** + Menu color variant. + */ + variant: PropTypes.string, + onSelect: PropTypes.func, +}; + +DropdownMenu.defaultProps = { + align: undefined, + as: undefined, + className: undefined, + flip: true, + onSelect: undefined, + popperConfig: undefined, + renderOnMount: undefined, + rootCloseEvent: undefined, + show: undefined, + variant: undefined, + bsPrefix: 'dropdown-menu', +}; + +export default DropdownMenu; diff --git a/src/Dropdown/DropdownToggle.jsx b/src/Dropdown/DropdownToggle.jsx new file mode 100644 index 00000000..0f52910a --- /dev/null +++ b/src/Dropdown/DropdownToggle.jsx @@ -0,0 +1,63 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; + +import { Dropdown as RBDropdown } from 'react-bootstrap'; + +import './DropdownToggle.scss'; + +const DropdownToggle = ({ + as, + childBsPrefix, + children, + className, + id, + leadingIcon, + ...props +}) => ( + + { leadingIcon && ()} + { children } + + ); + +DropdownToggle.propTypes = { + /** + You can use a custom element type for this component. + */ + as: PropTypes.elementType, + /** + Change the underlying component CSS base class name and modifier class names prefix. + This is an escape hatch for working with heavily customized bootstrap css. + */ + bsPrefix: PropTypes.string, + /** + To pass through to the underlying button or whatever from DropdownButton + */ + childBsPrefix: PropTypes.string, + className: PropTypes.string, + /** + An html id attribute, necessary for assistive technologies, such as screen readers. + */ + id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + leadingIcon: PropTypes.object, +}; + +DropdownToggle.defaultProps = { + as: undefined, + bsPrefix: 'dropdown-toggle', + className: undefined, + childBsPrefix: undefined, + id: undefined, + leadingIcon: undefined, +}; + +export default DropdownToggle; diff --git a/src/Dropdown/DropdownToggle.scss b/src/Dropdown/DropdownToggle.scss new file mode 100644 index 00000000..d8da252e --- /dev/null +++ b/src/Dropdown/DropdownToggle.scss @@ -0,0 +1,43 @@ +@import '../../scss/theme'; + +$primary: $ux-emerald-600; +$danger: $ux-red; +$warning: $ux-yellow-400; + +.DropdownToggle { + @include font-type-30--bold; + + i, svg { + &.icon-left { + margin-right: $ux-spacing-20; + } + } + + &.btn-sm { + border-radius: $ux-border-radius; + } + + &.btn-primary { + @include btn-primary; + } + + &.btn-outline-primary { + @include btn-outline-primary; + } + + &.btn-danger { + @include btn-danger; + } + + &.btn-outline-danger { + @include btn-outline-danger; + } + + &.btn-warning { + @include btn-warning; + } + + &.btn-outline-warning { + @include btn-outline-warning; + } +} diff --git a/src/Dropdown/index.js b/src/Dropdown/index.js new file mode 100644 index 00000000..bd8763f4 --- /dev/null +++ b/src/Dropdown/index.js @@ -0,0 +1,13 @@ +import Dropdown from './Dropdown'; +import DropdownToggle from './DropdownToggle'; +import DropdownItem from './DropdownItem'; +import DropdownMenu from './DropdownMenu'; +import DropdownIconToggle from './DropdownIconToggle'; + +export { + Dropdown, + DropdownToggle, + DropdownItem, + DropdownMenu, + DropdownIconToggle, +}; diff --git a/src/Form/Form.jsx b/src/Form/Form.jsx index dd72a8c4..c50c70f8 100644 --- a/src/Form/Form.jsx +++ b/src/Form/Form.jsx @@ -18,20 +18,21 @@ const Form = forwardRef(({ }, ref) => { const hasMethod = method != null; const hasCSRF = CSRFParam && CSRFToken; + const isGetFormMethod = method === 'GET'; return (
- { hasCSRF && } - { hasMethod && } + { hasCSRF && !isGetFormMethod && } + { hasMethod && !isGetFormMethod && } {children} ); diff --git a/src/Form/Form.mdx b/src/Form/Form.mdx index 1586ec0e..e0ccade7 100644 --- a/src/Form/Form.mdx +++ b/src/Form/Form.mdx @@ -13,13 +13,12 @@ import Form from './Form'; -### When to use -- Reason 1 -- Reason 2 +### When to use +- You are writing a page which submits a form via HTML +- You are handling a grouping of inputs for a single API endpoint and want to ensure it functions like a traditional form. ### When to not use -- Reason 1 -- Reason 2 +- You want to style something to look like a form but it is not interactive ## Props @@ -37,7 +36,7 @@ import Form from './Form'; ### States -### Anatomy +### Anatomy ### Sizing diff --git a/src/Select/AsyncCreatableSelect.jsx b/src/Select/AsyncCreatableSelect.jsx new file mode 100644 index 00000000..2939e7ad --- /dev/null +++ b/src/Select/AsyncCreatableSelect.jsx @@ -0,0 +1,120 @@ +import React from 'react'; +import propTypes from 'prop-types'; +import AsyncCreatable from 'react-select/async-creatable'; + +import zStack from 'src/Styles/zStack'; + +import { defaultStyles, defaultTheme, SELECT_SIZES } from './styles'; + +const AsyncCreatableSelect = ({ + 'aria-label': ariaLabel, + 'aria-labelledby': ariaLabelledBy, + className, + defaultOptions, + defaultValue, + disabled, + getOptionLabel, + getOptionValue, + isClearable, + id, + ignoreCase, + inputId, + isLoading, + loadOptions, + modal, + name, + noOptionsMessage, + placeholder, + size, + value, + + onChange, + ...props +}) => ( + ( + modal ? + base : + { ...base, zIndex: zStack.zIndexModalBackdrop + 1 } + ), + }} + theme={defaultTheme} + value={value} + onBlurResetsInput={false} + onChange={onChange} + onSelectResetsInput={false} + /> +); + +AsyncCreatableSelect.propTypes = { + 'aria-label': propTypes.string, + 'aria-labelledby': propTypes.string, + className: propTypes.string, + defaultOptions: propTypes.oneOfType([propTypes.bool, propTypes.array]), + defaultValue: propTypes.object, + disabled: propTypes.bool, + getOptionLabel: propTypes.func, + getOptionValue: propTypes.func, + id: propTypes.string, + ignoreCase: propTypes.bool, + inputId: propTypes.string, + isClearable: propTypes.bool, + isLoading: propTypes.bool, + loadOptions: propTypes.func.isRequired, + modal: propTypes.bool, + name: propTypes.string, + noOptionsMessage: propTypes.func, + placeholder: propTypes.string, + size: propTypes.oneOf(Object.values(SELECT_SIZES)), + value: propTypes.object, + + onChange: propTypes.func, +}; + +AsyncCreatableSelect.defaultProps = { + 'aria-label': undefined, + 'aria-labelledby': undefined, + className: undefined, + defaultOptions: false, + defaultValue: undefined, + disabled: false, + getOptionLabel: undefined, + getOptionValue: undefined, + id: undefined, + ignoreCase: undefined, + inputId: undefined, + isClearable: false, + isLoading: false, + modal: false, + name: undefined, + noOptionsMessage: undefined, + placeholder: undefined, + size: SELECT_SIZES.SMALL, + value: undefined, + + onChange: undefined, +}; + +export default AsyncCreatableSelect; diff --git a/src/Select/AsyncCreatableSelect.stories.jsx b/src/Select/AsyncCreatableSelect.stories.jsx new file mode 100644 index 00000000..f676bac5 --- /dev/null +++ b/src/Select/AsyncCreatableSelect.stories.jsx @@ -0,0 +1,39 @@ +import React from 'react'; + +import AsyncCreatableSelect from 'src/Select/AsyncCreatableSelect'; + +export default { + title: 'Design System/Selects/AsyncCreatable', + component: AsyncCreatableSelect, +}; + +const options = [ + { label: 'Red', value: 1 }, + { label: 'Green', value: 2 }, + { label: 'Blue', value: 3 }, +]; + +async function loadOptions(search) { + await new Promise((resolve) => setTimeout(resolve, 2000)); + + if (!search || !search.length) { return options; } + + return options.filter(({ label }) => label.toLowerCase().includes(search.toLowerCase())); +} + +export const Default = () => { + const handleChange = () => {}; + const handleInputChange = () => {}; + + return ( + label} + getOptionValue={({ value }) => value} + isClearable + loadOptions={loadOptions} + onChange={handleChange} + onInputChange={handleInputChange} + /> + ); +}; diff --git a/src/Select/index.js b/src/Select/index.js index e4c9d76a..32ec9377 100644 --- a/src/Select/index.js +++ b/src/Select/index.js @@ -1,3 +1,5 @@ +import { components as SelectComponents } from 'react-select'; +import AsyncCreatableSelect from './AsyncCreatableSelect'; import AsyncSelect from './AsyncSelect'; import CreatableSelect from './CreatableSelect'; import Option from './Option'; @@ -6,10 +8,12 @@ import ValueContainer from './ValueContainer'; import { SELECT_SIZES } from './styles'; export { + AsyncCreatableSelect, AsyncSelect, CreatableSelect, Option, SELECT_SIZES, + SelectComponents, SingleSelect, ValueContainer, }; diff --git a/src/index.js b/src/index.js index c904e721..16b16f3b 100644 --- a/src/index.js +++ b/src/index.js @@ -7,6 +7,13 @@ import CheckboxButtonGroup from 'src/CheckboxButtonGroup'; import { ORIENTATIONS as BUTTON_GROUP_ORIENTATIONS } from 'src/ControlButtonGroup'; import CopyToClipboard from 'src/CopyToClipboard'; import CopyToClipboardButton from 'src/CopyToClipboardButton'; +import { + Dropdown, + DropdownToggle, + DropdownIconToggle, + DropdownItem, + DropdownMenu, +} from 'src/Dropdown'; import FadeTransition from 'src/FadeTransition'; import Form from 'src/Form'; import FormControlLabel from 'src/FormControlLabel'; @@ -29,9 +36,11 @@ import RadioButton from 'src/RadioButton'; import RadioButtonGroup from 'src/RadioButtonGroup'; import { AsyncSelect, + AsyncCreatableSelect, CreatableSelect, Option, SELECT_SIZES, + SelectComponents, SingleSelect, ValueContainer, } from 'src/Select'; @@ -61,6 +70,7 @@ export { Alert, Avatar, AsyncSelect, + AsyncCreatableSelect, Button, BUTTON_GROUP_ORIENTATIONS, Card, @@ -72,6 +82,11 @@ export { CopyToClipboard, CopyToClipboardButton, CreatableSelect, + Dropdown, + DropdownToggle, + DropdownIconToggle, + DropdownItem, + DropdownMenu, FadeTransition, Form, FormControlLabel, @@ -94,6 +109,7 @@ export { RadioButton, RadioButtonGroup, SELECT_SIZES, + SelectComponents, SingleSelect, Tab, Tabs, From 3c22d6a712423c9e2000bab45eda821d9eb8979f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 10 Jan 2022 12:17:43 -0800 Subject: [PATCH 07/33] Merge release/1.26.1 into main branch (#517) * UIDS-501 Export color variables for use in js (#504) * use font-type-30 on form-control (#516) * Prepare release 1.26.1 --- jest.config.js | 9 +- package.json | 6 +- scss/colors/palette.scss | 11 +- scss/forms/form_group.scss | 2 + scss/variables.scss | 127 ++ spec/__snapshots__/Storyshots.test.js.snap | 164 ++- src/Styles/colors/palette.js | 135 +- yarn.lock | 1439 ++++++++++++++------ 8 files changed, 1338 insertions(+), 555 deletions(-) create mode 100644 scss/variables.scss diff --git a/jest.config.js b/jest.config.js index 65fcce88..88b02ee9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -78,7 +78,7 @@ module.exports = { // A map from regular expressions to module names that allow to stub out resources with a single module moduleNameMapper: { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|mdx)$": "/spec/__mocks__/fileMock.js", - '\\.(css|less|scss)$': '/spec/__mocks__/styleMock.js', + '\\.(?:(?!variables).)+.(css|less|scss)$': '/spec/__mocks__/styleMock.js', '^src/([^\\.]*)$': "/src/$1", }, @@ -136,7 +136,7 @@ module.exports = { // snapshotSerializers: [], // The test environment that will be used for testing - // testEnvironment: "jest-environment-jsdom", + testEnvironment: "jest-environment-jsdom", // Options that will be passed to the testEnvironment // testEnvironmentOptions: {}, @@ -171,6 +171,11 @@ module.exports = { // A map from regular expressions to paths to transformers // transform: null, + "transform": { + "^.+\\.(js|jsx|ts|tsx)$": "/node_modules/babel-jest", + // transform exported scss variables for use in javascript + "variables.scss$": "/node_modules/jest-css-modules-transform" + }, // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation // transformIgnorePatterns: [ diff --git a/package.json b/package.json index b9ff583f..d6052d4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.26.0", + "version": "1.26.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", @@ -84,6 +84,7 @@ "@testing-library/react-hooks": "^3.2.1", "@testing-library/user-event": "^13.5.0", "babel-eslint": "^10.0.3", + "babel-jest": "^27.4.6", "babel-loader": "^8.0.6", "babel-plugin-module-resolver": "^4.0.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", @@ -103,7 +104,8 @@ "eslint-plugin-react": "^7.18.3", "eslint-plugin-react-hooks": "^2.5.1", "eslint-utils": "^1.4.3", - "jest": "^26.6.3", + "jest": "^27.4.6", + "jest-css-modules-transform": "^4.3.0", "node-sass": "^4.14.1", "nodemon": "^2.0.15", "prop-types": "^15.6.1", diff --git a/scss/colors/palette.scss b/scss/colors/palette.scss index 62b2e220..fd9e58b9 100644 --- a/scss/colors/palette.scss +++ b/scss/colors/palette.scss @@ -1,4 +1,5 @@ -// When updating this file, please consider the values in src/Styles/palette.js +// When updating this file, please export the color variable in variables.scss +// so it is available in src/Styles/palette.js $ux-black: #000000; $ux-blue: #3F6DCA; @@ -35,11 +36,11 @@ $ux-blue-800: #0B2D72; $ux-blue-900: #031D52; $ux-emerald-100: #BFDDD5; -$ux-emerald-200: #91CABB; +$ux-emerald-200: #91CABB; $ux-emerald-300: #65B8A2; $ux-emerald-400: #3EA388; $ux-emerald-500: $ux-emerald; -$ux-emerald-600: #177863; +$ux-emerald-600: #177863; $ux-emerald-700: #156152; $ux-emerald-800: #0D4A3E; $ux-emerald-900: #073B31; @@ -108,7 +109,7 @@ $ux-sand-100: #ECE1D4; $ux-sand-200: #E8DAC9; $ux-sand-300: #E5D2BD; $ux-sand-400: #DFC7AF; -$ux-sand-500: $ux-sand; +$ux-sand-500: $ux-sand; $ux-sand-600: #D4B191; $ux-sand-700: #CFAA86; $ux-sand-800: #C59B72; @@ -116,7 +117,7 @@ $ux-sand-900: #BA8E5E; $ux-teal-100: #CAE1E2; $ux-teal-200: #A2CBCD; -$ux-teal-300: #85A9AA; +$ux-teal-300: #85A9AA; $ux-teal-400: #408F91; $ux-teal-500: #2A7779; $ux-teal-600: #1C5D5F; diff --git a/scss/forms/form_group.scss b/scss/forms/form_group.scss index aac052b4..25936437 100644 --- a/scss/forms/form_group.scss +++ b/scss/forms/form_group.scss @@ -80,10 +80,12 @@ } .form-control { + @include font-type-30; height: 2.25rem; } textarea.form-control { + @include font-type-30; height: auto; } } diff --git a/scss/variables.scss b/scss/variables.scss new file mode 100644 index 00000000..fe1192e4 --- /dev/null +++ b/scss/variables.scss @@ -0,0 +1,127 @@ +@import './colors/palette'; + +:export { + UX_BLACK: $ux-black; + UX_BLUE: $ux-blue; + UX_CREAM: $ux-cream; + UX_EMERALD: $ux-emerald; + UX_GRAY: $ux-gray; + UX_GREEN: $ux-green; + UX_NAVY: $ux-navy; + UX_ORANGE: $ux-orange; + UX_PURPLE: $ux-purple; + UX_RED: $ux-red; + UX_SAND: $ux-sand; + UX_TEAL: $ux-teal; + UX_YELLOW: $ux-yellow; + UX_WHITE: $ux-white; + UX_BLUE_100: $ux-blue-100; + UX_BLUE_200: $ux-blue-200; + UX_BLUE_300: $ux-blue-300; + UX_BLUE_400: $ux-blue-400; + UX_BLUE_500: $ux-blue; + UX_BLUE_600: $ux-blue-600; + UX_BLUE_700: $ux-blue-700; + UX_BLUE_800: $ux-blue-800; + UX_BLUE_900: $ux-blue-900; + + UX_EMERALD_100: $ux-emerald-100; + UX_EMERALD_200: $ux-emerald-200; + UX_EMERALD_300: $ux-emerald-300; + UX_EMERALD_400: $ux-emerald-400; + UX_EMERALD_500: $ux-emerald; + UX_EMERALD_600: $ux-emerald-600; + UX_EMERALD_700: $ux-emerald-700; + UX_EMERALD_800: $ux-emerald-800; + UX_EMERALD_900: $ux-emerald-900; + + UX_GRAY_100: $ux-gray-100; + UX_GRAY_200: $ux-gray-200; + UX_GRAY_300: $ux-gray-300; + UX_GRAY_400: $ux-gray-400; + UX_GRAY_500: $ux-gray; + UX_GRAY_600: $ux-gray-600; + UX_GRAY_700: $ux-gray-700; + UX_GRAY_800: $ux-gray-800; + UX_GRAY_900: $ux-gray-900; + + UX_GREEN_100: $ux-green-100; + UX_GREEN_200: $ux-green-200; + UX_GREEN_300: $ux-green-300; + UX_GREEN_400: $ux-green-400; + UX_GREEN_500: $ux-green; + UX_GREEN_600: $ux-green-600; + UX_GREEN_700: $ux-green-700; + UX_GREEN_800: $ux-green-800; + UX_GREEN_900: $ux-green-900; + + UX_NAVY_100: $ux-navy-100; + UX_NAVY_200: $ux-navy-200; + UX_NAVY_300: $ux-navy-300; + UX_NAVY_400: $ux-navy-400; + UX_NAVY_500: $ux-navy; + UX_NAVY_600: $ux-navy-600; + UX_NAVY_700: $ux-navy-700; + UX_NAVY_800: $ux-navy-800; + UX_NAVY_900: $ux-navy-900; + + UX_NEUTRAL_100: $ux-white; + UX_NEUTRAL_200: $ux-cream; + UX_NEUTRAL_300: $ux-neutral-300; + UX_NEUTRAL_400: $ux-neutral-400; + UX_NEUTRAL_500: $ux-neutral-500; + UX_NEUTRAL_600: $ux-neutral-600; + UX_NEUTRAL_700: $ux-neutral-700; + UX_NEUTRAL_800: $ux-neutral-800; + UX_NEUTRAL_900: $ux-black; + + UX_ORANGE_100: $ux-orange-100; + UX_ORANGE_200: $ux-orange-200; + UX_ORANGE_300: $ux-orange-300; + UX_ORANGE_400: $ux-orange-400; + UX_ORANGE_500: $ux-orange; + UX_ORANGE_600: $ux-orange-600; + UX_ORANGE_700: $ux-orange-700; + UX_ORANGE_800: $ux-orange-800; + UX_ORANGE_900: $ux-orange-900; + + UX_RED_100: $ux-red-100; + UX_RED_200: $ux-red-200; + UX_RED_300: $ux-red-300; + UX_RED_400: $ux-red-400; + UX_RED_500: $ux-red; + UX_RED_600: $ux-red-600; + UX_RED_700: $ux-red-700; + UX_RED_800: $ux-red-800; + UX_RED_900: $ux-red-900; + + UX_SAND_100: $ux-sand-100; + UX_SAND_200: $ux-sand-200; + UX_SAND_300: $ux-sand-300; + UX_SAND_400: $ux-sand-400; + UX_SAND_500: $ux-sand; + UX_SAND_600: $ux-sand-600; + UX_SAND_700: $ux-sand-700; + UX_SAND_800: $ux-sand-800; + UX_SAND_900: $ux-sand-900; + + UX_TEAL_100: $ux-teal-100; + UX_TEAL_200: $ux-teal-200; + UX_TEAL_300: $ux-teal-300; + UX_TEAL_400: $ux-teal-400; + UX_TEAL_500: $ux-teal-500; + UX_TEAL_600: $ux-teal-600; + UX_TEAL_700: $ux-teal; + UX_TEAL_800: $ux-teal-800; + UX_TEAL_900: $ux-teal-900; + + UX_YELLOW_100: $ux-yellow-100; + UX_YELLOW_200: $ux-yellow-200; + UX_YELLOW_300: $ux-yellow-300; + UX_YELLOW_400: $ux-yellow-400; + UX_YELLOW_500: $ux-yellow; + UX_YELLOW_600: $ux-yellow-600; + UX_YELLOW_700: $ux-yellow-700; + UX_YELLOW_800: $ux-yellow-800; + UX_YELLOW_900: $ux-yellow-900; +} diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 3064912f..d8a5d047 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -2887,6 +2887,154 @@ exports[`Storyshots Design System/Dropdown Sizes 1`] = `
`; +exports[`Storyshots Design System/Dropdown Default 1`] = ` +
+
+ +
+
+
+ +
+
+`; + +exports[`Storyshots Design System/Dropdown Icon 1`] = ` +
+
+ +
+
+`; + +exports[`Storyshots Design System/Dropdown Sizes 1`] = ` +
+
+ +
+
+
+ +
+
+`; + exports[`Storyshots Design System/Form Default 1`] = `
- #21B36C + #04713C

@@ -9236,7 +9384,7 @@ exports[`Storyshots Design System/Styles/Color Palette Navy 1`] = `
- #234574 + #011936

@@ -9916,7 +10064,7 @@ exports[`Storyshots Design System/Styles/Color Palette Orange 1`] = `
- #653B05 + #3D2200

@@ -10198,7 +10346,7 @@ exports[`Storyshots Design System/Styles/Color Palette Red 1`] = `
- #851414 + #470404

diff --git a/src/Styles/colors/palette.js b/src/Styles/colors/palette.js index 12e4df84..28984cf9 100644 --- a/src/Styles/colors/palette.js +++ b/src/Styles/colors/palette.js @@ -1,135 +1,4 @@ // This can probably be generated... try to group the colors spatially plz +import colors from 'scss/variables.scss'; -const BASE_COLORS = { - UX_BLACK: '#000000', - UX_BLUE: '#3F6DCA', - UX_CREAM: '#F8F4F2', - UX_EMERALD: '#158D71', - UX_GRAY: '#A1A1A1', - UX_GREEN: '#04713C', - UX_NAVY: '#011936', - UX_ORANGE: '#F59C27', - UX_PURPLE: '#874B96', - UX_RED: '#E03131', - UX_SAND: '#DABDA2', - UX_TEAL: '#0E4749', - UX_YELLOW: '#F3CE14', - UX_WHITE: '#FFFFFF', -}; - -const COLOR_GRADIENTS = { - UX_BLUE_100: '#F1F5FE', - UX_BLUE_200: '#BDD1FB', - UX_BLUE_300: '#A6C0F5', - UX_BLUE_400: '#7497DF', - UX_BLUE_500: BASE_COLORS.UX_BLUE, - UX_BLUE_600: '#2854AF', - UX_BLUE_700: '#143C8D', - UX_BLUE_800: '#0B2D72', - UX_BLUE_900: '#031D52', - - UX_EMERALD_100: '#BFDDD5', - UX_EMERALD_200: '#91CABB', - UX_EMERALD_300: '#65B8A2', - UX_EMERALD_400: '#3EA388', - UX_EMERALD_500: BASE_COLORS.UX_EMERALD, - UX_EMERALD_600: '#177863', - UX_EMERALD_700: '#156152', - UX_EMERALD_800: '#0D4A3E', - UX_EMERALD_900: '#073B31', - - UX_GRAY_100: '#F9F9F9', - UX_GRAY_200: '#F1F1F1', - UX_GRAY_300: '#E1E1E1', - UX_GRAY_400: '#D1D1D1', - UX_GRAY_500: BASE_COLORS.UX_GRAY, - UX_GRAY_600: '#818181', - UX_GRAY_700: '#616161', - UX_GRAY_800: '#444444', - UX_GRAY_900: '#101010', - - UX_GREEN_100: '#D4F6E5', - UX_GREEN_200: '#A3F9CF', - UX_GREEN_300: '#70E2AB', - UX_GREEN_400: '#40CC88', - UX_GREEN_500: '#21B36C', - UX_GREEN_600: '#09914F', - UX_GREEN_700: BASE_COLORS.UX_GREEN, - UX_GREEN_800: '#015029', - UX_GREEN_900: '#003119', - - UX_NAVY_100: '#C4D0DF', - UX_NAVY_200: '#A3BAD2', - UX_NAVY_300: '#7396BA', - UX_NAVY_400: '#40669C', - UX_NAVY_500: '#234574', - UX_NAVY_600: '#16325A', - UX_NAVY_700: BASE_COLORS.UX_NAVY, - UX_NAVY_800: '#01152D', - UX_NAVY_900: '#021020', - - UX_NEUTRAL_100: BASE_COLORS.UX_WHITE, - UX_NEUTRAL_200: BASE_COLORS.UX_CREAM, - UX_NEUTRAL_300: '#E6E2E0', - UX_NEUTRAL_400: '#CECBC9', - UX_NEUTRAL_500: '#B5B0AB', - UX_NEUTRAL_600: '#9A938D', - UX_NEUTRAL_700: '#817874', - UX_NEUTRAL_800: '#33312F', - UX_NEUTRAL_900: BASE_COLORS.UX_BLACK, - - UX_ORANGE_100: '#FDEAD2', - UX_ORANGE_200: '#FCDFB9', - UX_ORANGE_300: '#FAC988', - UX_ORANGE_400: '#F7B258', - UX_ORANGE_500: BASE_COLORS.UX_ORANGE, - UX_ORANGE_600: '#E18C28', - UX_ORANGE_700: '#AE6608', - UX_ORANGE_800: '#7D4A06', - UX_ORANGE_900: '#653B05', - - UX_RED_100: '#FAE1E1', - UX_RED_200: '#F3BDBD', - UX_RED_300: '#EB7A7A', - UX_RED_400: '#E44E4E', - UX_RED_500: BASE_COLORS.UX_RED, - UX_RED_600: '#C71F1F', - UX_RED_700: '#B11B1B', - UX_RED_800: '#9B1818', - UX_RED_900: '#851414', - - UX_SAND_100: '#ECE1D4', - UX_SAND_200: '#E8DAC9', - UX_SAND_300: '#E5D2BD', - UX_SAND_400: '#DFC7AF', - UX_SAND_500: BASE_COLORS.UX_SAND, - UX_SAND_600: '#D4B191', - UX_SAND_700: '#CFAA86', - UX_SAND_800: '#C59B72', - UX_SAND_900: '#BA8E5E', - - UX_TEAL_100: '#CAE1E2', - UX_TEAL_200: '#A2CBCD', - UX_TEAL_300: '#85A9AA', - UX_TEAL_400: '#408F91', - UX_TEAL_500: '#2A7779', - UX_TEAL_600: '#1C5D5F', - UX_TEAL_700: BASE_COLORS.UX_TEAL, - UX_TEAL_800: '#093C3F', - UX_TEAL_900: '#083236', - - UX_YELLOW_100: '#FFF1AB', - UX_YELLOW_200: '#FFEB85', - UX_YELLOW_300: '#FFE356', - UX_YELLOW_400: '#FBDA36', - UX_YELLOW_500: BASE_COLORS.UX_YELLOW, - UX_YELLOW_600: '#E1BE0C', - UX_YELLOW_700: '#CAA900', - UX_YELLOW_800: '#A98D01', - UX_YELLOW_900: '#453A00', -}; - -export default { - ...BASE_COLORS, - ...COLOR_GRADIENTS, -}; +export default colors; diff --git a/yarn.lock b/yarn.lock index 60d006d0..1bb9ab10 100644 --- a/yarn.lock +++ b/yarn.lock @@ -40,11 +40,23 @@ dependencies: "@babel/highlight" "^7.16.0" +"@babel/code-frame@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" + integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== + dependencies: + "@babel/highlight" "^7.16.7" + "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1" integrity sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ== +"@babel/compat-data@^7.16.4": + version "7.16.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" + integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== + "@babel/core@7.12.9": version "7.12.9" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" @@ -88,6 +100,27 @@ semver "^6.3.0" source-map "^0.5.0" +"@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.7.tgz#db990f931f6d40cb9b87a0dc7d2adc749f1dcbcf" + integrity sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.16.7" + "@babel/helper-compilation-targets" "^7.16.7" + "@babel/helper-module-transforms" "^7.16.7" + "@babel/helpers" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.16.7" + "@babel/types" "^7.16.7" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.1.2" + semver "^6.3.0" + source-map "^0.5.0" + "@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.13.9": version "7.13.9" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" @@ -106,6 +139,14 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.16.7", "@babel/generator@^7.7.2": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.7.tgz#b42bf46a3079fa65e1544135f32e7958f048adbb" + integrity sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg== + dependencies: + "@babel/types" "^7.16.7" + jsesc "^2.5.1" + source-map "^0.5.0" "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" @@ -138,6 +179,16 @@ browserslist "^4.14.5" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" + integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== + dependencies: + "@babel/compat-data" "^7.16.4" + "@babel/helper-validator-option" "^7.16.7" + browserslist "^4.17.5" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.13.0": version "7.13.11" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6" @@ -171,6 +222,13 @@ resolve "^1.14.2" semver "^6.1.2" +"@babel/helper-environment-visitor@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" + integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-explode-assignable-expression@^7.12.13": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" @@ -196,6 +254,15 @@ "@babel/template" "^7.16.0" "@babel/types" "^7.16.0" +"@babel/helper-function-name@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz#f1ec51551fb1c8956bc8dd95f38523b6cf375f8f" + integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA== + dependencies: + "@babel/helper-get-function-arity" "^7.16.7" + "@babel/template" "^7.16.7" + "@babel/types" "^7.16.7" + "@babel/helper-get-function-arity@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" @@ -210,6 +277,13 @@ dependencies: "@babel/types" "^7.16.0" +"@babel/helper-get-function-arity@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" + integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-hoist-variables@^7.13.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" @@ -225,6 +299,13 @@ dependencies: "@babel/types" "^7.16.0" +"@babel/helper-hoist-variables@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" + integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" @@ -246,6 +327,13 @@ dependencies: "@babel/types" "^7.16.0" +"@babel/helper-module-imports@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" + integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14": version "7.13.14" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" @@ -260,6 +348,20 @@ "@babel/traverse" "^7.13.13" "@babel/types" "^7.13.14" +"@babel/helper-module-transforms@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41" + integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng== + dependencies: + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-module-imports" "^7.16.7" + "@babel/helper-simple-access" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/helper-validator-identifier" "^7.16.7" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.16.7" + "@babel/types" "^7.16.7" + "@babel/helper-optimise-call-expression@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" @@ -277,6 +379,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== +"@babel/helper-plugin-utils@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" + integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== + "@babel/helper-remap-async-to-generator@^7.13.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" @@ -303,6 +410,13 @@ dependencies: "@babel/types" "^7.13.12" +"@babel/helper-simple-access@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" + integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" @@ -324,6 +438,13 @@ dependencies: "@babel/types" "^7.16.0" +"@babel/helper-split-export-declaration@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" + integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-validator-identifier@^7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" @@ -334,11 +455,21 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== +"@babel/helper-validator-identifier@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" + integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== + "@babel/helper-validator-option@^7.12.17": version "7.12.17" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== +"@babel/helper-validator-option@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" + integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== + "@babel/helper-wrap-function@^7.13.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" @@ -358,6 +489,15 @@ "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" +"@babel/helpers@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.7.tgz#7e3504d708d50344112767c3542fc5e357fffefc" + integrity sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw== + dependencies: + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.16.7" + "@babel/types" "^7.16.7" + "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": version "7.13.10" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" @@ -376,11 +516,25 @@ chalk "^2.0.0" js-tokens "^4.0.0" +"@babel/highlight@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b" + integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + chalk "^2.0.0" + js-tokens "^4.0.0" + "@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.13", "@babel/parser@^7.12.7", "@babel/parser@^7.13.13", "@babel/parser@^7.7.0": version "7.13.13" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw== +"@babel/parser@^7.14.7", "@babel/parser@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.7.tgz#d372dda9c89fcec340a82630a9f533f2fe15877e" + integrity sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA== + "@babel/parser@^7.16.0", "@babel/parser@^7.16.3": version "7.16.4" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.4.tgz#d5f92f57cf2c74ffe9b37981c0e72fee7311372e" @@ -670,6 +824,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz#39c9b55ee153151990fb038651d58d3fd03f98f8" + integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A== + dependencies: + "@babel/helper-plugin-utils" "^7.16.7" + "@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.13.0": version "7.13.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" @@ -1147,7 +1308,16 @@ "@babel/parser" "^7.16.0" "@babel/types" "^7.16.0" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.7.0": +"@babel/template@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" + +"@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.7.0": version "7.13.13" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.13.tgz#39aa9c21aab69f74d948a486dd28a2dbdbf5114d" integrity sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg== @@ -1161,6 +1331,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.16.7", "@babel/traverse@^7.7.2": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.7.tgz#dac01236a72c2560073658dd1a285fe4e0865d76" + integrity sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.16.7" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-function-name" "^7.16.7" + "@babel/helper-hoist-variables" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" + debug "^4.1.0" + globals "^11.1.0" + "@babel/traverse@^7.4.5": version "7.16.3" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.3.tgz#f63e8a938cc1b780f66d9ed3c54f532ca2d14787" @@ -1193,6 +1379,14 @@ "@babel/helper-validator-identifier" "^7.15.7" to-fast-properties "^2.0.0" +"@babel/types@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.7.tgz#4ed19d51f840ed4bd5645be6ce40775fecf03159" + integrity sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + to-fast-properties "^2.0.0" + "@base2/pretty-print-object@1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047" @@ -1402,144 +1596,142 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2" - integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== +"@jest/console@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.4.6.tgz#0742e6787f682b22bdad56f9db2a8a77f6a86107" + integrity sha512-jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA== dependencies: - "@jest/types" "^26.6.2" + "@jest/types" "^27.4.2" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^26.6.2" - jest-util "^26.6.2" + jest-message-util "^27.4.6" + jest-util "^27.4.2" slash "^3.0.0" -"@jest/core@^26.6.3": - version "26.6.3" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad" - integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== +"@jest/core@^27.4.7": + version "27.4.7" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.4.7.tgz#84eabdf42a25f1fa138272ed229bcf0a1b5e6913" + integrity sha512-n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg== dependencies: - "@jest/console" "^26.6.2" - "@jest/reporters" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/console" "^27.4.6" + "@jest/reporters" "^27.4.6" + "@jest/test-result" "^27.4.6" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" + emittery "^0.8.1" exit "^0.1.2" graceful-fs "^4.2.4" - jest-changed-files "^26.6.2" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-resolve-dependencies "^26.6.3" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - jest-watcher "^26.6.2" - micromatch "^4.0.2" - p-each-series "^2.1.0" + jest-changed-files "^27.4.2" + jest-config "^27.4.7" + jest-haste-map "^27.4.6" + jest-message-util "^27.4.6" + jest-regex-util "^27.4.0" + jest-resolve "^27.4.6" + jest-resolve-dependencies "^27.4.6" + jest-runner "^27.4.6" + jest-runtime "^27.4.6" + jest-snapshot "^27.4.6" + jest-util "^27.4.2" + jest-validate "^27.4.6" + jest-watcher "^27.4.6" + micromatch "^4.0.4" rimraf "^3.0.0" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c" - integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== +"@jest/environment@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.4.6.tgz#1e92885d64f48c8454df35ed9779fbcf31c56d8b" + integrity sha512-E6t+RXPfATEEGVidr84WngLNWZ8ffCPky8RqqRK6u1Bn0LK92INe0MDttyPl/JOzaq92BmDzOeuqk09TvM22Sg== dependencies: - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/fake-timers" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" - jest-mock "^26.6.2" + jest-mock "^27.4.6" -"@jest/fake-timers@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad" - integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== +"@jest/fake-timers@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.4.6.tgz#e026ae1671316dbd04a56945be2fa251204324e8" + integrity sha512-mfaethuYF8scV8ntPpiVGIHQgS0XIALbpY2jt2l7wb/bvq4Q5pDLk4EP4D7SAvYT1QrPOPVZAtbdGAOOyIgs7A== dependencies: - "@jest/types" "^26.6.2" - "@sinonjs/fake-timers" "^6.0.1" + "@jest/types" "^27.4.2" + "@sinonjs/fake-timers" "^8.0.1" "@types/node" "*" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-util "^26.6.2" + jest-message-util "^27.4.6" + jest-mock "^27.4.6" + jest-util "^27.4.2" -"@jest/globals@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a" - integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== +"@jest/globals@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.4.6.tgz#3f09bed64b0fd7f5f996920258bd4be8f52f060a" + integrity sha512-kAiwMGZ7UxrgPzu8Yv9uvWmXXxsy0GciNejlHvfPIfWkSxChzv6bgTS3YqBkGuHcis+ouMFI2696n2t+XYIeFw== dependencies: - "@jest/environment" "^26.6.2" - "@jest/types" "^26.6.2" - expect "^26.6.2" + "@jest/environment" "^27.4.6" + "@jest/types" "^27.4.2" + expect "^27.4.6" -"@jest/reporters@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6" - integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== +"@jest/reporters@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.4.6.tgz#b53dec3a93baf9b00826abf95b932de919d6d8dd" + integrity sha512-+Zo9gV81R14+PSq4wzee4GC2mhAN9i9a7qgJWL90Gpx7fHYkWpTBvwWNZUXvJByYR9tAVBdc8VxDWqfJyIUrIQ== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/console" "^27.4.6" + "@jest/test-result" "^27.4.6" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" + "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" exit "^0.1.2" glob "^7.1.2" graceful-fs "^4.2.4" istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.3" + istanbul-lib-instrument "^5.1.0" istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^26.6.2" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-worker "^26.6.2" + istanbul-reports "^3.1.3" + jest-haste-map "^27.4.6" + jest-resolve "^27.4.6" + jest-util "^27.4.2" + jest-worker "^27.4.6" slash "^3.0.0" source-map "^0.6.0" string-length "^4.0.1" terminal-link "^2.0.0" - v8-to-istanbul "^7.0.0" - optionalDependencies: - node-notifier "^8.0.0" + v8-to-istanbul "^8.1.0" -"@jest/source-map@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535" - integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== +"@jest/source-map@^27.4.0": + version "27.4.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.4.0.tgz#2f0385d0d884fb3e2554e8f71f8fa957af9a74b6" + integrity sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ== dependencies: callsites "^3.0.0" graceful-fs "^4.2.4" source-map "^0.6.0" -"@jest/test-result@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18" - integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== +"@jest/test-result@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.4.6.tgz#b3df94c3d899c040f602cea296979844f61bdf69" + integrity sha512-fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ== dependencies: - "@jest/console" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/console" "^27.4.6" + "@jest/types" "^27.4.2" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^26.6.3": - version "26.6.3" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17" - integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== +"@jest/test-sequencer@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.4.6.tgz#447339b8a3d7b5436f50934df30854e442a9d904" + integrity sha512-3GL+nsf6E1PsyNsJuvPyIz+DwFuCtBdtvPpm/LMXVkBJbdFvQYCDpccYT56qq5BGniXWlE81n2qk1sdXfZebnw== dependencies: - "@jest/test-result" "^26.6.2" + "@jest/test-result" "^27.4.6" graceful-fs "^4.2.4" - jest-haste-map "^26.6.2" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" + jest-haste-map "^27.4.6" + jest-runtime "^27.4.6" "@jest/transform@^26.6.2": version "26.6.2" @@ -1562,6 +1754,27 @@ source-map "^0.6.1" write-file-atomic "^3.0.0" +"@jest/transform@^27.4.6": + version "27.4.6" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.4.6.tgz#153621940b1ed500305eacdb31105d415dc30231" + integrity sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^27.4.2" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.2.4" + jest-haste-map "^27.4.6" + jest-regex-util "^27.4.0" + jest-util "^27.4.2" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + source-map "^0.6.1" + write-file-atomic "^3.0.0" + "@jest/types@^26.6.2": version "26.6.2" resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" @@ -1584,6 +1797,17 @@ "@types/yargs" "^16.0.0" chalk "^4.0.0" +"@jest/types@^27.4.2": + version "27.4.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.4.2.tgz#96536ebd34da6392c2b7c7737d693885b5dd44a5" + integrity sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + "@mdx-js/loader@^1.6.22": version "1.6.22" resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4" @@ -1982,10 +2206,10 @@ dependencies: type-detect "4.0.8" -"@sinonjs/fake-timers@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" - integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== +"@sinonjs/fake-timers@^8.0.1": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7" + integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== dependencies: "@sinonjs/commons" "^1.7.0" @@ -2753,6 +2977,11 @@ dependencies: "@babel/runtime" "^7.12.5" +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + "@types/anymatch@*": version "1.3.1" resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" @@ -2763,7 +2992,7 @@ resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc" integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig== -"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": +"@types/babel__core@^7.0.0": version "7.1.14" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402" integrity sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g== @@ -2774,6 +3003,17 @@ "@types/babel__template" "*" "@types/babel__traverse" "*" +"@types/babel__core@^7.1.14": + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" + integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== + 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.6.2" resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8" @@ -2973,6 +3213,11 @@ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.3.tgz#ef65165aea2924c9359205bf748865b8881753c0" integrity sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA== +"@types/prettier@^2.1.5": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.2.tgz#4c62fae93eb479660c3bd93f9d24d561597a8281" + integrity sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA== + "@types/pretty-hrtime@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.0.tgz#c5a2d644a135e988b2932f99737e67b3c62528d0" @@ -3353,16 +3598,23 @@ acorn@^7.1.1, acorn@^7.4.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz#52311fd7037ae119cbb134309e901aa46295b3fe" - integrity sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA== +acorn@^8.2.4: + version "8.7.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" + integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== address@1.1.2, address@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" @@ -3820,16 +4072,16 @@ babel-helper-builder-react-jsx@^6.24.1: babel-types "^6.26.0" esutils "^2.0.2" -babel-jest@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" - integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== +babel-jest@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.4.6.tgz#4d024e69e241cdf4f396e453a07100f44f7ce314" + integrity sha512-qZL0JT0HS1L+lOuH+xC2DVASR3nunZi/ozGhpgauJHgmI7f8rudxf6hUjEHympdQ/J64CdKmPkgfJ+A3U6QCrg== dependencies: - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/babel__core" "^7.1.7" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^26.6.2" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^27.4.0" chalk "^4.0.0" graceful-fs "^4.2.4" slash "^3.0.0" @@ -3898,10 +4150,21 @@ babel-plugin-istanbul@^6.0.0: istanbul-lib-instrument "^4.0.0" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d" - integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz#d7831fc0f93573788d80dee7e682482da4c730d6" + integrity sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -4070,12 +4333,12 @@ babel-preset-flow@^6.23.0: dependencies: babel-plugin-transform-flow-strip-types "^6.22.0" -babel-preset-jest@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee" - integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== +babel-preset-jest@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz#70d0e676a282ccb200fbabd7f415db5fdf393bca" + integrity sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg== dependencies: - babel-plugin-jest-hoist "^26.6.2" + babel-plugin-jest-hoist "^27.4.0" babel-preset-current-node-syntax "^1.0.0" babel-preset-react@^6.24.1: @@ -4381,6 +4644,17 @@ browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3: escalade "^3.1.1" node-releases "^1.1.70" +browserslist@^4.17.5: + version "4.19.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3" + integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A== + dependencies: + caniuse-lite "^1.0.30001286" + electron-to-chromium "^1.4.17" + escalade "^3.1.1" + node-releases "^2.0.1" + picocolors "^1.0.0" + bser@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" @@ -4553,7 +4827,7 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -camelcase@^6.0.0, camelcase@^6.2.0: +camelcase@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== @@ -4563,10 +4837,10 @@ camelize@^1.0.0: resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181: - version "1.0.30001205" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001205.tgz#d79bf6a6fb13196b4bb46e5143a22ca0242e0ef8" - integrity sha512-TL1GrS5V6LElbitPazidkBMD9sa448bQDDLrumDqaggmKFcuU2JW1wTOHJPukAcOMtEmLcmDJEzfRrf+GjM0Og== +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181, caniuse-lite@^1.0.30001286: + version "1.0.30001296" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001296.tgz" + integrity sha512-WfrtPEoNSoeATDlf4y3QvkwiELl9GyPLISV5GejTbbQRtQx4LhsXmc9IQ6XCL2d7UxCyEzToEZNMeqR79OUw8Q== capture-exit@^2.0.0: version "2.0.0" @@ -4732,6 +5006,11 @@ ci-info@^3.1.1: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== +ci-info@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" + integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== + cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" @@ -4740,10 +5019,10 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" -cjs-module-lexer@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f" - integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== +cjs-module-lexer@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" + integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== class-utils@^0.3.5: version "0.3.6" @@ -4841,6 +5120,15 @@ cliui@^6.0.0: strip-ansi "^6.0.0" wrap-ansi "^6.2.0" +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -5437,6 +5725,13 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6. dependencies: ms "2.0.0" +debug@4: + version "4.3.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + debug@^3.0.0, debug@^3.1.0, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -5610,6 +5905,11 @@ diff-sequences@^26.6.2: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== +diff-sequences@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.4.0.tgz#d783920ad8d06ec718a060d00196dfef25b132a5" + integrity sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww== + diffie-hellman@^5.0.0: version "5.0.3" resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" @@ -5825,6 +6125,11 @@ electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.649: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.706.tgz#0e59bcec33d45684ca37b3271a3dae6edbc88ffa" integrity sha512-IcXgNXeW6+ObrvHnQtjhokjdOPI/DQ5j0f9M6gUy82kc9GNTMxq/mTkxWlPBSpqO1mAomR1uPDsssKDMj1V4Cw== +electron-to-chromium@^1.4.17: + version "1.4.36" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.36.tgz#446c6184dbe5baeb5eae9a875490831e4bc5319a" + integrity sha512-MbLlbF39vKrXWlFEFpCgDHwdlz4O3LmHM5W4tiLRHjSmEUXjJjz8sZkMgWgvYxlZw3N1iDTmCEtOkkESb5TMCg== + element-resize-detector@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.2.tgz#bf7c3ff915957e4e62e86241ed2f9c86b078892b" @@ -5845,10 +6150,10 @@ elliptic@^6.5.3: minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" -emittery@^0.7.1: - version "0.7.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82" - integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== +emittery@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" + integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== "emoji-regex@>=6.0.0 <=6.1.1": version "6.1.1" @@ -6340,7 +6645,7 @@ exec-sh@^0.3.2: resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== -execa@4.1.0, execa@^4.0.0: +execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== @@ -6368,6 +6673,21 @@ execa@^1.0.0: signal-exit "^3.0.0" strip-eof "^1.0.0" +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + executable@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" @@ -6410,6 +6730,16 @@ expect@^26.6.2: jest-message-util "^26.6.2" jest-regex-util "^26.0.0" +expect@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/expect/-/expect-27.4.6.tgz#f335e128b0335b6ceb4fcab67ece7cbd14c942e6" + integrity sha512-1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag== + dependencies: + "@jest/types" "^27.4.2" + jest-get-type "^27.4.0" + jest-matcher-utils "^27.4.6" + jest-message-util "^27.4.6" + express@^4.17.1: version "4.17.1" resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" @@ -6920,7 +7250,7 @@ fsevents@^1.2.7: bindings "^1.5.0" nan "^2.12.1" -fsevents@^2.1.2, fsevents@~2.3.1, fsevents@~2.3.2: +fsevents@^2.1.2, fsevents@^2.3.2, fsevents@~2.3.1, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -6991,7 +7321,7 @@ gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.1: +get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== @@ -7029,6 +7359,11 @@ get-stream@^5.0.0, get-stream@^5.1.0: dependencies: pump "^3.0.0" +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -7250,11 +7585,6 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - gud@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" @@ -7585,6 +7915,15 @@ http-errors@~1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + http-signature@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" @@ -7599,11 +7938,24 @@ https-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + human-signals@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -7907,6 +8259,13 @@ is-core-module@^2.2.0: dependencies: has "^1.0.3" +is-core-module@^2.8.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" + integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== + dependencies: + has "^1.0.3" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -8114,10 +8473,10 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: dependencies: isobject "^3.0.1" -is-potential-custom-element-name@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" - integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= +is-potential-custom-element-name@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" + integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.1, is-regex@^1.1.2: version "1.1.2" @@ -8206,7 +8565,7 @@ is-wsl@^1.1.0: resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -is-wsl@^2.1.1, is-wsl@^2.2.0: +is-wsl@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== @@ -8265,7 +8624,12 @@ istanbul-lib-coverage@^3.0.0: resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== -istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: +istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== @@ -8275,6 +8639,17 @@ istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: istanbul-lib-coverage "^3.0.0" semver "^6.3.0" +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" + integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + istanbul-lib-report@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" @@ -8293,10 +8668,10 @@ istanbul-lib-source-maps@^4.0.0: istanbul-lib-coverage "^3.0.0" source-map "^0.6.1" -istanbul-reports@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" - integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== +istanbul-reports@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.3.tgz#4bcae3103b94518117930d51283690960b50d3c2" + integrity sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" @@ -8314,57 +8689,94 @@ iterate-value@^1.0.2: es-get-iterator "^1.0.2" iterate-iterator "^1.0.1" -jest-changed-files@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" - integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== +jest-changed-files@^27.4.2: + version "27.4.2" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.4.2.tgz#da2547ea47c6e6a5f6ed336151bd2075736eb4a5" + integrity sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A== dependencies: - "@jest/types" "^26.6.2" - execa "^4.0.0" - throat "^5.0.0" + "@jest/types" "^27.4.2" + execa "^5.0.0" + throat "^6.0.1" -jest-cli@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a" - integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== +jest-circus@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.4.6.tgz#d3af34c0eb742a967b1919fbb351430727bcea6c" + integrity sha512-UA7AI5HZrW4wRM72Ro80uRR2Fg+7nR0GESbSI/2M+ambbzVuA63mn5T1p3Z/wlhntzGpIG1xx78GP2YIkf6PhQ== dependencies: - "@jest/core" "^26.6.3" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/environment" "^27.4.6" + "@jest/test-result" "^27.4.6" + "@jest/types" "^27.4.2" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^0.7.0" + expect "^27.4.6" + is-generator-fn "^2.0.0" + jest-each "^27.4.6" + jest-matcher-utils "^27.4.6" + jest-message-util "^27.4.6" + jest-runtime "^27.4.6" + jest-snapshot "^27.4.6" + jest-util "^27.4.2" + pretty-format "^27.4.6" + slash "^3.0.0" + stack-utils "^2.0.3" + throat "^6.0.1" + +jest-cli@^27.4.7: + version "27.4.7" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.4.7.tgz#d00e759e55d77b3bcfea0715f527c394ca314e5a" + integrity sha512-zREYhvjjqe1KsGV15mdnxjThKNDgza1fhDT+iUsXWLCq3sxe9w5xnvyctcYVT5PcdLSjv7Y5dCwTS3FCF1tiuw== + dependencies: + "@jest/core" "^27.4.7" + "@jest/test-result" "^27.4.6" + "@jest/types" "^27.4.2" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.4" import-local "^3.0.2" - is-ci "^2.0.0" - jest-config "^26.6.3" - jest-util "^26.6.2" - jest-validate "^26.6.2" + jest-config "^27.4.7" + jest-util "^27.4.2" + jest-validate "^27.4.6" prompts "^2.0.1" - yargs "^15.4.1" + yargs "^16.2.0" -jest-config@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349" - integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== +jest-config@^27.4.7: + version "27.4.7" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.4.7.tgz#4f084b2acbd172c8b43aa4cdffe75d89378d3972" + integrity sha512-xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw== dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^26.6.3" - "@jest/types" "^26.6.2" - babel-jest "^26.6.3" + "@babel/core" "^7.8.0" + "@jest/test-sequencer" "^27.4.6" + "@jest/types" "^27.4.2" + babel-jest "^27.4.6" chalk "^4.0.0" + ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.1" graceful-fs "^4.2.4" - jest-environment-jsdom "^26.6.2" - jest-environment-node "^26.6.2" - jest-get-type "^26.3.0" - jest-jasmine2 "^26.6.3" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - micromatch "^4.0.2" - pretty-format "^26.6.2" + jest-circus "^27.4.6" + jest-environment-jsdom "^27.4.6" + jest-environment-node "^27.4.6" + jest-get-type "^27.4.0" + jest-jasmine2 "^27.4.6" + jest-regex-util "^27.4.0" + jest-resolve "^27.4.6" + jest-runner "^27.4.6" + jest-util "^27.4.2" + jest-validate "^27.4.6" + micromatch "^4.0.4" + pretty-format "^27.4.6" + slash "^3.0.0" + +jest-css-modules-transform@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/jest-css-modules-transform/-/jest-css-modules-transform-4.3.0.tgz#e3599b6b9326230f9c127953aca99f91d9286ab1" + integrity sha512-0ACv/lpFK3oUdNkCZTJ6t5X4jUzGw2YnqBQz2fd+RwrGex+C92e0KSkkWmGUdG9wJ8emapi1Xm1IIqUqdkN3/g== + dependencies: + camelcase "^6.2.0" + postcss "^7.0.30 || ^8.0.0" + postcss-nested "^4.2.1 || ^5.0.0" jest-diff@^26.0.0, jest-diff@^26.6.2: version "26.6.2" @@ -8376,54 +8788,69 @@ jest-diff@^26.0.0, jest-diff@^26.6.2: jest-get-type "^26.3.0" pretty-format "^26.6.2" -jest-docblock@^26.0.0: - version "26.0.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" - integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== - dependencies: - detect-newline "^3.0.0" - -jest-each@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb" - integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== +jest-diff@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.4.6.tgz#93815774d2012a2cbb6cf23f84d48c7a2618f98d" + integrity sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w== dependencies: - "@jest/types" "^26.6.2" chalk "^4.0.0" - jest-get-type "^26.3.0" - jest-util "^26.6.2" - pretty-format "^26.6.2" + diff-sequences "^27.4.0" + jest-get-type "^27.4.0" + pretty-format "^27.4.6" -jest-environment-jsdom@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e" - integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== +jest-docblock@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.4.0.tgz#06c78035ca93cbbb84faf8fce64deae79a59f69f" + integrity sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg== dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" - jsdom "^16.4.0" + detect-newline "^3.0.0" -jest-environment-node@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c" - integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== +jest-each@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.4.6.tgz#e7e8561be61d8cc6dbf04296688747ab186c40ff" + integrity sha512-n6QDq8y2Hsmn22tRkgAk+z6MCX7MeVlAzxmZDshfS2jLcaBlyhpF3tZSJLR+kXmh23GEvS0ojMR8i6ZeRvpQcA== dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/types" "^27.4.2" + chalk "^4.0.0" + jest-get-type "^27.4.0" + jest-util "^27.4.2" + pretty-format "^27.4.6" + +jest-environment-jsdom@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.4.6.tgz#c23a394eb445b33621dfae9c09e4c8021dea7b36" + integrity sha512-o3dx5p/kHPbUlRvSNjypEcEtgs6LmvESMzgRFQE6c+Prwl2JLA4RZ7qAnxc5VM8kutsGRTB15jXeeSbJsKN9iA== + dependencies: + "@jest/environment" "^27.4.6" + "@jest/fake-timers" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" + jest-mock "^27.4.6" + jest-util "^27.4.2" + jsdom "^16.6.0" + +jest-environment-node@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.4.6.tgz#ee8cd4ef458a0ef09d087c8cd52ca5856df90242" + integrity sha512-yfHlZ9m+kzTKZV0hVfhVu6GuDxKAYeFHrfulmy7Jxwsq4V7+ZK7f+c0XP/tbVDMQW7E4neG2u147hFkuVz0MlQ== + dependencies: + "@jest/environment" "^27.4.6" + "@jest/fake-timers" "^27.4.6" + "@jest/types" "^27.4.2" + "@types/node" "*" + jest-mock "^27.4.6" + jest-util "^27.4.2" jest-get-type@^26.3.0: version "26.3.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== +jest-get-type@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.4.0.tgz#7503d2663fffa431638337b3998d39c5e928e9b5" + integrity sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ== + jest-haste-map@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa" @@ -8445,37 +8872,56 @@ jest-haste-map@^26.6.2: optionalDependencies: fsevents "^2.1.2" -jest-jasmine2@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd" - integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== +jest-haste-map@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.4.6.tgz#c60b5233a34ca0520f325b7e2cc0a0140ad0862a" + integrity sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ== dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/types" "^27.4.2" + "@types/graceful-fs" "^4.1.2" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.4" + jest-regex-util "^27.4.0" + jest-serializer "^27.4.0" + jest-util "^27.4.2" + jest-worker "^27.4.6" + micromatch "^4.0.4" + walker "^1.0.7" + optionalDependencies: + fsevents "^2.3.2" + +jest-jasmine2@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.4.6.tgz#109e8bc036cb455950ae28a018f983f2abe50127" + integrity sha512-uAGNXF644I/whzhsf7/qf74gqy9OuhvJ0XYp8SDecX2ooGeaPnmJMjXjKt0mqh1Rl5dtRGxJgNrHlBQIBfS5Nw== + dependencies: + "@jest/environment" "^27.4.6" + "@jest/source-map" "^27.4.0" + "@jest/test-result" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - expect "^26.6.2" + expect "^27.4.6" is-generator-fn "^2.0.0" - jest-each "^26.6.2" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - pretty-format "^26.6.2" - throat "^5.0.0" - -jest-leak-detector@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af" - integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== - dependencies: - jest-get-type "^26.3.0" - pretty-format "^26.6.2" + jest-each "^27.4.6" + jest-matcher-utils "^27.4.6" + jest-message-util "^27.4.6" + jest-runtime "^27.4.6" + jest-snapshot "^27.4.6" + jest-util "^27.4.2" + pretty-format "^27.4.6" + throat "^6.0.1" + +jest-leak-detector@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.4.6.tgz#ed9bc3ce514b4c582637088d9faf58a33bd59bf4" + integrity sha512-kkaGixDf9R7CjHm2pOzfTxZTQQQ2gHTIWKY/JZSiYTc90bZp8kSZnUMS3uLAfwTZwc0tcMRoEX74e14LG1WapA== + dependencies: + jest-get-type "^27.4.0" + pretty-format "^27.4.6" jest-matcher-utils@^26.6.2: version "26.6.2" @@ -8487,6 +8933,16 @@ jest-matcher-utils@^26.6.2: jest-get-type "^26.3.0" pretty-format "^26.6.2" +jest-matcher-utils@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.4.6.tgz#53ca7f7b58170638590e946f5363b988775509b8" + integrity sha512-XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA== + dependencies: + chalk "^4.0.0" + jest-diff "^27.4.6" + jest-get-type "^27.4.0" + pretty-format "^27.4.6" + jest-message-util@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07" @@ -8502,12 +8958,27 @@ jest-message-util@^26.6.2: slash "^3.0.0" stack-utils "^2.0.2" -jest-mock@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302" - integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== +jest-message-util@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.4.6.tgz#9fdde41a33820ded3127465e1a5896061524da31" + integrity sha512-0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA== dependencies: - "@jest/types" "^26.6.2" + "@babel/code-frame" "^7.12.13" + "@jest/types" "^27.4.2" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.4" + micromatch "^4.0.4" + pretty-format "^27.4.6" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.4.6.tgz#77d1ba87fbd33ccb8ef1f061697e7341b7635195" + integrity sha512-kvojdYRkst8iVSZ1EJ+vc1RRD9llueBjKzXzeCytH3dMM7zvPV/ULcfI2nr0v0VUgm3Bjt3hBCQvOeaBz+ZTHw== + dependencies: + "@jest/types" "^27.4.2" "@types/node" "*" jest-pnp-resolver@^1.2.2: @@ -8520,14 +8991,19 @@ jest-regex-util@^26.0.0: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== -jest-resolve-dependencies@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6" - integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== +jest-regex-util@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.4.0.tgz#e4c45b52653128843d07ad94aec34393ea14fbca" + integrity sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg== + +jest-resolve-dependencies@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.6.tgz#fc50ee56a67d2c2183063f6a500cc4042b5e2327" + integrity sha512-W85uJZcFXEVZ7+MZqIPCscdjuctruNGXUZ3OHSXOfXR9ITgbUKeHj+uGcies+0SsvI5GtUfTw4dY7u9qjTvQOw== dependencies: - "@jest/types" "^26.6.2" - jest-regex-util "^26.0.0" - jest-snapshot "^26.6.2" + "@jest/types" "^27.4.2" + jest-regex-util "^27.4.0" + jest-snapshot "^27.4.6" jest-resolve@^26.6.2: version "26.6.2" @@ -8543,64 +9019,77 @@ jest-resolve@^26.6.2: resolve "^1.18.1" slash "^3.0.0" -jest-runner@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159" - integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== +jest-resolve@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.4.6.tgz#2ec3110655e86d5bfcfa992e404e22f96b0b5977" + integrity sha512-SFfITVApqtirbITKFAO7jOVN45UgFzcRdQanOFzjnbd+CACDoyeX7206JyU92l4cRr73+Qy/TlW51+4vHGt+zw== dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/types" "^27.4.2" + chalk "^4.0.0" + graceful-fs "^4.2.4" + jest-haste-map "^27.4.6" + jest-pnp-resolver "^1.2.2" + jest-util "^27.4.2" + jest-validate "^27.4.6" + resolve "^1.20.0" + resolve.exports "^1.1.0" + slash "^3.0.0" + +jest-runner@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.4.6.tgz#1d390d276ec417e9b4d0d081783584cbc3e24773" + integrity sha512-IDeFt2SG4DzqalYBZRgbbPmpwV3X0DcntjezPBERvnhwKGWTW7C5pbbA5lVkmvgteeNfdd/23gwqv3aiilpYPg== + dependencies: + "@jest/console" "^27.4.6" + "@jest/environment" "^27.4.6" + "@jest/test-result" "^27.4.6" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" chalk "^4.0.0" - emittery "^0.7.1" + emittery "^0.8.1" exit "^0.1.2" graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-docblock "^26.0.0" - jest-haste-map "^26.6.2" - jest-leak-detector "^26.6.2" - jest-message-util "^26.6.2" - jest-resolve "^26.6.2" - jest-runtime "^26.6.3" - jest-util "^26.6.2" - jest-worker "^26.6.2" + jest-docblock "^27.4.0" + jest-environment-jsdom "^27.4.6" + jest-environment-node "^27.4.6" + jest-haste-map "^27.4.6" + jest-leak-detector "^27.4.6" + jest-message-util "^27.4.6" + jest-resolve "^27.4.6" + jest-runtime "^27.4.6" + jest-util "^27.4.2" + jest-worker "^27.4.6" source-map-support "^0.5.6" - throat "^5.0.0" - -jest-runtime@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b" - integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== - dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/globals" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/yargs" "^15.0.0" + throat "^6.0.1" + +jest-runtime@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.4.6.tgz#83ae923818e3ea04463b22f3597f017bb5a1cffa" + integrity sha512-eXYeoR/MbIpVDrjqy5d6cGCFOYBFFDeKaNWqTp0h6E74dK0zLHzASQXJpl5a2/40euBmKnprNLJ0Kh0LCndnWQ== + dependencies: + "@jest/environment" "^27.4.6" + "@jest/fake-timers" "^27.4.6" + "@jest/globals" "^27.4.6" + "@jest/source-map" "^27.4.0" + "@jest/test-result" "^27.4.6" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" chalk "^4.0.0" - cjs-module-lexer "^0.6.0" + cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" - exit "^0.1.2" + execa "^5.0.0" glob "^7.1.3" graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" + jest-haste-map "^27.4.6" + jest-message-util "^27.4.6" + jest-mock "^27.4.6" + jest-regex-util "^27.4.0" + jest-resolve "^27.4.6" + jest-snapshot "^27.4.6" + jest-util "^27.4.2" slash "^3.0.0" strip-bom "^4.0.0" - yargs "^15.4.1" jest-serializer@^26.6.2: version "26.6.2" @@ -8610,7 +9099,15 @@ jest-serializer@^26.6.2: "@types/node" "*" graceful-fs "^4.2.4" -jest-snapshot@^26.3.0, jest-snapshot@^26.6.2: +jest-serializer@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.4.0.tgz#34866586e1cae2388b7d12ffa2c7819edef5958a" + integrity sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ== + dependencies: + "@types/node" "*" + graceful-fs "^4.2.4" + +jest-snapshot@^26.3.0: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84" integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== @@ -8632,6 +9129,34 @@ jest-snapshot@^26.3.0, jest-snapshot@^26.6.2: pretty-format "^26.6.2" semver "^7.3.2" +jest-snapshot@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.4.6.tgz#e2a3b4fff8bdce3033f2373b2e525d8b6871f616" + integrity sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ== + dependencies: + "@babel/core" "^7.7.2" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/traverse" "^7.7.2" + "@babel/types" "^7.0.0" + "@jest/transform" "^27.4.6" + "@jest/types" "^27.4.2" + "@types/babel__traverse" "^7.0.4" + "@types/prettier" "^2.1.5" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^27.4.6" + graceful-fs "^4.2.4" + jest-diff "^27.4.6" + jest-get-type "^27.4.0" + jest-haste-map "^27.4.6" + jest-matcher-utils "^27.4.6" + jest-message-util "^27.4.6" + jest-util "^27.4.2" + natural-compare "^1.4.0" + pretty-format "^27.4.6" + semver "^7.3.2" + jest-specific-snapshot@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jest-specific-snapshot/-/jest-specific-snapshot-4.0.0.tgz#a52a2e223e7576e610dbeaf341207c557ac20554" @@ -8651,29 +9176,41 @@ jest-util@^26.6.2: is-ci "^2.0.0" micromatch "^4.0.2" -jest-validate@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" - integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== +jest-util@^27.4.2: + version "27.4.2" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.4.2.tgz#ed95b05b1adfd761e2cda47e0144c6a58e05a621" + integrity sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA== dependencies: - "@jest/types" "^26.6.2" - camelcase "^6.0.0" + "@jest/types" "^27.4.2" + "@types/node" "*" chalk "^4.0.0" - jest-get-type "^26.3.0" + ci-info "^3.2.0" + graceful-fs "^4.2.4" + picomatch "^2.2.3" + +jest-validate@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.4.6.tgz#efc000acc4697b6cf4fa68c7f3f324c92d0c4f1f" + integrity sha512-872mEmCPVlBqbA5dToC57vA3yJaMRfIdpCoD3cyHWJOMx+SJwLNw0I71EkWs41oza/Er9Zno9XuTkRYCPDUJXQ== + dependencies: + "@jest/types" "^27.4.2" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^27.4.0" leven "^3.1.0" - pretty-format "^26.6.2" + pretty-format "^27.4.6" -jest-watcher@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975" - integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== +jest-watcher@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.4.6.tgz#673679ebeffdd3f94338c24f399b85efc932272d" + integrity sha512-yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw== dependencies: - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" + "@jest/test-result" "^27.4.6" + "@jest/types" "^27.4.2" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" - jest-util "^26.6.2" + jest-util "^27.4.2" string-length "^4.0.1" jest-worker@^26.2.1, jest-worker@^26.6.2: @@ -8685,14 +9222,23 @@ jest-worker@^26.2.1, jest-worker@^26.6.2: merge-stream "^2.0.0" supports-color "^7.0.0" -jest@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef" - integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== +jest-worker@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.4.6.tgz#5d2d93db419566cb680752ca0792780e71b3273e" + integrity sha512-gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw== dependencies: - "@jest/core" "^26.6.3" + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^27.4.6: + version "27.4.7" + resolved "https://registry.yarnpkg.com/jest/-/jest-27.4.7.tgz#87f74b9026a1592f2da05b4d258e57505f28eca4" + integrity sha512-8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg== + dependencies: + "@jest/core" "^27.4.7" import-local "^3.0.2" - jest-cli "^26.6.3" + jest-cli "^27.4.7" js-base64@^2.1.8: version "2.6.4" @@ -8722,13 +9268,13 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^16.4.0: - version "16.5.2" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.2.tgz#583fac89a0aea31dbf6237e7e4bedccd9beab472" - integrity sha512-JxNtPt9C1ut85boCbJmffaQ06NBnzkQY/MWO3YxPW8IWS38A26z+B1oBvA9LwKrytewdfymnhi4UNH3/RAgZrg== +jsdom@^16.6.0: + version "16.7.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" + integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== dependencies: abab "^2.0.5" - acorn "^8.1.0" + acorn "^8.2.4" acorn-globals "^6.0.0" cssom "^0.4.4" cssstyle "^2.3.0" @@ -8736,12 +9282,13 @@ jsdom@^16.4.0: decimal.js "^10.2.1" domexception "^2.0.1" escodegen "^2.0.0" + form-data "^3.0.0" html-encoding-sniffer "^2.0.1" - is-potential-custom-element-name "^1.0.0" + http-proxy-agent "^4.0.1" + https-proxy-agent "^5.0.0" + is-potential-custom-element-name "^1.0.1" nwsapi "^2.2.0" parse5 "6.0.1" - request "^2.88.2" - request-promise-native "^1.0.9" saxes "^5.0.1" symbol-tree "^3.2.4" tough-cookie "^4.0.0" @@ -8751,7 +9298,7 @@ jsdom@^16.4.0: whatwg-encoding "^1.0.5" whatwg-mimetype "^2.3.0" whatwg-url "^8.5.0" - ws "^7.4.4" + ws "^7.4.6" xml-name-validator "^3.0.0" jsesc@^2.5.1: @@ -9404,6 +9951,14 @@ micromatch@^4.0.2: braces "^3.0.1" picomatch "^2.0.5" +micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + dependencies: + braces "^3.0.1" + picomatch "^2.2.3" + miller-rabin@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" @@ -9612,6 +10167,11 @@ nan@^2.12.1, nan@^2.13.2: resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== +nanoid@^3.1.30: + version "3.1.30" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.30.tgz#63f93cc548d2a113dc5dfbc63bfa09e2b9b64362" + integrity sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -9738,23 +10298,16 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^8.0.0: - version "8.0.2" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" - integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== - dependencies: - growly "^1.3.0" - is-wsl "^2.2.0" - semver "^7.3.2" - shellwords "^0.1.1" - uuid "^8.3.0" - which "^2.0.2" - node-releases@^1.1.61, node-releases@^1.1.70: version "1.1.71" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== +node-releases@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" + integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== + node-sass@^4.14.1: version "4.14.1" resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5" @@ -9852,7 +10405,7 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npm-run-path@^4.0.0: +npm-run-path@^4.0.0, npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== @@ -10002,7 +10555,7 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0: +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -10074,11 +10627,6 @@ p-cancelable@^1.0.0: resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== -p-each-series@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" - integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== - p-event@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5" @@ -10357,7 +10905,7 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.6: +path-parse@^1.0.6, path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== @@ -10438,11 +10986,21 @@ picocolors@^0.2.1: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +picomatch@^2.2.3: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + picomatch@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" @@ -10482,6 +11040,11 @@ pirates@^4.0.0, pirates@^4.0.1: dependencies: node-modules-regexp "^1.0.0" +pirates@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.4.tgz#07df81e61028e402735cdd49db701e4885b4e6e6" + integrity sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw== + pkg-dir@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" @@ -10587,6 +11150,13 @@ postcss-modules-values@^3.0.0: icss-utils "^4.0.0" postcss "^7.0.6" +"postcss-nested@^4.2.1 || ^5.0.0": + version "5.0.6" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" + integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== + dependencies: + postcss-selector-parser "^6.0.6" + postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: version "6.0.4" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" @@ -10597,6 +11167,14 @@ postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: uniq "^1.0.1" util-deprecate "^1.0.2" +postcss-selector-parser@^6.0.6: + version "6.0.8" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz#f023ed7a9ea736cd7ef70342996e8e78645a7914" + integrity sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" @@ -10610,6 +11188,15 @@ postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0 picocolors "^0.2.1" source-map "^0.6.1" +"postcss@^7.0.30 || ^8.0.0": + version "8.4.5" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" + integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== + dependencies: + nanoid "^3.1.30" + picocolors "^1.0.0" + source-map-js "^1.0.1" + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -10658,6 +11245,15 @@ pretty-format@^27.0.2: ansi-styles "^5.0.0" react-is "^17.0.1" +pretty-format@^27.4.6: + version "27.4.6" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.6.tgz#1b784d2f53c68db31797b2348fa39b49e31846b7" + integrity sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" @@ -11648,23 +12244,7 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" -request-promise-core@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== - dependencies: - lodash "^4.17.19" - -request-promise-native@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== - dependencies: - request-promise-core "1.1.4" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.87.0, request@^2.88.0, request@^2.88.2: +request@^2.87.0, request@^2.88.0: version "2.88.2" resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== @@ -11737,6 +12317,11 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= +resolve.exports@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" + integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== + resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.3.2: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" @@ -11745,6 +12330,15 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14 is-core-module "^2.2.0" path-parse "^1.0.6" +resolve@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.21.0.tgz#b51adc97f3472e6a5cf4444d34bc9d6b9037591f" + integrity sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA== + dependencies: + is-core-module "^2.8.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + resolve@^2.0.0-next.3: version "2.0.0-next.3" resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" @@ -12151,11 +12745,6 @@ shelljs@^0.8.1: interpret "^1.0.0" rechoir "^0.6.2" -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -12170,6 +12759,11 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== +signal-exit@^3.0.3: + version "3.0.6" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" + integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== + sisteransi@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" @@ -12247,6 +12841,11 @@ source-list-map@^2.0.0: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== +source-map-js@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz#a1741c131e3c77d048252adfa24e23b908670caf" + integrity sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== + source-map-resolve@^0.5.0: version "0.5.3" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" @@ -12390,6 +12989,13 @@ stack-utils@^2.0.2: dependencies: escape-string-regexp "^2.0.0" +stack-utils@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" + integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== + dependencies: + escape-string-regexp "^2.0.0" + stackframe@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303" @@ -12420,11 +13026,6 @@ stdout-stream@^1.4.0: dependencies: readable-stream "^2.0.1" -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - store2@^2.12.0: version "2.12.0" resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf" @@ -12716,7 +13317,7 @@ supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.1.1: +supports-color@^8.0.0, supports-color@^8.1.1: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== @@ -12731,6 +13332,11 @@ supports-hyperlinks@^2.0.0: has-flag "^4.0.0" supports-color "^7.0.0" +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + symbol-tree@^3.2.4: version "3.2.4" resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" @@ -12867,10 +13473,10 @@ text-table@0.2.0, text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -throat@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" - integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== +throat@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" + integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== throttle-debounce@^3.0.1: version "3.0.1" @@ -13005,14 +13611,6 @@ touch@^3.1.0: dependencies: nopt "~1.0.10" -tough-cookie@^2.3.3, tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/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@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" @@ -13022,6 +13620,14 @@ tough-cookie@^4.0.0: punycode "^2.1.1" universalify "^0.1.2" +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + tr46@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479" @@ -13497,7 +14103,7 @@ uuid@^7.0.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== -uuid@^8.3.0, uuid@^8.3.2: +uuid@^8.3.2: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== @@ -13507,10 +14113,10 @@ v8-compile-cache@^2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== -v8-to-istanbul@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.1.tgz#04bfd1026ba4577de5472df4f5e89af49de5edda" - integrity sha512-p0BB09E5FRjx0ELN6RgusIPsSPhtgexSRcKETybEs6IGOTXJSZqfwxp7r//55nnu0f1AxltY5VvdVqy2vZf9AA== +v8-to-istanbul@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" + integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== dependencies: "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" @@ -13852,10 +14458,10 @@ write@1.0.3: dependencies: mkdirp "^0.5.1" -ws@^7.4.4: - version "7.5.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" - integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== +ws@^7.4.6: + version "7.5.6" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" + integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== ws@^8.0.0: version "8.2.3" @@ -13887,6 +14493,11 @@ y18n@^4.0.0: resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" @@ -13923,6 +14534,11 @@ yargs-parser@^18.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + yargs@^13.3.2: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" @@ -13939,7 +14555,7 @@ yargs@^13.3.2: y18n "^4.0.0" yargs-parser "^13.1.2" -yargs@^15.0.0, yargs@^15.4.1: +yargs@^15.0.0: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== @@ -13956,6 +14572,19 @@ yargs@^15.0.0, yargs@^15.4.1: y18n "^4.0.0" yargs-parser "^18.1.2" +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From dbb32e8ee08ecb56452a3bcc0576a0b9a7005dbb Mon Sep 17 00:00:00 2001 From: Rachel Roppolo Date: Fri, 11 Feb 2022 13:16:37 -0800 Subject: [PATCH 08/33] Fix merge conflicts on 1.27.0 --- spec/__snapshots__/Storyshots.test.js.snap | 560 ++++----------------- src/index.js | 4 - yarn.lock | 136 ----- 3 files changed, 97 insertions(+), 603 deletions(-) diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index ac05bc03..5a0785a7 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -946,7 +946,7 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = `

- Custom CTA via + Custom CTA via message @@ -1078,7 +1078,7 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = `

- Custom CTA via + Custom CTA via action @@ -1703,7 +1703,7 @@ exports[`Storyshots Components/Button Danger 1`] = ` /> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +

@@ -6377,7 +6377,7 @@ exports[`Storyshots Components/Selects/Async Labeled 1`] = ` } } > - + @@ -6492,7 +6492,7 @@ exports[`Storyshots Components/Selects/AsyncCreatable Default 1`] = ` } } > - + @@ -6606,7 +6606,7 @@ exports[`Storyshots Components/Selects/Creatable Default 1`] = ` } } > - + @@ -7313,7 +7313,7 @@ exports[`Storyshots Components/Selects/Single Searchable 1`] = ` } } > - + @@ -7781,7 +7781,7 @@ exports[`Storyshots Components/Table Default 1`] = ` className="TableCell" style={Object {}} > - +
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - Email + Email - + - + - + - First name + First name - + - + - + - + - + - + - Incentives earned + Incentives earned @@ -15602,7 +15602,7 @@ exports[`Storyshots Components/Table Table With Sorting 1`] = ` className="TableCell TableCell__header" style={null} > - Unsubscribed + Unsubscribed @@ -15800,7 +15800,7 @@ exports[`Storyshots Components/Table Table With Sticky Column And Header 1`] = ` } } > - Email + Email - + - + - + `; -exports[`Storyshots Design System/Tabs Controlled 1`] = ` -
-
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
-
- Tab Content One -
-
-
-
- Tab Content Two -
-
-
-
- Tab Content Three -
-
-
-
- Tab Content Four -
-
-
-
-
-
-`; - -exports[`Storyshots Design System/Tabs Uncontrolled 1`] = ` -
-
- -
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
-
-
- Tab Content One -
-
-
-
- Tab Content Two -
-
-
-
- Tab Content Three -
-
-
-
- Tab Content Four -
-
-
-
-
-
-`; - exports[`Storyshots Components/Tabs Controlled 1`] = `
`; -exports[`Storyshots Design System/Tooltip With Hover 1`] = ` -
-
- -
-
-`; - exports[`Storyshots Components/Tooltip With Hover 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 1.5rem
  • - Line-height: + Line-height: 2rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21055,19 +20689,19 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 1.25rem
  • - Line-height: + Line-height: 1.625rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21130,19 +20764,19 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 1.125rem
  • - Line-height: + Line-height: 1.5rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21205,19 +20839,19 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 1rem
  • - Line-height: + Line-height: 1.375rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21280,19 +20914,19 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 0.875rem
  • - Line-height: + Line-height: 1.25rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21355,19 +20989,19 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 0.75rem
  • - Line-height: + Line-height: 1rem
  • - Weight: + Weight: 400 / Regular
  • @@ -21430,23 +21064,23 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 0.625rem
  • - Line-height: + Line-height: 0.875rem
  • - Weight: + Weight: 400 / Regular
  • - Letter-spacing: + Letter-spacing: 0.0625rem
  • @@ -21509,27 +21143,27 @@ exports[`Storyshots Foundations/Typography Typography 1`] = `
  • - Type: + Type: DM Sans, sans-serif
  • - Size: + Size: 0.625rem
  • - Line-height: + Line-height: 0.875rem
  • - Weight: + Weight: 400 / Regular
  • - Letter-spacing: + Letter-spacing: 0.0625rem
  • - Text-transform: + Text-transform: Uppercase
  • diff --git a/src/index.js b/src/index.js index 44441564..4708840b 100644 --- a/src/index.js +++ b/src/index.js @@ -50,10 +50,6 @@ import { Tab, Tabs, } from 'src/Tabs'; -import { - Tab, - Tabs, -} from 'src/Tabs'; import { Table, TableBody, diff --git a/yarn.lock b/yarn.lock index 1d7d2ee4..1e09011d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -526,24 +526,6 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/highlight@^7.16.0": - version "7.16.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" - integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== - dependencies: - "@babel/helper-validator-identifier" "^7.15.7" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/highlight@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b" - integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw== - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - chalk "^2.0.0" - js-tokens "^4.0.0" - "@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.13", "@babel/parser@^7.12.7", "@babel/parser@^7.13.13", "@babel/parser@^7.7.0": version "7.13.13" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" @@ -1793,27 +1775,6 @@ source-map "^0.6.1" write-file-atomic "^3.0.0" -"@jest/transform@^27.4.6": - version "27.4.6" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.4.6.tgz#153621940b1ed500305eacdb31105d415dc30231" - integrity sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^27.4.2" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^27.4.6" - jest-regex-util "^27.4.0" - jest-util "^27.4.2" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - "@jest/types@^26.6.2": version "26.6.2" resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" @@ -2984,17 +2945,6 @@ "@types/babel__template" "*" "@types/babel__traverse" "*" -"@types/babel__core@^7.1.14": - version "7.1.18" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" - integrity sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ== - 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.6.2" resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8" @@ -3247,13 +3197,6 @@ dependencies: "@types/react" "*" -"@types/react-transition-group@^4.4.1": - version "4.4.4" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e" - integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug== - dependencies: - "@types/react" "*" - "@types/react@*": version "17.0.3" resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz#ba6e215368501ac3826951eef2904574c262cc79" @@ -3272,15 +3215,6 @@ "@types/scheduler" "*" csstype "^3.0.2" -"@types/react@>=16.14.8", "@types/react@>=16.9.11": - version "17.0.35" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.35.tgz#217164cf830267d56cd1aec09dcf25a541eedd4c" - integrity sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - "@types/scheduler@*": version "0.16.1" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" @@ -3387,13 +3321,6 @@ dependencies: "@types/yargs-parser" "*" -"@types/yargs@^16.0.0": - version "16.0.4" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" - integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== - dependencies: - "@types/yargs-parser" "*" - "@types/yauzl@^2.9.1": version "2.9.2" resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.2.tgz#c48e5d56aff1444409e39fa164b0b4d4552a7b7a" @@ -5997,14 +5924,6 @@ dom-helpers@^5.2.0, dom-helpers@^5.2.1: "@babel/runtime" "^7.8.7" csstype "^3.0.2" -dom-helpers@^5.2.0, dom-helpers@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - dom-serializer@0: version "0.2.2" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" @@ -8283,13 +8202,6 @@ is-core-module@^2.8.0: dependencies: has "^1.0.3" -is-core-module@^2.8.0: - version "2.8.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" - integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== - dependencies: - has "^1.0.3" - is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -8674,17 +8586,6 @@ istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: istanbul-lib-coverage "^3.2.0" semver "^6.3.0" -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" - integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - istanbul-lib-report@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" @@ -9192,34 +9093,6 @@ jest-snapshot@^27.4.6: pretty-format "^27.4.6" semver "^7.3.2" -jest-snapshot@^27.4.6: - version "27.4.6" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.4.6.tgz#e2a3b4fff8bdce3033f2373b2e525d8b6871f616" - integrity sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ== - dependencies: - "@babel/core" "^7.7.2" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.0.0" - "@jest/transform" "^27.4.6" - "@jest/types" "^27.4.2" - "@types/babel__traverse" "^7.0.4" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^27.4.6" - graceful-fs "^4.2.4" - jest-diff "^27.4.6" - jest-get-type "^27.4.0" - jest-haste-map "^27.4.6" - jest-matcher-utils "^27.4.6" - jest-message-util "^27.4.6" - jest-util "^27.4.2" - natural-compare "^1.4.0" - pretty-format "^27.4.6" - semver "^7.3.2" - jest-specific-snapshot@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jest-specific-snapshot/-/jest-specific-snapshot-4.0.0.tgz#a52a2e223e7576e610dbeaf341207c557ac20554" @@ -14470,15 +14343,6 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.0.0" -wrap-ansi@^5.1.0: - version "5.1.0" - 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" - string-width "^3.0.0" - strip-ansi "^5.0.0" - wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" From ec827b1ee5761b290ada064959c32d773f0af894 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Mar 2022 17:08:39 -0800 Subject: [PATCH 09/33] Merge release/1.28.0 into main branch (#563) * updates Dropdown documentation, adds Figma addon for illustrations (#554) * add transparent Button variant & update DropdownIconToggle (#560) Adding the transparent and outline transparent variant to the Button component. Uses transparent button variant in ModalFooter actions for closing. Updates DropdownToggle to support icon-only dropdown. Removes DropdownIconToggle in favor of using DropdownToggle to better support flexible styling. * Prepare release 1.28.0 Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- cypress/integration/button_spec.js | 6 + cypress/integration/dropdown_spec.js | 9 +- package.json | 3 +- scss/buttons.scss | 62 ++++ spec/__snapshots__/Storyshots.test.js.snap | 320 ++++++++++++++++++++- src/Button/Button.mdx | 6 + src/Button/Button.scss | 8 + src/Button/Buttons.stories.jsx | 60 ++++ src/Dropdown/Dropdown.mdx | 61 ++-- src/Dropdown/Dropdown.stories.jsx | 24 +- src/Dropdown/DropdownIconToggle.jsx | 46 --- src/Dropdown/DropdownIconToggle.scss | 10 - src/Dropdown/DropdownToggle.jsx | 17 ++ src/Dropdown/DropdownToggle.scss | 8 + src/Dropdown/index.js | 2 - src/Modal/ModalFooter.jsx | 7 +- src/index.js | 2 - yarn.lock | 37 ++- 18 files changed, 585 insertions(+), 103 deletions(-) delete mode 100644 src/Dropdown/DropdownIconToggle.jsx delete mode 100644 src/Dropdown/DropdownIconToggle.scss diff --git a/cypress/integration/button_spec.js b/cypress/integration/button_spec.js index 0f404657..855ada3e 100644 --- a/cypress/integration/button_spec.js +++ b/cypress/integration/button_spec.js @@ -17,6 +17,12 @@ const buttons = [ class: '.Button', match: 'Edit', }, + { + name: 'Transparent', + path: 'components-button--transparent', + class: '.Button', + match: 'Skip', + }, ]; describe('Button', () => { diff --git a/cypress/integration/dropdown_spec.js b/cypress/integration/dropdown_spec.js index 60f2e2ac..d15c695b 100644 --- a/cypress/integration/dropdown_spec.js +++ b/cypress/integration/dropdown_spec.js @@ -10,8 +10,13 @@ const dropdowns = [ class: '.Dropdown', }, { - name: 'Icon', - path: 'components-dropdown--icon', + name: 'Icon Default', + path: 'components-dropdown--icon-default', + class: '.Dropdown', + }, + { + name: 'Icon Swap', + path: 'components-dropdown--icon-swap', class: '.Dropdown', }, ]; diff --git a/package.json b/package.json index 767a9858..fcc00f08 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.27.0", + "version": "1.28.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", @@ -117,6 +117,7 @@ "react-test-renderer": "^16.12.0", "react-tracking": "8.1.0", "sass-loader": "^8.0.2", + "storybook-addon-designs": "^6.2.1", "style-loader": "^1.1.3", "styled-components": "^5.3.3" }, diff --git a/scss/buttons.scss b/scss/buttons.scss index 489e3b1c..0e563b16 100644 --- a/scss/buttons.scss +++ b/scss/buttons.scss @@ -192,3 +192,65 @@ $warning: $ux-yellow-400; border-color: $btn-outline-warning-active-border-color; } } + +@mixin btn-transparent { + $btn-transparent-background: transparent; + $btn-transparent-border: transparent; + $btn-transparent-color: $ux-gray-700; + + $btn-transparent-hover-background: $ux-gray-300; + $btn-transparent-hover-border: transparent; + $btn-transparent-hover-color: $ux-gray-900; + + $btn-transparent-active-background: transparent; + $btn-transparent-active-border: $ux-gray-400; + $btn-transparent-active-color: $ux-gray-900; + + @include button-variant( + $btn-transparent-background, + $btn-transparent-border, + $btn-transparent-color, + + $btn-transparent-hover-background, + $btn-transparent-hover-border, + $btn-transparent-hover-color, + + $btn-transparent-active-background, + $btn-transparent-active-border, + $btn-transparent-active-color, + ); + + &:disabled { + color: $ux-gray-500; + } +} + +@mixin btn-outline-transparent { + $btn-outline-transparent-color: $ux-gray-900; + $btn-outline-transparent-color-hover: $ux-gray-900; + + $btn-outline-transparent-hover-background: $ux-gray-300; + $btn-outline-transparent-hover-border: $ux-gray-300; + $btn-outline-transparent-hover-color: $ux-gray-900; + + $btn-outline-transparent-border: $ux-gray-400; + + $btn-outline-transparent-active-background: $ux-gray-400; + $btn-outline-transparent-active-border-color: $ux-gray-400; + + @include button-outline-variant( + $btn-outline-transparent-color, + $btn-outline-transparent-color-hover, + + $btn-outline-transparent-hover-background, + $btn-outline-transparent-hover-border, + $btn-outline-transparent-hover-color, + ); + border-color: $btn-outline-transparent-border; + + &:active { + background-color: $btn-outline-transparent-active-background; + border-color: $btn-outline-transparent-active-border-color; + } +} + diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 5a0785a7..2a3833f7 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -2178,6 +2178,268 @@ exports[`Storyshots Components/Button Primary 1`] = `
    `; +exports[`Storyshots Components/Button Transparent 1`] = ` +
    + + + + + + + + + + + +
    +`; + exports[`Storyshots Components/Button Warning 1`] = `
    `; -exports[`Storyshots Components/Dropdown Icon 1`] = ` +exports[`Storyshots Components/Dropdown Icon Default 1`] = `
    +
    +`; + +exports[`Storyshots Components/Dropdown Icon Swap 1`] = ` +
    +
    + -)); - -DropdownIconToggle.propTypes = { - ariaLabel: PropTypes.string, - ariaLabelledBy: PropTypes.string, - icon: PropTypes.object, - onClick: PropTypes.func, -}; - -DropdownIconToggle.defaultProps = { - ariaLabel: undefined, - ariaLabelledBy: undefined, - icon: faEllipsisV, - onClick: undefined, -}; - -export default DropdownIconToggle; diff --git a/src/Dropdown/DropdownIconToggle.scss b/src/Dropdown/DropdownIconToggle.scss deleted file mode 100644 index 3c173a25..00000000 --- a/src/Dropdown/DropdownIconToggle.scss +++ /dev/null @@ -1,10 +0,0 @@ -@import '../../scss/theme'; - -.DropdownIconToggle { - all: unset; - color: $ux-blue-500; - - &:hover { - color: $ux-blue-600; - } -} diff --git a/src/Dropdown/DropdownToggle.jsx b/src/Dropdown/DropdownToggle.jsx index 0f52910a..7d714dc2 100644 --- a/src/Dropdown/DropdownToggle.jsx +++ b/src/Dropdown/DropdownToggle.jsx @@ -10,15 +10,20 @@ import './DropdownToggle.scss'; const DropdownToggle = ({ as, + ariaLabel, + bsPrefix, childBsPrefix, children, className, id, leadingIcon, + removeCaret, ...props }) => ( {this.props.onRequestClose && ( - + )} {this.props.children}
    diff --git a/src/index.js b/src/index.js index 4708840b..d3695e7b 100644 --- a/src/index.js +++ b/src/index.js @@ -10,7 +10,6 @@ import CopyToClipboardButton from 'src/CopyToClipboardButton'; import { Dropdown, DropdownToggle, - DropdownIconToggle, DropdownItem, DropdownMenu, } from 'src/Dropdown'; @@ -85,7 +84,6 @@ export { CreatableSelect, Dropdown, DropdownToggle, - DropdownIconToggle, DropdownItem, DropdownMenu, FadeTransition, diff --git a/yarn.lock b/yarn.lock index 1e09011d..275ba006 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1540,6 +1540,22 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== +"@figspec/components@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@figspec/components/-/components-1.0.0.tgz#b1ddf0593173157cb5e79e50073ca1491bb7c6dc" + integrity sha512-a8sgP0YLJ3H0g0pdZPYecxfp9JNVQUTaaU3xcSci8duHXTGkJ7X8QPPCBbyhB+MoxMxnsAh8GjkfZHEr9oIoPQ== + dependencies: + copy-to-clipboard "^3.0.0" + lit-element "^2.4.0" + lit-html "^1.1.1" + +"@figspec/react@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@figspec/react/-/react-1.0.0.tgz#226ff85e146038b284ddf1ddbc086d2d14fe370a" + integrity sha512-BkOu3RsKF5vCtPoqsc6Oeyxw4wr9GesFrB9/wDHFqgjzhWsw8erFxCsPxsjdlJD8d8OWVHoM6SWxAaGe/pLdxg== + dependencies: + "@figspec/components" "^1.0.0" + "@fortawesome/fontawesome-common-types@^0.2.35": version "0.2.35" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz#01dd3d054da07a00b764d78748df20daf2b317e9" @@ -5308,7 +5324,7 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -copy-to-clipboard@^3, copy-to-clipboard@^3.3.1: +copy-to-clipboard@^3, copy-to-clipboard@^3.0.0, copy-to-clipboard@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== @@ -9474,6 +9490,18 @@ listr2@^3.8.3: through "^2.3.8" wrap-ansi "^7.0.0" +lit-element@^2.4.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-2.5.1.tgz#3fa74b121a6cd22902409ae3859b7847d01aa6b6" + integrity sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ== + dependencies: + lit-html "^1.1.1" + +lit-html@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-1.4.1.tgz#0c6f3ee4ad4eb610a49831787f0478ad8e9ae5e0" + integrity sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA== + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -12965,6 +12993,13 @@ store2@^2.12.0: resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf" integrity sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw== +storybook-addon-designs@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/storybook-addon-designs/-/storybook-addon-designs-6.2.1.tgz#47fd1a7a098cad027b3891bd72a7f9c1837d94a0" + integrity sha512-ihsscab8185HnxqTNZlM4TfrCPVsO7AimVA8BapuqT/sfZQF9m5H9C0plT3kbECdIMh2cmzMBF1Tc9ckWRgpWg== + dependencies: + "@figspec/react" "^1.0.0" + stream-browserify@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" From 920039637fed4cad245914169651974a7171babe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Mar 2022 13:13:15 -0700 Subject: [PATCH 10/33] Merge release/1.29.0 into main branch (#569) * add CardList to DS (#567) Adds a CardList layout component to wrap around existing design system Cards. * update Pill color and border (#568) Updates Pills colors, removes Pill border, and introduces a Pills layout component to wrap around a collection of Pill components. * Prepare release 1.29.0 Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- cypress/integration/pill_spec.js | 4 + package.json | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 207 ++++++++++++++++++++- src/CardList/CardList.jsx | 39 ++++ src/CardList/CardList.mdx | 35 ++++ src/CardList/CardList.scss | 29 +++ src/CardList/CardList.stories.jsx | 58 ++++++ src/CardList/index.js | 3 + src/Pill/Pill.jsx | 5 +- src/Pill/Pill.mdx | 7 + src/Pill/Pill.scss | 51 ++++- src/Pill/Pill.stories.jsx | 35 +++- src/Pill/Pills.jsx | 28 +++ src/Pill/Pills.scss | 13 ++ src/Pill/index.js | 2 + src/index.js | 5 +- 16 files changed, 507 insertions(+), 16 deletions(-) create mode 100644 src/CardList/CardList.jsx create mode 100644 src/CardList/CardList.mdx create mode 100644 src/CardList/CardList.scss create mode 100644 src/CardList/CardList.stories.jsx create mode 100644 src/CardList/index.js create mode 100644 src/Pill/Pills.jsx create mode 100644 src/Pill/Pills.scss diff --git a/cypress/integration/pill_spec.js b/cypress/integration/pill_spec.js index d7a7925d..a22ac763 100644 --- a/cypress/integration/pill_spec.js +++ b/cypress/integration/pill_spec.js @@ -3,6 +3,10 @@ const pills = [ name: 'Default', path: 'components-pill--default', }, + { + name: 'With Container', + path: 'components-pill--with-container', + }, { name: 'With Leading Icon', path: 'components-pill--with-leading-icon', diff --git a/package.json b/package.json index fcc00f08..6b619616 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.28.0", + "version": "1.29.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 2a3833f7..82f9a64e 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -2739,6 +2739,108 @@ exports[`Storyshots Components/Card Default 1`] = `
    `; +exports[`Storyshots Components/CardList Default 1`] = ` +
    +
    +
    +
    +

    + Card 1 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 2 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 3 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +`; + exports[`Storyshots Components/CheckboxButton Default 1`] = `
    Text
    `; -exports[`Storyshots Components/CardList Default 1`] = ` +exports[`Storyshots Components/CardContainer Default 1`] = `
    ( +
    + {children} +
    + ); + +CardContainer.propTypes = { + alignItems: PropTypes.oneOf(CardContainerAlignItemsOptions), + className: PropTypes.string, +}; + +CardContainer.defaultProps = { + alignItems: 'center', + className: undefined, +}; + +export default CardContainer; diff --git a/src/CardContainer/CardContainer.mdx b/src/CardContainer/CardContainer.mdx new file mode 100644 index 00000000..7dc21ab2 --- /dev/null +++ b/src/CardContainer/CardContainer.mdx @@ -0,0 +1,35 @@ +import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; +import CardContainer from './CardContainer'; + +# CardContainer + +## + +

    + A simple layout container for positioning Cards. +

    + + + + + +### When to use +- Use `CardContainer` to wrap one or more `Card` components. +- `CardContainer` centers `Card` components by default and should handle the most common page layouts that use `Card`. + +## Props + + + +## Stories + +### Default + + + + + +## Formatting + +### Alignment +- `Card`s within `CardContainer` are centered by default diff --git a/src/CardContainer/CardContainer.scss b/src/CardContainer/CardContainer.scss new file mode 100644 index 00000000..b4ab9c68 --- /dev/null +++ b/src/CardContainer/CardContainer.scss @@ -0,0 +1,29 @@ +@import '../../scss/theme'; + +$card-container-spacing: 1.5rem; +$card-container-child-card-spacing: 0.75rem; + +.CardContainer { + display: flex; + flex-direction: column; + + margin: $card-container-spacing 0; + + .Card { + margin: $card-container-child-card-spacing; + } + + &__alignItems { + &--center { + align-items: center; + } + + &--flex-start { + align-items: flex-start; + } + + &--flex-end { + align-items: flex-end; + } + } +} diff --git a/src/CardContainer/CardContainer.stories.jsx b/src/CardContainer/CardContainer.stories.jsx new file mode 100644 index 00000000..2bbaf298 --- /dev/null +++ b/src/CardContainer/CardContainer.stories.jsx @@ -0,0 +1,58 @@ +import React from 'react'; + +import Card, { CardSizes } from 'src/Card'; +import CardContainer, { CardContainerAlignItemsOptions } from 'src/CardContainer'; +import { withKnobs, select } from '@storybook/addon-knobs'; +import mdx from './CardContainer.mdx'; + +export default { + title: 'Components/CardContainer', + decorators: [withKnobs], + component: CardContainer, + parameters: { + docs: { + page: mdx, + }, + }, +}; + +export const Default = () => ( + + +
      +
    • 500,000+ sessions completed
    • +
    • $19 million+ incentives distributed
    • +
    • 3 hours median time to 1st matched participant
    • +
    +
    + +
      +
    • 500,000+ sessions completed
    • +
    • $19 million+ incentives distributed
    • +
    • 3 hours median time to 1st matched participant
    • +
    +
    + +
      +
    • 500,000+ sessions completed
    • +
    • $19 million+ incentives distributed
    • +
    • 3 hours median time to 1st matched participant
    • +
    +
    +
    +); diff --git a/src/CardContainer/index.js b/src/CardContainer/index.js new file mode 100644 index 00000000..fb7953dc --- /dev/null +++ b/src/CardContainer/index.js @@ -0,0 +1,3 @@ +import CardContainer, { CardContainerAlignItemsOptions } from './CardContainer'; + +export { CardContainer as default, CardContainerAlignItemsOptions }; diff --git a/src/index.js b/src/index.js index e9d89d81..82a972f4 100644 --- a/src/index.js +++ b/src/index.js @@ -2,7 +2,7 @@ import { Alert, MessageTypes } from 'src/Alert'; import Button from 'src/Button'; import Avatar from 'src/Avatar'; import Card, { CardSizes } from 'src/Card'; -import CardList from 'src/CardList'; +import CardContainer from 'src/CardContainer'; import CheckboxButton, { CHECKED_STATES } from 'src/CheckboxButton'; import CheckboxButtonGroup from 'src/CheckboxButtonGroup'; import { ORIENTATIONS as BUTTON_GROUP_ORIENTATIONS } from 'src/ControlButtonGroup'; @@ -75,7 +75,7 @@ export { Button, BUTTON_GROUP_ORIENTATIONS, Card, - CardList, + CardContainer, CardSizes, CheckboxButton, CheckboxButtonGroup, From 73db0b4425c3c1d319b3b462c9701e184953ed09 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Apr 2022 14:27:52 -0700 Subject: [PATCH 12/33] Merge release/1.29.2 into main branch (#594) * Button and Link distinction documentation (#587) * add brand variants to Button (#593) Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- cypress/integration/button_spec.js | 6 + package.json | 1 + scss/buttons.scss | 128 ++++ scss/colors/palette.scss | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 723 ++++++++++++++++++--- src/Button/Button.mdx | 43 +- src/Button/Button.scss | 16 + src/Button/Buttons.stories.jsx | 146 ++++- 8 files changed, 958 insertions(+), 107 deletions(-) diff --git a/cypress/integration/button_spec.js b/cypress/integration/button_spec.js index 855ada3e..2739a227 100644 --- a/cypress/integration/button_spec.js +++ b/cypress/integration/button_spec.js @@ -23,6 +23,12 @@ const buttons = [ class: '.Button', match: 'Skip', }, + { + name: 'Brands', + path: 'components-button--brands', + class: '.Button', + match: 'Google', + }, ]; describe('Button', () => { diff --git a/package.json b/package.json index 609a25d4..d974b925 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "@user-interviews/ui-design-system", + "version": "1.29.2", "version": "1.29.1", "dependencies": { "react-bootstrap": "^2.0.2", diff --git a/scss/buttons.scss b/scss/buttons.scss index 0e563b16..6c1c186f 100644 --- a/scss/buttons.scss +++ b/scss/buttons.scss @@ -254,3 +254,131 @@ $warning: $ux-yellow-400; } } +@mixin btn-brand-google { + $btn-brand-google-background: $brand-color-google-alt; + $btn-brand-google-border: $brand-color-google-alt; + $btn-brand-google-color: $ux-white; + + $btn-brand-google-hover-background: #2069cf; + $btn-brand-google-hover-border: #2069cf; + $btn-brand-google-hover-color: $ux-white; + + $btn-brand-google-active-background: #2069cf; + $btn-brand-google-active-border: #2069cf; + $btn-brand-google-active-color: $ux-white; + + @include button-variant( + $btn-brand-google-background, + $btn-brand-google-border, + $btn-brand-google-color, + + $btn-brand-google-hover-background, + $btn-brand-google-hover-border, + $btn-brand-google-hover-color, + + $btn-brand-google-active-background, + $btn-brand-google-active-border, + $btn-brand-google-active-color, + ); + + &:disabled { + color: $ux-white; + } +} + +@mixin btn-brand-facebook { + $btn-brand-facebook-background: $brand-color-facebook; + $btn-brand-facebook-border: $brand-color-facebook; + $btn-brand-facebook-color: $ux-white; + + $btn-brand-facebook-hover-background: darken($brand-color-facebook, 5%); + $btn-brand-facebook-hover-border: darken($brand-color-facebook, 5%); + $btn-brand-facebook-hover-color: $ux-white; + + $btn-brand-facebook-active-background: darken($brand-color-facebook, 5%); + $btn-brand-facebook-active-border: darken($brand-color-facebook, 5%); + $btn-brand-facebook-active-color: $ux-white; + + @include button-variant( + $btn-brand-facebook-background, + $btn-brand-facebook-border, + $btn-brand-facebook-color, + + $btn-brand-facebook-hover-background, + $btn-brand-facebook-hover-border, + $btn-brand-facebook-hover-color, + + $btn-brand-facebook-active-background, + $btn-brand-facebook-active-border, + $btn-brand-facebook-active-color, + ); + + &:disabled { + color: $ux-white; + } +} + + @mixin btn-brand-linkedin { + $btn-brand-linkedin-background: $brand-color-linkedin; + $btn-brand-linkedin-border: $brand-color-linkedin; + $btn-brand-linkedin-color: $ux-white; + + $btn-brand-linkedin-hover-background: darken($brand-color-linkedin, 5%); + $btn-brand-linkedin-hover-border: darken($brand-color-linkedin, 5%); + $btn-brand-linkedin-hover-color: $ux-white; + + $btn-brand-linkedin-active-background: darken($brand-color-linkedin, 5%); + $btn-brand-linkedin-active-border: darken($brand-color-linkedin, 5%); + $btn-brand-linkedin-active-color: $ux-white; + + @include button-variant( + $btn-brand-linkedin-background, + $btn-brand-linkedin-border, + $btn-brand-linkedin-color, + + $btn-brand-linkedin-hover-background, + $btn-brand-linkedin-hover-border, + $btn-brand-linkedin-hover-color, + + $btn-brand-linkedin-active-background, + $btn-brand-linkedin-active-border, + $btn-brand-linkedin-active-color, + ); + + &:disabled { + color: $ux-white; + } + } + + @mixin btn-brand-twitter { + $btn-brand-twitter-background: $brand-color-twitter; + $btn-brand-twitter-border: $brand-color-twitter; + $btn-brand-twitter-color: $ux-white; + + $btn-brand-twitter-hover-background: darken($brand-color-twitter, 5%); + $btn-brand-twitter-hover-border: darken($brand-color-twitter, 5%); + $btn-brand-twitter-hover-color: $ux-white; + + $btn-brand-twitter-active-background: darken($brand-color-twitter, 5%); + $btn-brand-twitter-active-border: darken($brand-color-twitter, 5%); + $btn-brand-twitter-active-color: $ux-white; + + @include button-variant( + $btn-brand-twitter-background, + $btn-brand-twitter-border, + $btn-brand-twitter-color, + + $btn-brand-twitter-hover-background, + $btn-brand-twitter-hover-border, + $btn-brand-twitter-hover-color, + + $btn-brand-twitter-active-background, + $btn-brand-twitter-active-border, + $btn-brand-twitter-active-color, + ); + + &:disabled { + color: $ux-white; + } + } + diff --git a/scss/colors/palette.scss b/scss/colors/palette.scss index fd9e58b9..ae38e77e 100644 --- a/scss/colors/palette.scss +++ b/scss/colors/palette.scss @@ -17,7 +17,7 @@ $ux-teal: #0E4749; $ux-yellow: #F3CE14; $ux-white: #FFFFFF; -$brand-color-facebook: #4C67A1; +$brand-color-facebook: #3577ea; $brand-color-google: #DB3236; $brand-color-google-alt: #2D8CFF; $brand-color-linkedin: #0077B5; diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index ada9bedc..2c070eb7 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -1654,6 +1654,435 @@ exports[`Storyshots Components/Avatar With Image 1`] = `
    `; +exports[`Storyshots Components/Button Brands 1`] = ` +
    + + + + + + + +
    + + + + + + + + +
    + + + + + + + +
    + + + + + + + +
    +`; + exports[`Storyshots Components/Button Danger 1`] = ` `; +exports[`Storyshots Components/CardList Default 1`] = ` +
    +
    +
    +
    +

    + Card 1 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 2 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 3 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +`; + exports[`Storyshots Components/CheckboxButton Default 1`] = `
    + Buttons allow users to take actions and make choices. + + + + + + ## Anatomy: - **Leading icon (optional):** Should be included when the button has a clear action verb (e.g. Edit, Save, Delete) - **Label:** Utilizes sentence-casing (e.g. “New project”) - **Container:** Indicates the button's touch target - **Trailing icon (optional):** Typically used as a dropdown arrow -## Best practices + +## Guidelines + +### Implementation - A layout should have one prominent button, the others should clearly be secondary + +### Copy - Use sentence casing for all buttons (e.g. “New project”) - Maintain `verb` + `noun` syntax for labels (e.g. "Save profile" vs "save") - Avoid generic messaging such as "Ok" - Use 3 or fewer words for each button + +### Iconography +- Font Awesome library + - We utilize the Regular and Solid Font Awesome icons + - Only use Solid icons on icon-only buttons. import `@fortawesome/pro-solid-svg-icons` + - Use Regular icons for all other buttons. import `@fortawesome/pro-regular-svg-icons` - Use a leading icon alongside a label if there is a primary action verb (e.g. Edit, Share, Copy) - Icon-only buttons should only be permitted if - Space is limited (e.g. too small for text alone) - - The icon is standardized or represents an object with a strong physical analog or visual attribute (e.g. floppy disk, pencil) + - The icon is standardized or represents an object with a strong physical analog or visual attribute (e.g. floppy disk (Save), pencil (Edit)) -## Guidelines +## Button vs. Link distinction -### General +- Buttons are used for actions that affect the application. Clicking them causes changes on the frontend or backend. +- Links are used for navigation. -### Implementation +**For accessibility purposes, it’s important to style buttons as buttons and links as links. So if the app’s CTA only takes the user to a new page, use a link instead.** -### Copy ## Stories ### Primary -- Very important actions that usually trigger a longer workflow. +- Important actions that usually trigger a longer workflow. @@ -59,6 +80,10 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -### Secondary +### Brands +- Usually used for authentication purposes with different brands + + + + -### Tertiary diff --git a/src/Button/Button.scss b/src/Button/Button.scss index f86732b0..9baaab23 100644 --- a/src/Button/Button.scss +++ b/src/Button/Button.scss @@ -48,4 +48,20 @@ &.btn-outline-transparent { @include btn-outline-transparent; } + + &.btn-brand-google { + @include btn-brand-google; + } + + &.btn-brand-facebook { + @include btn-brand-facebook; + } + + &.btn-brand-linkedin { + @include btn-brand-linkedin; + } + + &.btn-brand-twitter { + @include btn-brand-twitter; + } } diff --git a/src/Button/Buttons.stories.jsx b/src/Button/Buttons.stories.jsx index 61c9871e..33305181 100644 --- a/src/Button/Buttons.stories.jsx +++ b/src/Button/Buttons.stories.jsx @@ -1,7 +1,10 @@ import React from 'react'; import Button from 'src/Button'; -import { faFileAlt, faCaretDown } from '@fortawesome/pro-solid-svg-icons'; +import { faFileAlt, faCaretDown } from '@fortawesome/pro-regular-svg-icons'; +import { + faGoogle, faFacebook, faLinkedin, faTwitter, +} from '@fortawesome/free-brands-svg-icons'; import mdx from './Button.mdx'; export default { @@ -253,3 +256,144 @@ export const Transparent = () => ( ); + +export const Brands = () => ( + <> + + {' '} + + {' '} + + {' '} + +
    + + {' '} + + {' '} + + {' '} + + {' '} +
    + + {' '} + + {' '} + + {' '} + +
    + + {' '} + + {' '} + + {' '} + + +); From 0a49fb181c0beef2252daf0c3166b95ba34bdc6e Mon Sep 17 00:00:00 2001 From: Jason Basuil Date: Wed, 20 Apr 2022 14:56:32 -0700 Subject: [PATCH 13/33] remove extra version in package.json --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index d974b925..20ea5ca8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "@user-interviews/ui-design-system", "version": "1.29.2", - "version": "1.29.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", From db34760eba546912a6a5193905447dc6233a4aea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 May 2022 09:44:01 -0700 Subject: [PATCH 14/33] Merge release/1.30.0 into main branch (#611) * removing TrackedButton from export (#603) * add aria-live to Toast (#605) * handle setting title prop on Toast (#607) * update focus state to Button and Select (#601) Co-authored-by: Jason Basuil Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- package.json | 2 +- scss/buttons.scss | 56 +++++++- spec/__snapshots__/Storyshots.test.js.snap | 135 +++++++++++------- src/Alert/Alert.jsx | 6 +- src/Select/styles.js | 2 +- src/Toast/Toast.jsx | 5 +- src/Toast/Toast.stories.jsx | 19 ++- .../__snapshots__/withToast.test.jsx.snap | 4 +- src/Toast/useToast.js | 19 ++- src/index.js | 2 - 10 files changed, 181 insertions(+), 69 deletions(-) diff --git a/package.json b/package.json index 20ea5ca8..dd5f15cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.29.2", + "version": "1.30.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/scss/buttons.scss b/scss/buttons.scss index 6c1c186f..4a5bd8d1 100644 --- a/scss/buttons.scss +++ b/scss/buttons.scss @@ -20,7 +20,13 @@ $primary: $ux-emerald-600; $danger: $ux-red; -$warning: $ux-yellow-400; +$warning: $ux-yellow-400; + +@mixin btn-focus-outline { + box-shadow: none !important; + outline: 0.125rem solid $ux-blue-500; + outline-offset: 0.125rem; +} @mixin btn-primary { $btn-primary-background: $primary; @@ -48,6 +54,10 @@ $warning: $ux-yellow-400; $btn-primary-active-border, $btn-primary-active-color, ); + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-outline-primary { @@ -77,6 +87,10 @@ $warning: $ux-yellow-400; background-color: $btn-outline-primary-active-background; border-color: $btn-outline-primary-active-border-color; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-danger { @@ -105,6 +119,10 @@ $warning: $ux-yellow-400; $btn-danger-active-border, $btn-danger-active-color, ); + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-outline-danger { @@ -134,6 +152,10 @@ $warning: $ux-yellow-400; background-color: $btn-outline-danger-active-background; border-color: $btn-outline-danger-active-border-color; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-warning { @@ -162,6 +184,10 @@ $warning: $ux-yellow-400; $btn-warning-active-border, $btn-warning-active-color, ); + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-outline-warning { @@ -191,6 +217,10 @@ $warning: $ux-yellow-400; background-color: $btn-outline-warning-active-background; border-color: $btn-outline-warning-active-border-color; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-transparent { @@ -223,6 +253,10 @@ $warning: $ux-yellow-400; &:disabled { color: $ux-gray-500; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-outline-transparent { @@ -252,6 +286,10 @@ $warning: $ux-yellow-400; background-color: $btn-outline-transparent-active-background; border-color: $btn-outline-transparent-active-border-color; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-brand-google { @@ -284,6 +322,10 @@ $warning: $ux-yellow-400; &:disabled { color: $ux-white; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-brand-facebook { @@ -316,6 +358,10 @@ $warning: $ux-yellow-400; &:disabled { color: $ux-white; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-brand-linkedin { @@ -348,6 +394,10 @@ $warning: $ux-yellow-400; &:disabled { color: $ux-white; } + + &:focus, &:active { + @include btn-focus-outline; + } } @mixin btn-brand-twitter { @@ -380,5 +430,9 @@ $warning: $ux-yellow-400; &:disabled { color: $ux-white; } + + &:focus, &:active { + @include btn-focus-outline; + } } diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 2c070eb7..98cb42b9 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -50,16 +50,16 @@ exports[`Storyshots Components/Alert Announcement 1`] = `
    -

    Announcement title -

    -

    +

    Announcement message -

    +
    @@ -115,16 +115,16 @@ exports[`Storyshots Components/Alert Error 1`] = `
    -

    Error title -

    -

    +

    Error message -

    +
    @@ -216,16 +216,16 @@ exports[`Storyshots Components/Alert Info 1`] = `
    -

    Info title -

    -

    +

    Info message -

    +
    @@ -317,16 +317,16 @@ exports[`Storyshots Components/Alert Success 1`] = `
    -

    Success title -

    -

    +

    Success message -

    +
    @@ -382,16 +382,16 @@ exports[`Storyshots Components/Alert Warning 1`] = `
    -

    Warning title -

    -

    +

    Warning message -

    +
    @@ -486,16 +486,16 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = `
    -

    Success title -

    -

    +

    Success message -

    +
    -

    Info title -

    -

    +

    Info message -

    +
    -

    Announcement title -

    -

    +

    Announcement message -

    +
    -

    Error title -

    -

    +

    Error message -

    +
    -

    Warning title -

    -

    +

    Warning message -

    +
    -

    Connect to Google Calendar to create reminders automatically -

    -

    +

    @@ -1046,7 +1046,7 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` Connect Google Calendar -

    +
    -

    Connect to Google Calendar to create reminders automatically -

    -

    +

    When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. -

    +
    -

    Default title -

    -

    +

    Default message -

    +
    @@ -18099,6 +18100,35 @@ exports[`Storyshots Components/Toast Toast 1`] = ` } >
    +
    +

    + Click the button to see a toast message. Use the knobs to try different types! +

    + +
    +
    +`; + +exports[`Storyshots Components/Toast Toast Custom Message 1`] = ` +
    +
    @@ -18126,6 +18156,7 @@ exports[`Storyshots Components/Toast Toast With Action 1`] = ` } >
    diff --git a/src/Alert/Alert.jsx b/src/Alert/Alert.jsx index a58c474c..639fa9df 100644 --- a/src/Alert/Alert.jsx +++ b/src/Alert/Alert.jsx @@ -80,12 +80,12 @@ function Alert(props) {
    { props.title && ( -

    +

    {props.title} -

    +
    ) } -

    {props.message}

    +
    {props.message}
    { props.action && ( diff --git a/src/Select/styles.js b/src/Select/styles.js index 514c9242..2a0cb00c 100644 --- a/src/Select/styles.js +++ b/src/Select/styles.js @@ -19,7 +19,7 @@ function getBorderStyles(isFocused, isSelected) { return { boxShadow: (isFocused || isSelected) ? '0px 0px 8px 0px #66AFE9B2;' : 'none', borderColor: ( - (isFocused || isSelected) ? systemColors.UX_BLUE_300 : systemColors.inputBorderColor + (isFocused || isSelected) ? systemColors.UX_BLUE_500 : systemColors.inputBorderColor ), }; } diff --git a/src/Toast/Toast.jsx b/src/Toast/Toast.jsx index efd14586..c43203a7 100644 --- a/src/Toast/Toast.jsx +++ b/src/Toast/Toast.jsx @@ -15,7 +15,10 @@ export default function Toast(props) { ); return ( - + { props.messages.map((message) => ( diff --git a/src/Toast/Toast.stories.jsx b/src/Toast/Toast.stories.jsx index e254627a..0de8c5ee 100644 --- a/src/Toast/Toast.stories.jsx +++ b/src/Toast/Toast.stories.jsx @@ -14,11 +14,11 @@ export default { }; const DummyComponent = ({ - action, type, message, setToastMessage, + action, type, message, title, setToastMessage, }) => (

    Click the button to see a toast message. Use the knobs to try different types!

    - +
    ); DummyComponent.propTypes = withToastPropTypes; @@ -27,6 +27,19 @@ const ToastDummyComponent = withToast(DummyComponent); export const Toast = () => ( +); + +export const ToastCustomMessage = () => ( + + [Some strong text] and additional text that is wrapped in a fragment. + + )} + title={text('Title', 'Normal string title')} type={radios('Message Type', MessageTypes, MessageTypes.SUCCESS)} /> ); @@ -36,6 +49,7 @@ const ManualDismissToastComponent = withToast(DummyComponent, { autoDismiss: fal export const ManualDismissToast = () => ( ); @@ -44,6 +58,7 @@ export const ToastWithAction = () => ( ); diff --git a/src/Toast/__snapshots__/withToast.test.jsx.snap b/src/Toast/__snapshots__/withToast.test.jsx.snap index bb263f11..b4dfb29a 100644 --- a/src/Toast/__snapshots__/withToast.test.jsx.snap +++ b/src/Toast/__snapshots__/withToast.test.jsx.snap @@ -80,11 +80,11 @@ Array [
    -

    This is just a test... -

    +
    ({ +const createMessage = (messageType, messageText, messageAction, messageTitle) => ({ id: generateUUID(), message: messageText, type: messageType, action: messageAction, + title: messageTitle, }); const ACTIONS = { @@ -19,7 +20,12 @@ const messagesReducer = (state, { type, payload }) => { case ACTIONS.SET_MESSAGE: return [ ...state, - createMessage(payload.messageAction, payload.messageType, payload.messageText), + createMessage( + payload.messageAction, + payload.messageType, + payload.messageText, + payload.messageTitle, + ), ]; case ACTIONS.CLEAR_MESSAGES: return []; @@ -37,8 +43,13 @@ const useToast = (initialMessages = []) => { dispatch({ type: ACTIONS.CLEAR_MESSAGES }); }, []); - const setMessage = useCallback((messageAction, messageType, messageText) => { - dispatch({ type: ACTIONS.SET_MESSAGE, payload: { messageAction, messageType, messageText } }); + const setMessage = useCallback((messageAction, messageType, messageText, messageTitle) => { + dispatch({ + type: ACTIONS.SET_MESSAGE, +payload: { + messageAction, messageType, messageText, messageTitle, +}, +}); }, []); const dismissMessage = useCallback((messageId) => { diff --git a/src/index.js b/src/index.js index 82a972f4..7ac504b5 100644 --- a/src/index.js +++ b/src/index.js @@ -65,7 +65,6 @@ import { withToastPropTypes, } from 'src/Toast'; import Tooltip from 'src/Tooltip'; -import TrackedButton from 'src/TrackedButton'; export { Alert, @@ -125,7 +124,6 @@ export { TableSortLabel, Toast, Tooltip, - TrackedButton, useToast, ValueContainer, withToast, From bfaafec8a1fcd77090072ee0eee3b3425e7dc447 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 May 2022 12:03:50 -0700 Subject: [PATCH 15/33] Merge release/1.30.1 into main branch (#618) * fix styles on Select to allow for tabbing and proper focus (#617) --- package.json | 2 +- src/Select/styles.js | 16 +++++----------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index dd5f15cf..b27d71bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.30.0", + "version": "1.30.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/src/Select/styles.js b/src/Select/styles.js index 2a0cb00c..d84c961b 100644 --- a/src/Select/styles.js +++ b/src/Select/styles.js @@ -86,17 +86,12 @@ const defaultStyles = ({ size }) => ({ fontWeight: fontWeights.light, }), option: (styles, { - data, isDisabled, - isFocused, isSelected, - }) => { - const colors = data.colors || {}; - - return { + }) => ({ ...styles, - backgroundColor: isSelected || isFocused ? colors.hover : styles.backgroundColor, - color: colors.text, + backgroundColor: isSelected ? systemColors.UX_BLUE_200 : styles.backgroundColor, + color: systemColors.UX_BLACK, fontWeight: fontWeights.light, fontSize: '0.875rem', cursor: 'pointer', @@ -109,10 +104,9 @@ const defaultStyles = ({ size }) => ({ ':hover': { ...styles[':hover'], - backgroundColor: colors.hover || systemColors.UX_BLUE_100, + backgroundColor: isSelected ? systemColors.UX_BLUE_200 : systemColors.UX_BLUE_100, }, - }; - }, + }), }); const defaultTheme = (theme) => ({ From 716f48943e35d2263cd6984e33e22d477b149a87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 May 2022 18:35:48 -0700 Subject: [PATCH 16/33] Merge release/1.30.2 into main branch (#624) * allow setting id on InputLabel (#621) * add id to FormGroup__invalid-feedback (#623) --- package.json | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 4 +++ src/FormGroup/FormGroup.jsx | 5 +++- src/FormGroup/FormGroup.mdx | 3 ++ src/FormGroup/FormGroup.stories.jsx | 8 +++++- src/InputLabel/InputLabel.jsx | 33 ++++++++++++++-------- 6 files changed, 40 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index b27d71bf..e1f28a31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.30.1", + "version": "1.30.2", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 98cb42b9..a91d7474 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -3937,6 +3937,7 @@ exports[`Storyshots Components/Form Default 1`] = `
    Invalid phone number
    @@ -4734,6 +4735,8 @@ exports[`Storyshots Components/Form Elements/Form Group With Errors 1`] = ` className="Input input-group" >
      +
      {renderErrors(errorMessage)}
      )} diff --git a/src/FormGroup/FormGroup.mdx b/src/FormGroup/FormGroup.mdx index 0a8a2541..c5e4432d 100644 --- a/src/FormGroup/FormGroup.mdx +++ b/src/FormGroup/FormGroup.mdx @@ -96,6 +96,9 @@ helpful if they do! - Keep the text as short as possible; for complex info, provide a link to more information in a new browser tab +- **Accessibility:** + - When `displayErrorText` is true, be sure to set an `aria-invalid` and `aria-describedby='form-errors-${inputKey}'` +on the invalid input when there is an error so that screen readers will read the error message. diff --git a/src/FormGroup/FormGroup.stories.jsx b/src/FormGroup/FormGroup.stories.jsx index bea2a0ab..438ad801 100644 --- a/src/FormGroup/FormGroup.stories.jsx +++ b/src/FormGroup/FormGroup.stories.jsx @@ -167,7 +167,13 @@ export const WithErrors = () => ( label="Form Group with errors" labelHtmlFor="input" > - + ); diff --git a/src/InputLabel/InputLabel.jsx b/src/InputLabel/InputLabel.jsx index 90a529dd..39c19dcc 100644 --- a/src/InputLabel/InputLabel.jsx +++ b/src/InputLabel/InputLabel.jsx @@ -6,19 +6,26 @@ import Tooltip from 'src/Tooltip'; import 'scss/forms/input_label.scss'; -export default function InputLabel(props) { - return ( - +const InputLabel = ({ + className, + labelHtmlFor, + text, + required, + labelHelperText, + tooltipText, + ...props +}) => ( + ); -} InputLabel.propTypes = { className: PropTypes.string, @@ -36,3 +43,5 @@ InputLabel.defaultProps = { required: false, tooltipText: undefined, }; + +export default InputLabel; From 4ee7f86793a82dcb43f8dd2455c378568eb4ec91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 May 2022 09:39:16 -0700 Subject: [PATCH 17/33] Merge release/1.30.3 into main branch (#629) * update Input focus boder to ux-blue-500 for 3:1 contrast ratio (#628) --- package.json | 2 +- src/Input/Input.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e1f28a31..2899c6bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.30.2", + "version": "1.30.3", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/src/Input/Input.scss b/src/Input/Input.scss index 95b4d89b..80d36c53 100644 --- a/src/Input/Input.scss +++ b/src/Input/Input.scss @@ -9,7 +9,7 @@ } &:focus { - border: 0.06rem solid #92CBFC; + border: 0.06rem solid $ux-blue-500; box-shadow: $input-focus-box-shadow; color: $input-focus-color; filter: drop-shadow(0px 0px 3px rgba(102, 175, 233, 0.7)); From 4b8e1daf81a4053f8da95112adcb2a8bc040a1f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Jun 2022 12:43:27 -0700 Subject: [PATCH 18/33] Merge release/1.31.0 into main branch (#633) * update FormGroup and InputLabel to support fieldset and legend (#632) --- package.json | 2 +- scss/forms/input_label.scss | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 356 ++++++++++++++---- .../CheckboxButtonGroup.stories.jsx | 17 +- src/FormGroup/FormGroup.jsx | 58 ++- src/FormGroup/FormGroup.stories.jsx | 3 + src/InputLabel/InputLabel.jsx | 33 +- src/InputLegend/InputLegend.jsx | 59 +++ src/InputLegend/InputLegend.scss | 6 + src/InputLegend/index.js | 1 + .../RadioButtonGroup.stories.jsx | 17 +- src/index.js | 2 + 12 files changed, 443 insertions(+), 113 deletions(-) create mode 100644 src/InputLegend/InputLegend.jsx create mode 100644 src/InputLegend/InputLegend.scss create mode 100644 src/InputLegend/index.js diff --git a/package.json b/package.json index 2899c6bc..00cd82f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.30.3", + "version": "1.31.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/scss/forms/input_label.scss b/scss/forms/input_label.scss index 85c66d16..a1d2f782 100644 --- a/scss/forms/input_label.scss +++ b/scss/forms/input_label.scss @@ -1,7 +1,7 @@ @import '../colors'; @import '../typography'; -.InputLabel { +.InputLabel, .InputLegend { @include font-type-30--bold; display: flex; flex-wrap: wrap; diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index a91d7474..f4c37283 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -3372,6 +3372,210 @@ exports[`Storyshots Components/CardList Default 1`] = `
    `; +exports[`Storyshots Components/CardContainer Default 1`] = ` +
    +
    +
    +
    +

    + Card 1 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 2 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 3 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +`; + +exports[`Storyshots Components/CardList Default 1`] = ` +
    +
    +
    +
    +

    + Card 1 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 2 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 3 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +`; + exports[`Storyshots Components/CheckboxButton Default 1`] = `
    -
    - +
    -
    +
    `; @@ -4088,23 +4292,23 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = ` } } > -
    - +
    -
    +
    `; @@ -4176,23 +4380,23 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default Row 1`] } } > -
    - +
    -
    +
    `; @@ -4264,23 +4468,23 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description 1`] } } > -
    - +
    -
    +
    `; @@ -4388,23 +4592,23 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Row } } > -
    - +
    -
    +
    `; @@ -5025,23 +5229,23 @@ exports[`Storyshots Components/Form Elements/Form Group With Radio Button Group } } > -
    - +
    -
    +
    `; @@ -5317,23 +5521,23 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = } } > -
    - +
    -
    +
    `; @@ -5411,23 +5615,23 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = ` } } > -
    - +
    -
    +
    `; @@ -5505,23 +5709,23 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Default Row 1`] = } } > -
    - +
    -
    +
    `; @@ -5599,23 +5803,23 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Description 1`] = } } > -
    - +
    -
    + `; @@ -5729,23 +5933,23 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Row 1` } } > -
    - +
    -
    + `; diff --git a/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx b/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx index 7caeb349..84191ced 100644 --- a/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx +++ b/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx @@ -25,6 +25,7 @@ const CheckboxButtonGroupComponent = ({ bordered, children, defaultValue, + elementType, fullWidth, id, inline, @@ -38,6 +39,7 @@ const CheckboxButtonGroupComponent = ({ return ( { ( ( ( ( element. +// All other FormGroups will be rendered as a normal
    by default. +const FORM_GROUP_ELEMENT_TYPES = ['div', 'fieldset']; + function renderErrors(errors) { if (typeof errors === 'string') { return errors; @@ -38,21 +44,27 @@ export default function FormGroup(props) { const errorMessage = buildErrorMessage(errors[inputKey], props.label); const hasErrors = errorMessage && errorMessage.length > 0; - return ( -
    + {isElementTypeFieldset && props.label && ( + )} - id={props.id} - > - {props.label && ( + + {isElementTypeDiv && props.label && ( ) } -
    + ); + + return createElement( + props.elementType, + { + className: classNames( + 'FormGroup', + props.className, { + 'FormGroup--is-invalid': hasErrors, + 'FormGroup--bordered': props.bordered, + 'FormGroup--inline': props.inline, + }, + ), + id: props.id, + }, + formGroupChildren, + ); } FormGroup.propTypes = { @@ -88,6 +116,7 @@ FormGroup.propTypes = { children: PropTypes.node, className: PropTypes.string, displayErrorText: PropTypes.bool, + elementType: PropTypes.oneOf(FORM_GROUP_ELEMENT_TYPES), errors: PropTypes.object, helperText: PropTypes.string, id: PropTypes.string.isRequired, @@ -106,6 +135,7 @@ FormGroup.defaultProps = { children: undefined, className: '', displayErrorText: true, + elementType: 'div', errors: {}, helperText: undefined, inline: false, diff --git a/src/FormGroup/FormGroup.stories.jsx b/src/FormGroup/FormGroup.stories.jsx index 438ad801..dda37034 100644 --- a/src/FormGroup/FormGroup.stories.jsx +++ b/src/FormGroup/FormGroup.stories.jsx @@ -183,6 +183,7 @@ const ButtonGroupComponent = ({ bordered, children, defaultValue, + elementType, fullWidth, id, label, @@ -196,6 +197,7 @@ const ButtonGroupComponent = ({ return ( { bordered={boolean('Bordered Form Group', true)} ButtonGroup={RadioButtonGroup} defaultValue="1" + elementType="fieldset" fullWidth={boolean('Full width', false)} id="with-radio-button-group" label="Form Group with radio button group" diff --git a/src/InputLabel/InputLabel.jsx b/src/InputLabel/InputLabel.jsx index 39c19dcc..6cf858f4 100644 --- a/src/InputLabel/InputLabel.jsx +++ b/src/InputLabel/InputLabel.jsx @@ -8,27 +8,37 @@ import 'scss/forms/input_label.scss'; const InputLabel = ({ className, + elementType, labelHtmlFor, text, required, labelHelperText, tooltipText, ...props -}) => ( - +}) => { + const inputLabelChildren = ( + <> + {text} + {required &&  (Required)} + {labelHelperText &&  ({labelHelperText})} + {tooltipText && } + ); + return ( + + ); +}; + InputLabel.propTypes = { className: PropTypes.string, + elementType: PropTypes.string, labelHelperText: PropTypes.string, labelHtmlFor: PropTypes.string, required: PropTypes.bool, @@ -38,6 +48,7 @@ InputLabel.propTypes = { InputLabel.defaultProps = { className: '', + elementType: undefined, labelHelperText: undefined, labelHtmlFor: '', required: false, diff --git a/src/InputLegend/InputLegend.jsx b/src/InputLegend/InputLegend.jsx new file mode 100644 index 00000000..380e3506 --- /dev/null +++ b/src/InputLegend/InputLegend.jsx @@ -0,0 +1,59 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +import Tooltip from 'src/Tooltip'; + +import './InputLegend.scss'; +import 'scss/forms/input_label.scss'; + +const InputLegend = ({ + className, + elementType, + labelHtmlFor, + text, + required, + labelHelperText, + tooltipText, + ...props +}) => { + const inputLegendChildren = ( + <> + {text} + {required &&  (Required)} + {labelHelperText &&  ({labelHelperText})} + {tooltipText && } + + ); + + return ( + + {inputLegendChildren} + + ); +}; + +InputLegend.propTypes = { + className: PropTypes.string, + elementType: PropTypes.string, + labelHelperText: PropTypes.string, + labelHtmlFor: PropTypes.string, + required: PropTypes.bool, + text: PropTypes.string.isRequired, + tooltipText: PropTypes.string, +}; + +InputLegend.defaultProps = { + className: '', + elementType: undefined, + labelHelperText: undefined, + labelHtmlFor: '', + required: false, + tooltipText: undefined, +}; + +export default InputLegend; diff --git a/src/InputLegend/InputLegend.scss b/src/InputLegend/InputLegend.scss new file mode 100644 index 00000000..6db30989 --- /dev/null +++ b/src/InputLegend/InputLegend.scss @@ -0,0 +1,6 @@ +.InputLegend { + // Ensure does not default to width: 100% + // when creating inline FormGroup + width: unset; + margin-right: 0.75rem; +} diff --git a/src/InputLegend/index.js b/src/InputLegend/index.js new file mode 100644 index 00000000..81445ae1 --- /dev/null +++ b/src/InputLegend/index.js @@ -0,0 +1 @@ +export { default } from './InputLegend'; diff --git a/src/RadioButtonGroup/RadioButtonGroup.stories.jsx b/src/RadioButtonGroup/RadioButtonGroup.stories.jsx index 1972316e..274ee48f 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.stories.jsx +++ b/src/RadioButtonGroup/RadioButtonGroup.stories.jsx @@ -25,6 +25,7 @@ const RadioButtonGroupComponent = ({ bordered, children, defaultValue, + elementType, fullWidth, id, inline, @@ -38,6 +39,7 @@ const RadioButtonGroupComponent = ({ return ( { ( ( ( ( Date: Wed, 8 Jun 2022 12:37:13 -0700 Subject: [PATCH 19/33] Merge release/1.31.1 into main branch (#642) * change FormControlLabel label and children to span (#638) * updating input scss variables (#641) * Prepare release 1.31.1 --- package.json | 2 +- scss/colors/inputs.scss | 3 +- spec/__snapshots__/Storyshots.test.js.snap | 432 ++++++--------------- src/FormControlLabel/FormControlLabel.jsx | 8 +- 4 files changed, 121 insertions(+), 324 deletions(-) diff --git a/package.json b/package.json index 00cd82f8..be10fbae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.31.0", + "version": "1.31.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/scss/colors/inputs.scss b/scss/colors/inputs.scss index 96a1094c..524369b0 100644 --- a/scss/colors/inputs.scss +++ b/scss/colors/inputs.scss @@ -1,8 +1,9 @@ @import './palette'; $input-border-color: $ux-gray-400; // Override bootstrap default +$input-box-shadow: inset 0px 2px 2px rgb(225 228 232 / 65%); $input-disabled-bg: $ux-gray-300; // Override bootstrap default -$input-focus-border-color: $ux-blue-300; +$input-focus-border-color: $ux-blue-500; $input-btn-focus-color: $ux-blue-300; $input-color: $ux-gray-900; diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index f4c37283..6e215fdf 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -3372,210 +3372,6 @@ exports[`Storyshots Components/CardList Default 1`] = `
    `; -exports[`Storyshots Components/CardContainer Default 1`] = ` -
    -
    -
    -
    -

    - Card 1 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 2 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 3 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -`; - -exports[`Storyshots Components/CardList Default 1`] = ` -
    -
    -
    -
    -

    - Card 1 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 2 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 3 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -`; - exports[`Storyshots Components/CheckboxButton Default 1`] = `
    -
    Label 2 -
    -
    + This is where the description goes -
    +
    `; @@ -4154,7 +3950,7 @@ exports[`Storyshots Components/Form Default 1`] = ` className="FormControlLabel" htmlFor="first-radio" > -
    first choice -
    + +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +======= Announcement message +>>>>>>> main
    - - -`; - -exports[`Storyshots Components/Alert Error 1`] = ` -
    -
    - + + + + Accordion Toggle #2 + + + ( + helper text + ) + +
    +
    + + 3 Items Selected + +
    +
    + +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +======= Error message +>>>>>>> main
    `; -exports[`Storyshots Components/Alert Info 1`] = ` +exports[`Storyshots Components/Accordion Default 1`] = `
    - - - + + + Accordion Toggle #1 + + + ( + helper text + ) + +
    +
    - - + + - - - - -
    -
    + viewBox="0 0 448 512" + xmlns="http://www.w3.org/2000/svg" + > + + + +
    +
    +
    - Info title +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    +
    +
    +<<<<<<< release/1.32.0 + +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +======= +
    + Info title
    Info message +>>>>>>> main
    `; -exports[`Storyshots Components/Alert Success 1`] = ` +exports[`Storyshots Components/Accordion Default Open 1`] = `
    - - - + + + Accordion Toggle #1 + + + ( + helper text + ) + +
    +
    - - + + + +
    +
    + +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +======= transform="translate(-256 -256)" /> @@ -326,156 +585,209 @@ exports[`Storyshots Components/Alert Success 1`] = ` className="Alert__message" > Success message +>>>>>>> main
    - - -`; - -exports[`Storyshots Components/Alert Warning 1`] = ` -
    -
    - -
    -
    -
    - Warning title -
    -
    - Warning message -
    -
    -
    -
    -`; - -exports[`Storyshots Components/Alert With Call To Action 1`] = ` -
    -

    - Default CTA rendered by component -

    -
    +<<<<<<< release/1.32.0 + + + + + Accordion Toggle #2 + + + ( + helper text + ) + +
    +
    + + 3 Items Selected + + + + +
    +
    + +
    +
    +
      +
    • + I was opened by default! +
    • +
    +
    +======= + + + + +
    - -
    + Warning message +>>>>>>> main +
    +
    + + +`; + +exports[`Storyshots Components/Accordion Disabled 1`] = ` +
    +
    +
    +
    + +
    @@ -504,119 +816,101 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` className="Alert-success primary-action" href="https://www.userinterviews.com/" rel="noopener noreferrer" +>>>>>>> main > - Primary action - +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    +
    + + + +
    -
    -
    - - - - -
    -
    -
    Info title
    @@ -633,68 +927,261 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` className="Alert-info primary-action" href="https://www.userinterviews.com/" rel="noopener noreferrer" +>>>>>>> main > - Primary action - +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    + + +`; + +exports[`Storyshots Components/Accordion Flush 1`] = ` +
    +
    +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    -
    -
    - + + + + Accordion Toggle #2 + + + ( + helper text + ) + +
    +
    + + 3 Items Selected + + + + +
    +
    + +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    + + + +`; + +exports[`Storyshots Components/Accordion Separate 1`] = ` +
    +
    +
    >>>>>> main > - - Primary action - +
    +
    + + Accordion Toggle #1 + + + ( + helper text + ) + +
    +
    + + 3 Items Selected + + + + +
    +
    + +
    +
    +
      +
    • + I'm inside my own Accordion parent element +
    • +
    +
    +
    +
    +
    +
    +
    +
    +
      +
    • + I'm inside my own Accordion parent element +
    • +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Alert Announcement 1`] = ` +
    +<<<<<<< release/1.32.0 + Announcement message +======= Error message +>>>>>>> main
    - -
    - -
    + +`; + +exports[`Storyshots Components/Alert Error 1`] = ` +
    - Warning title + Error title
    - Warning message + Error message
    +
    + +`; + +exports[`Storyshots Components/Alert Info 1`] = ` +
    +
    -
    - -
    -
    -

    - Custom CTA via - - message - - prop -

    -
    -
    - + +
    - Connect to Google Calendar to create reminders automatically + Info title
    -
    - When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. -
    -
    +
    +
    +`; + +exports[`Storyshots Components/Alert Success 1`] = ` +
    +
    +
    + +
    -
    -
    - + +
    +
    +
    + Success title +
    +
    + Success message +
    -

    - Custom CTA via - - action - - prop -

    + +`; + +exports[`Storyshots Components/Alert Warning 1`] = ` +
    - When you confirm a session we’ll automatically - add an event and reminders to your Google Calendar. + Warning message
    -
    -
    +`; + +exports[`Storyshots Components/Alert With Call To Action 1`] = ` +
    +

    + Default CTA rendered by component +

    +
    +
    + - Connect Google Calendar - + + +
    +
    +
    + Success title +
    +
    + Success message +
    +
    +
    -
    -`; - -exports[`Storyshots Components/Alert With Dismiss 1`] = ` -
    - Default title + Info title
    - Default message + Info message
    +
    -
    -`; - -exports[`Storyshots Components/Avatar Large 1`] = ` -
    -
    +
    - + + + + +
    - - RR - +<<<<<<< release/1.32.0 + Announcement title +======= + Connect to Google Calendar to create reminders automatically +>>>>>>> main
    -
    -
    - - RR - +<<<<<<< release/1.32.0 + Announcement message
    -
    - - RR - + Primary action + +======= +
    + When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. +
    +
    +>>>>>>> main
    -
    - -
    + + +
    +
    +
    - + + + + +
    - - RR - +<<<<<<< release/1.32.0 + Error title +======= + Connect to Google Calendar to create reminders automatically +>>>>>>> main
    -
    -
    -
    -`; - -exports[`Storyshots Components/Avatar Small 1`] = ` -
    -
    -
    - - RR - +<<<<<<< release/1.32.0 + Error message +======= + When you confirm a session we’ll automatically + add an event and reminders to your Google Calendar. +>>>>>>> main
    -
    - - RR - -
    + Primary action +
    -
    - -
    + + +
    +
    +
    - + + + + +
    - >>>>>> main +
    +
    +<<<<<<< release/1.32.0 + Warning message +
    +
    +
    + + Primary action + +======= + Default message +
    +>>>>>>> main +
    +
    + +
    +
    +

    + Custom CTA via + + message + + prop +

    +
    +
    + +
    +
    +
    + Connect to Google Calendar to create reminders automatically +
    +
    +
    + When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. +
    +
    + +
    +
    +

    + Custom CTA via + + action + + prop +

    +
    +
    + +
    +
    +
    + Connect to Google Calendar to create reminders automatically +
    +
    + When you confirm a session we’ll automatically + add an event and reminders to your Google Calendar. +
    +
    +
    + +
    +
    + +
    +
    +
    +`; + +exports[`Storyshots Components/Alert With Dismiss 1`] = ` +
    +
    +
    + + + + +
    +
    +
    + Default title +
    +
    + Default message +
    +
    +
    + +
    +
    +
    +`; + +exports[`Storyshots Components/Avatar Large 1`] = ` +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Avatar Small 1`] = ` +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    + + RR + +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Avatar With Alert 1`] = ` +
    +
    +
    +
    + + RR + +
    +
    +
    +
    +
    + + RR + +
    +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Avatar With Image 1`] = ` +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Button Brands 1`] = ` +
    + + + + + + + +
    + + + + + + + + +
    + + + + + + + +
    + + + + + + + +
    +`; + +exports[`Storyshots Components/Button Danger 1`] = ` +
    + + + + + + +
    -
    + + + +
    -
    -
    -`; - -exports[`Storyshots Components/Avatar With Alert 1`] = ` -
    -
    -
    + + Delete +
    - - RR - -
    -
    -
    -
    + + +
    + + Delete + +
    `; -exports[`Storyshots Components/Avatar With Image 1`] = ` +exports[`Storyshots Components/Button Link 1`] = `
    -
    -
    -
    - -
    -
    -
    + Send + + +
    -
    + + + Send + + +
    `; +<<<<<<< release/1.32.0 +exports[`Storyshots Components/Button Primary 1`] = ` +======= exports[`Storyshots Components/Button Brands 1`] = ` +>>>>>>> main
    +`; + +exports[`Storyshots Components/Button Transparent 1`] = ` +
    >>>>>> main } /> +<<<<<<< release/1.32.0 +
    +`; + +exports[`Storyshots Components/Card Default 1`] = ` +
    +
    +
    +

    + Large card with title +

    + + (helper text) + +
    +

    + And a subtitle +

    +
    + Use knobs to try out the different card sizes +
    +
    +
    +`; + +exports[`Storyshots Components/CardContainer Default 1`] = ` +
    +
    +
    +
    +

    + Card 1 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 2 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +

    + Card 3 +

    +
    +

    + The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. +

    +
      +
    • + 500,000+ sessions completed +
    • +
    • + $19 million+ incentives distributed +
    • +
    • + 3 hours median time to 1st matched participant +
    • +
    +
    +
    +
    +`; + +=======
    `; @@ -3270,6 +5826,7 @@ exports[`Storyshots Components/CardContainer Default 1`] = `
    `; +>>>>>>> main exports[`Storyshots Components/CardList Default 1`] = `
    + yellow + + + green + + + gray + + + silver + +
    +
    +`; + +exports[`Storyshots Components/Pill With Close 1`] = ` +
    + + Text + + +
    +`; + +exports[`Storyshots Components/Pill With Container 1`] = ` +
    +
    + - yellow + + 1-on-1 Interview - green + + Online - gray + + $120 choice of dozens of digital gift cards silver @@ -6745,26 +9431,28 @@ exports[`Storyshots Components/Pill With Close 1`] = ` className="Pill__button--close" onClick={[Function]} type="button" +>>>>>>> main > - - + 1 hour + +
    `; @@ -7217,79 +9905,74 @@ exports[`Storyshots Components/Selects/Async Default 1`] = ` } >
    + +
    Select...
    -
    - -
    - -
    -
    + tabIndex={0} + type="text" + value="" + />
    + +
    Select...
    -
    - -
    - -
    -
    + tabIndex={0} + type="text" + value="" + />
    + +
    Select...
    -
    - -
    - -
    -
    + tabIndex={0} + type="text" + value="" + />
    + +
    Select...
    -
    - -
    - -
    -
    + tabIndex={0} + type="text" + value="" + />
    + +
    Select...
    @@ -7734,7 +10418,7 @@ exports[`Storyshots Components/Selects/Single Custom Option With Checkbox 1`] = >
    + +
    Select...
    @@ -7811,7 +10511,7 @@ exports[`Storyshots Components/Selects/Single Custom Value Container 1`] = ` >
    + +
    Select...
    @@ -7881,7 +10597,7 @@ exports[`Storyshots Components/Selects/Single Default 1`] = ` >
    + +
    Select...
    @@ -8006,7 +10738,7 @@ exports[`Storyshots Components/Selects/Single In Modal 1`] = ` >
    + +
    Select...
    @@ -8102,7 +10850,7 @@ exports[`Storyshots Components/Selects/Single Labeled 1`] = ` >
    + +
    Select...
    @@ -8172,7 +10936,7 @@ exports[`Storyshots Components/Selects/Single Loading 1`] = ` >
    + +
    Select...
    @@ -8249,7 +11029,7 @@ exports[`Storyshots Components/Selects/Single Multi Select 1`] = ` >
    + +
    Select...
    -
    - -
    - -
    -
    + tabIndex={0} + type="text" + value="" + />

    + Vertically-stacked header that reveal or hide additional content. +

    + + + + + + +### When to use + +### When not to use + + +## Props + + + +## Stories + +### Default + + + + + +### Default Open + + + + + +### Chevron Left + + + + + +### Flush + + + + + +### Separate + + + + + +### Disabled + + + + diff --git a/src/Accordion/Accordion.stories.jsx b/src/Accordion/Accordion.stories.jsx new file mode 100644 index 00000000..978c6adf --- /dev/null +++ b/src/Accordion/Accordion.stories.jsx @@ -0,0 +1,243 @@ +import React from 'react'; + +import { + Accordion, + AccordionItem, + AccordionToggle, + AccordionCollapse, +} from 'src/Accordion'; + +import { faCreditCard } from '@fortawesome/pro-regular-svg-icons'; + +import mdx from './Accordion.mdx'; + +export default { + title: 'Components/Accordion', + component: Accordion, + subcomponents: { + AccordionItem, AccordionToggle, AccordionCollapse, + }, + parameters: { + docs: { + page: mdx, + }, + }, +}; + +export const Default = () => ( + + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    +
    +); + +export const DefaultOpen = () => ( + + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    + + + +
      +
    • I was opened by default!
    • +
    +
    +
    +
    +); + +export const ChevronLeft = () => ( + + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    +
    +); + +export const Flush = () => ( + + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    +
    +); + +export const Separate = () => ( + <> + + + + +
      +
    • I'm inside my own Accordion parent element
    • +
    +
    +
    +
    +
    + + + + +
      +
    • I'm inside my own Accordion parent element
    • +
    +
    +
    +
    + +); + +export const Disabled = () => ( + + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    + + + +
      +
    • Item 1
    • +
    • Item 2
    • +
    • Item 3
    • +
    +
    +
    +
    +); diff --git a/src/Accordion/AccordionCollapse.jsx b/src/Accordion/AccordionCollapse.jsx new file mode 100644 index 00000000..cf3267f8 --- /dev/null +++ b/src/Accordion/AccordionCollapse.jsx @@ -0,0 +1,38 @@ +import React from 'react'; +import classNames from 'classnames'; +import PropTypes from 'prop-types'; + +import RBAccordionCollapse from 'react-bootstrap/AccordionCollapse'; + +import './AccordionCollapse.scss'; + +const AccordionCollapse = ({ + children, + className, + eventKey, + ...props +}) => ( + +
    + {children} +
    +
    +); + +AccordionCollapse.propTypes = { + className: PropTypes.string, + /** + A unique key used to control this item's collapse/expand. + */ + eventKey: PropTypes.string.isRequired, +}; + +AccordionCollapse.defaultProps = { + className: undefined, +}; + +export default AccordionCollapse; diff --git a/src/Accordion/AccordionCollapse.scss b/src/Accordion/AccordionCollapse.scss new file mode 100644 index 00000000..85b5ae11 --- /dev/null +++ b/src/Accordion/AccordionCollapse.scss @@ -0,0 +1,8 @@ +@import '../../scss/theme'; + +.AccordionCollapse { + + &__container { + padding: 1rem; + } +} diff --git a/src/Accordion/AccordionItem.jsx b/src/Accordion/AccordionItem.jsx new file mode 100644 index 00000000..4632ee5e --- /dev/null +++ b/src/Accordion/AccordionItem.jsx @@ -0,0 +1,23 @@ +import React from 'react'; +import classNames from 'classnames'; +import PropTypes from 'prop-types'; + +import RBAccordionItem from 'react-bootstrap/AccordionItem'; + +const AccordionItem = ({ children, className, ...props }) => ( + + { children } + +); + +AccordionItem.propTypes = { + className: PropTypes.string, +}; + +AccordionItem.defaultProps = { + className: undefined, +}; +export default AccordionItem; diff --git a/src/Accordion/AccordionToggle.jsx b/src/Accordion/AccordionToggle.jsx new file mode 100644 index 00000000..8b6870a1 --- /dev/null +++ b/src/Accordion/AccordionToggle.jsx @@ -0,0 +1,133 @@ +import React, { useEffect, useState } from 'react'; +import classNames from 'classnames'; +import PropTypes from 'prop-types'; + +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; + +import { useAccordionButton } from 'react-bootstrap/AccordionButton'; +import AccordionContext from 'react-bootstrap/AccordionContext'; + +import './AccordionToggle.scss'; +import { faChevronUp } from '@fortawesome/pro-solid-svg-icons'; + +const AccordionToggle = ({ + children, + chevronLeft, + chevronRight, + className, + disabled, + eventKey, + helperText, + label, + leadingIcon, + title, + ...props +}) => { + const { activeEventKey } = React.useContext(AccordionContext); + + const [isCollapsed, setIsCollapsed] = useState(true); + + const decoratedOnClick = useAccordionButton(eventKey, () => { + if (eventKey !== activeEventKey) { + setIsCollapsed(false); + } + setIsCollapsed((prev) => !prev); + }); + + const handleCloseInactiveToggle = () => { + setIsCollapsed(true); + }; + + useEffect(() => { + if (activeEventKey && eventKey !== activeEventKey) { + handleCloseInactiveToggle(); + } + + if (activeEventKey && eventKey === activeEventKey) { + setIsCollapsed(((prev) => !prev)); + } + }, [activeEventKey, eventKey]); + + return ( + + ); +}; + +AccordionToggle.propTypes = { + /** + Aligns the Chevron icon to the left + */ + chevronLeft: PropTypes.bool, + /** + Aligns the Chevron icon to the right (default) + */ + chevronRight: PropTypes.bool, + className: PropTypes.string, + /** + A unique key used to control this item's collapse/expand. + */ + disabled: PropTypes.bool, + eventKey: PropTypes.string.isRequired, + helperText: PropTypes.string, + label: PropTypes.string, + leadingIcon: PropTypes.object, + title: PropTypes.string, +}; + +AccordionToggle.defaultProps = { + chevronLeft: false, + chevronRight: true, + className: undefined, + disabled: undefined, + helperText: undefined, + label: undefined, + leadingIcon: undefined, + title: undefined, +}; + +export default AccordionToggle; diff --git a/src/Accordion/AccordionToggle.scss b/src/Accordion/AccordionToggle.scss new file mode 100644 index 00000000..b03a3174 --- /dev/null +++ b/src/Accordion/AccordionToggle.scss @@ -0,0 +1,86 @@ +@import '../../scss/theme'; + +.AccordionToggle { + all: unset; + width: 100%; + + &__container { + display: flex; + justify-content: space-between; + + padding: 1rem; + border-bottom: 1px solid $ux-gray-400; + + &--right { + display: flex; + align-items: center; + + .AccordionToggle__chevron-right { + float: right; + } + } + + &--left { + display: flex; + align-items: center; + } + } + + &:focus { + border-radius: $ux-border-radius; + box-shadow: 0 0 0 2px $ux-blue-500; + transition: $focus-state-transition-time; + } + + &:not(.collapsed) .AccordionToggle__chevron-right { + svg { + transform: rotate(-180deg); + transition: $chevron-rotation-transition-time ease all; + } + } + + &:not(.collapsed) .AccordionToggle__chevron-left { + svg { + transform: rotate(180deg); + transition: $chevron-rotation-transition-time ease all; + } + } + + &.collapsed .AccordionToggle__chevron-right, + &.collapsed .AccordionToggle__chevron-left + { + svg { + transition: $chevron-rotation-transition-time ease all; + } + } + + &__chevron-left { + margin-right: 1rem; + } + + &__chevron-right { + margin-left: 2rem; + } + + &__leading-icon { + margin-right: .5rem; + } + + &__title { + @include font-type-30--bold; + margin-right: .5rem; + } + + &__helper-text { + @include font-type-30; + } + + &__label { + @include font-type-10--uppercase; + color: $ux-blue-600; + } + + &--disabled { + opacity: 0.5; + } +} diff --git a/src/Accordion/index.js b/src/Accordion/index.js new file mode 100644 index 00000000..b7c2bdf2 --- /dev/null +++ b/src/Accordion/index.js @@ -0,0 +1,11 @@ +import Accordion from './Accordion'; +import AccordionItem from './AccordionItem'; +import AccordionToggle from './AccordionToggle'; +import AccordionCollapse from './AccordionCollapse'; + +export { + Accordion, + AccordionItem, + AccordionToggle, + AccordionCollapse, +}; diff --git a/src/Button/Button.mdx b/src/Button/Button.mdx index 4ca4991f..8d972c3c 100644 --- a/src/Button/Button.mdx +++ b/src/Button/Button.mdx @@ -80,6 +80,13 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; +### Link +- A button that is styled like a link + + + + + ### Brands - Usually used for authentication purposes with different brands diff --git a/src/Button/Button.scss b/src/Button/Button.scss index 9baaab23..55edda6c 100644 --- a/src/Button/Button.scss +++ b/src/Button/Button.scss @@ -64,4 +64,8 @@ &.btn-brand-twitter { @include btn-brand-twitter; } + + &.btn-link { + @include btn-link; + } } diff --git a/src/Button/Buttons.stories.jsx b/src/Button/Buttons.stories.jsx index 33305181..58324b6c 100644 --- a/src/Button/Buttons.stories.jsx +++ b/src/Button/Buttons.stories.jsx @@ -1,7 +1,7 @@ import React from 'react'; import Button from 'src/Button'; -import { faFileAlt, faCaretDown } from '@fortawesome/pro-regular-svg-icons'; +import { faFileAlt, faCaretDown, faPaperPlane } from '@fortawesome/pro-regular-svg-icons'; import { faGoogle, faFacebook, faLinkedin, faTwitter, } from '@fortawesome/free-brands-svg-icons'; @@ -257,6 +257,33 @@ export const Transparent = () => ( ); +export const Link = () => ( + <> + + {' '} + + {' '} + + +); + export const Brands = () => ( <>
    -
    -
    - Error title -
    -
    - Error message ->>>>>>> main
    @@ -340,7 +290,6 @@ exports[`Storyshots Components/Accordion Default 1`] = `
    -<<<<<<< release/1.32.0
    -======= -
    - Info title -
    -
    - Info message ->>>>>>> main
    @@ -532,7 +470,6 @@ exports[`Storyshots Components/Accordion Default Open 1`] = ` focusable="false" role="img" style={Object {}} -<<<<<<< release/1.32.0 viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" > @@ -565,27 +502,6 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
    -======= - transform="translate(-256 -256)" - /> - - - - -
    -
    -
    - Success title -
    -
    - Success message ->>>>>>> main
    -<<<<<<< release/1.32.0 @@ -682,30 +597,6 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
    -======= - - - - -
    -
    -
    - Warning title -
    -
    - Warning message ->>>>>>> main
    @@ -770,7 +661,6 @@ exports[`Storyshots Components/Accordion Disabled 1`] = ` focusable="false" role="img" style={Object {}} -<<<<<<< release/1.32.0 viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" > @@ -787,36 +677,6 @@ exports[`Storyshots Components/Accordion Disabled 1`] = `
    - - - - -
    -
    -
    - Success title -
    -
    - Success message -
    -
    -
    - >>>>>> main > @@ -2106,53 +1893,6 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` > Primary action -======= -
    - When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. -
    - -
    ->>>>>>> main
    -<<<<<<< release/1.32.0 Error title -======= - Connect to Google Calendar to create reminders automatically ->>>>>>> main
    -<<<<<<< release/1.32.0 Error message -======= - When you confirm a session we’ll automatically - add an event and reminders to your Google Calendar. ->>>>>>> main
    -<<<<<<< release/1.32.0 Warning title -======= - Default title ->>>>>>> main
    -<<<<<<< release/1.32.0 Warning message
    @@ -2353,10 +2079,6 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` > Primary action -======= - Default message -
    ->>>>>>> main
    `; -<<<<<<< release/1.32.0 exports[`Storyshots Components/Button Primary 1`] = ` -======= -exports[`Storyshots Components/Button Brands 1`] = ` ->>>>>>> main
    -`; - -exports[`Storyshots Components/Button Transparent 1`] = ` -
    >>>>>> main - } - /> -
    -`; - -exports[`Storyshots Components/Button Danger 1`] = ` -
    - - - - - - - - - - - -
    -`; - -exports[`Storyshots Components/Button Primary 1`] = ` -
    - - - -<<<<<<< release/1.32.0 -
    -`; - -exports[`Storyshots Components/Card Default 1`] = ` -
    -
    -
    -

    - Large card with title -

    - - (helper text) - -
    -

    - And a subtitle -

    -
    - Use knobs to try out the different card sizes -
    -
    -
    -`; - -exports[`Storyshots Components/CardContainer Default 1`] = ` -
    -
    + +
    -
    -`; - -======= + + +
    `; @@ -5826,7 +4485,6 @@ exports[`Storyshots Components/CardContainer Default 1`] = `
    `; ->>>>>>> main exports[`Storyshots Components/CardList Default 1`] = `
    `; -exports[`Storyshots Components/Pill With Container 1`] = ` -
    -
    - - - 1-on-1 Interview - - - - Online - - - - $120 choice of dozens of digital gift cards - - - silver - -
    -
    -`; - -exports[`Storyshots Components/Pill With Close 1`] = ` -
    - - Text -
    -
    -`; - exports[`Storyshots Components/Pill With Container 1`] = `
    Date: Thu, 14 Jul 2022 13:55:06 -0700 Subject: [PATCH 22/33] Merge release/1.32.1 into main branch (#668) * add tabindex to error alerts (#655) * update snapshots (#667) --- package.json | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 2 ++ src/Alert/Alert.jsx | 8 +++++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9834d0e7..5a687a1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.32.0", + "version": "1.32.1", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 542ade4a..e1616fb8 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -1286,6 +1286,7 @@ exports[`Storyshots Components/Alert Error 1`] = `
    Error message
    @@ -1972,6 +1973,7 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = `
    Error message
    diff --git a/src/Alert/Alert.jsx b/src/Alert/Alert.jsx index 639fa9df..1a592dc4 100644 --- a/src/Alert/Alert.jsx +++ b/src/Alert/Alert.jsx @@ -85,7 +85,13 @@ function Alert(props) {
    ) } -
    {props.message}
    +
    + {props.message} +
    { props.action && ( From 5777effd2e1abd0daee77ae1942429c81b09f9c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Jul 2022 10:01:45 -0700 Subject: [PATCH 23/33] Merge release/1.32.2 into main branch (#675) * add Chromatic (#665) * Bump async from 3.2.1 to 3.2.3 (#596) * Bump minimist from 1.2.5 to 1.2.6 (#581) * Bump nanoid from 3.1.30 to 3.3.2 (#580) * Bump node-fetch from 2.6.1 to 2.6.7 (#532) * Bump shelljs from 0.8.4 to 0.8.5 (#520) * updates to Accordion v2 (#673) * Bump terser from 4.8.0 to 4.8.1 (#674) * Prepare release 1.32.2 --- .github/workflows/chromatic.yml | 28 + build-storybook.log | 4344 ++++++++++++++++++++ package.json | 26 +- spec/__snapshots__/Storyshots.test.js.snap | 1875 ++++++++- src/Accordion/Accordion.mdx | 11 +- src/Accordion/Accordion.stories.jsx | 31 +- src/Accordion/AccordionCollapse.scss | 1 + src/Accordion/AccordionItem.jsx | 14 +- src/Accordion/AccordionItem.scss | 20 + src/Accordion/AccordionToggle.scss | 1 - yarn.lock | 118 +- 11 files changed, 6276 insertions(+), 193 deletions(-) create mode 100644 .github/workflows/chromatic.yml create mode 100644 build-storybook.log create mode 100644 src/Accordion/AccordionItem.scss diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml new file mode 100644 index 00000000..35fac06e --- /dev/null +++ b/.github/workflows/chromatic.yml @@ -0,0 +1,28 @@ +# .github/workflows/chromatic.yml + +# Workflow name +name: 'Chromatic' + +# Event for the workflow +on: push + +# List of jobs +jobs: + chromatic-deployment: + runs-on: ubuntu-latest + env: + FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # 👈 Required to retrieve git history + - uses: actions/setup-node@v1 + with: + node-version: '14.17.4' + - run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ && + npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN + - run: yarn + - name: Publish to Chromatic + uses: chromaui/action@v1 + with: + projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} diff --git a/build-storybook.log b/build-storybook.log new file mode 100644 index 00000000..92b8553b --- /dev/null +++ b/build-storybook.log @@ -0,0 +1,4344 @@ +info @storybook/react v6.2.2 +info +info => Cleaning outputDir: /var/folders/h8/8gtzxy5x1cb0w_3fbr6l5nyh0000gn/T/chromatic--99774-yrLSGvOWvEpe +info => Copying static files: ./public => ./ +info => Loading presets +info => Loading custom manager config +info => Compiling manager.. +info => Compiling preview.. +info => Loading 1 config file in "/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook" +info => Loading 4 other files in "/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook" +info => Adding stories defined in "/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/main.js" +info => Loading custom manager config +info => Using implicit CSS loaders +(node:99807) DeprecationWarning: Relying on the implicit PostCSS loader is deprecated and will be removed in Storybook 7.0. +If you need PostCSS, include '@storybook/addon-postcss' in your '.storybook/main.js' file. + +See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-implicit-postcss-loader for details. +(Use `node --trace-deprecation ...` to show where the warning was created) +info => Loading custom Webpack config (full-control mode). + [webpack.Progress] 0% compiling + [webpack.Progress] 10% building 0/0 modules 0 active + [webpack.Progress] 10% building 0/1 modules 1 active multi /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-server/dist/cjs/globals/polyfills.js /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-server/dist/cjs/globals/globals.js /Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/storybook-init-framework-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-other-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-other-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js-generated-other-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-other-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/preview.js-generated-config-entry.js /Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js + [webpack.Progress] 10% building 1/1 modules 0 active + [webpack.Progress] 10% building 1/2 modules 1 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/storybook-init-framework-entry.js + [webpack.Progress] 10% building 1/3 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/preview.js-generated-config-entry.js + [webpack.Progress] 10% building 1/4 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js +Browserslist: caniuse-lite is outdated. Please run: +npx browserslist@latest --update-db + +Why you should do it regularly: +https://github.com/browserslist/browserslist#browsers-data-updating + [webpack.Progress] 10% building 1/5 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js-generated-other-entry.js + [webpack.Progress] 10% building 1/6 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-other-entry.js + [webpack.Progress] 10% building 2/6 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-other-entry.js + [webpack.Progress] 10% building 3/6 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js + [webpack.Progress] 10% building 3/7 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-other-entry.js + [webpack.Progress] 10% building 3/8 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-other-entry.js + [webpack.Progress] 10% building 4/8 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-other-entry.js + [webpack.Progress] 10% building 5/8 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js + [webpack.Progress] 10% building 5/9 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-server/dist/cjs/globals/polyfills.js + [webpack.Progress] 10% building 5/10 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-server/dist/cjs/globals/globals.js + [webpack.Progress] 10% building 5/11 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js + [webpack.Progress] 10% building 5/12 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js + [webpack.Progress] 10% building 5/13 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js + [webpack.Progress] 10% building 5/14 modules 9 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js + [webpack.Progress] 10% building 6/14 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js + [webpack.Progress] 10% building 7/14 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js + [webpack.Progress] 10% building 8/14 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js + [webpack.Progress] 11% building 9/14 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js + [webpack.Progress] 11% building 10/14 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js + [webpack.Progress] 11% building 11/14 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js + [webpack.Progress] 11% building 12/14 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/generated-stories-entry.js + [webpack.Progress] 11% building 13/14 modules 1 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/storybook-init-framework-entry.js + [webpack.Progress] 11% building 14/14 modules 0 active + [webpack.Progress] 11% building 14/15 modules 1 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/constants.js + [webpack.Progress] 11% building 14/16 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-a11y/dist/esm/highlight.js + [webpack.Progress] 11% building 14/17 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractArgTypes.js + [webpack.Progress] 11% building 14/18 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/stories sync nonrecursive /^\.\/(?:Intro\.stories\.mdx)$/ + [webpack.Progress] 11% building 14/19 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/stories sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.mdx)$/ + [webpack.Progress] 11% building 14/20 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/stories sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.js(?:\[x\]|[x])\/?)$/ + [webpack.Progress] 11% building 14/21 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(js|mdx))$/ + [webpack.Progress] 11% building 14/22 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.js(?:\[x\]|[x])\/?)$/ + [webpack.Progress] 11% building 14/23 modules 9 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/jsxDecorator.js + [webpack.Progress] 11% building 14/24 modules 10 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/enhanceArgTypes.js + [webpack.Progress] 11% building 14/25 modules 11 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/preview.js + [webpack.Progress] 11% building 14/26 modules 12 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regenerator-runtime/runtime.js + [webpack.Progress] 11% building 15/26 modules 11 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regenerator-runtime/runtime.js + [webpack.Progress] 11% building 15/27 modules 12 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/harmony-module.js + [webpack.Progress] 11% building 15/28 modules 13 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/module.js + [webpack.Progress] 11% building 15/29 modules 14 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.concat.js + [webpack.Progress] 11% building 15/30 modules 15 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.join.js + [webpack.Progress] 11% building 15/31 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.map.js + [webpack.Progress] 11% building 15/32 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.to-string.js + [webpack.Progress] 11% building 15/33 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.promise.js + [webpack.Progress] 11% building 15/34 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.keys.js + [webpack.Progress] 11% building 15/35 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.js + [webpack.Progress] 11% building 15/36 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.filter.js + [webpack.Progress] 11% building 15/37 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptor.js + [webpack.Progress] 11% building 15/38 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.dom-collections.for-each.js + [webpack.Progress] 11% building 15/39 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 11% building 16/39 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 17/39 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 18/39 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 19/39 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 20/39 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 21/39 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 22/39 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 23/39 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 12% building 24/39 modules 15 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 25/39 modules 14 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 26/39 modules 13 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 27/39 modules 12 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 28/39 modules 11 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 29/39 modules 10 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 30/39 modules 9 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 31/39 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 32/39 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 13% building 33/39 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 14% building 34/39 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 14% building 35/39 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 14% building 36/39 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptors.js + [webpack.Progress] 14% building 37/39 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-descriptor.js + [webpack.Progress] 14% building 38/39 modules 1 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/.storybook/preview.js + [webpack.Progress] 14% building 38/40 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractProps.js + [webpack.Progress] 14% building 38/41 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/Intro.stories.mdx + [webpack.Progress] 14% building 39/41 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/Intro.stories.mdx + [webpack.Progress] 14% building 39/42 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/shared.js + [webpack.Progress] 14% building 39/43 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/normalizeArgTypes.js + [webpack.Progress] 14% building 39/44 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/index.js + [webpack.Progress] 14% building 39/45 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-logger/dist/esm/index.js + [webpack.Progress] 14% building 40/45 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-logger/dist/esm/index.js + [webpack.Progress] 14% building 41/45 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-logger/dist/esm/index.js + [webpack.Progress] 15% building 42/45 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-logger/dist/esm/index.js + [webpack.Progress] 15% building 42/46 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/ColorPalette/Palette.stories.jsx + [webpack.Progress] 15% building 42/47 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/Typography/Typography.stories.jsx + [webpack.Progress] 15% building 42/48 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.stories.jsx + [webpack.Progress] 15% building 42/49 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.stories.jsx + [webpack.Progress] 15% building 42/50 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.stories.jsx + [webpack.Progress] 15% building 42/51 modules 9 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Buttons.stories.jsx + [webpack.Progress] 15% building 42/52 modules 10 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.stories.jsx + [webpack.Progress] 15% building 42/53 modules 11 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.stories.jsx + [webpack.Progress] 15% building 42/54 modules 12 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.stories.jsx + [webpack.Progress] 15% building 42/55 modules 13 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButton/CheckboxButton.stories.jsx + [webpack.Progress] 15% building 42/56 modules 14 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx + [webpack.Progress] 15% building 42/57 modules 15 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/CopyToClipboardButton.stories.jsx + [webpack.Progress] 15% building 42/58 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.stories.jsx + [webpack.Progress] 15% building 42/59 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.stories.jsx + [webpack.Progress] 15% building 42/60 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.stories.jsx + [webpack.Progress] 15% building 42/61 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.stories.jsx + [webpack.Progress] 15% building 42/62 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.stories.jsx + [webpack.Progress] 15% building 42/63 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/FormGroup.stories.jsx + [webpack.Progress] 15% building 42/64 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.stories.jsx + [webpack.Progress] 15% building 42/65 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/Modal.stories.jsx + [webpack.Progress] 15% building 42/66 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.stories.jsx + [webpack.Progress] 15% building 42/67 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.stories.jsx + [webpack.Progress] 15% building 42/68 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.stories.jsx + [webpack.Progress] 15% building 42/69 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButton/RadioButton.stories.jsx + [webpack.Progress] 15% building 42/70 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.stories.jsx + [webpack.Progress] 15% building 42/71 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/AsyncCreatableSelect.stories.jsx + [webpack.Progress] 15% building 42/72 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/AsyncSelect.stories.jsx + [webpack.Progress] 15% building 42/73 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/CreatableSelect.stories.jsx + [webpack.Progress] 15% building 42/74 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/SingleSelect.stories.jsx + [webpack.Progress] 15% building 42/75 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.stories.jsx + [webpack.Progress] 15% building 42/76 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.stories.jsx + [webpack.Progress] 15% building 42/77 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tabs.stories.jsx + [webpack.Progress] 15% building 42/78 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.stories.jsx + [webpack.Progress] 15% building 42/79 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/index.js??ref--10!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/Toast.stories.jsx + [webpack.Progress] 15% building 42/80 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/export.js + [webpack.Progress] 15% building 42/81 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-string-tag-support.js + [webpack.Progress] 15% building 42/82 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/global.js + [webpack.Progress] 15% building 43/82 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/global.js + [webpack.Progress] 15% building 44/82 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/global.js + [webpack.Progress] 15% building 44/83 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/index.js + [webpack.Progress] 15% building 44/84 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/global/window.js + [webpack.Progress] 15% building 44/85 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/axe-core/axe.js + [webpack.Progress] 15% building 44/86 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/descriptors.js + [webpack.Progress] 15% building 44/87 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js + [webpack.Progress] 15% building 44/88 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/jsx-runtime.js + [webpack.Progress] 15% building 44/89 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-get-own-property-descriptor.js + [webpack.Progress] 15% building 44/90 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-indexed-object.js + [webpack.Progress] 15% building 44/91 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/fails.js + [webpack.Progress] 15% building 44/92 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-property.js + [webpack.Progress] 15% building 44/93 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/own-keys.js + [webpack.Progress] 15% building 44/94 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-non-enumerable-property.js + [webpack.Progress] 15% building 44/95 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/index.js + [webpack.Progress] 15% building 44/96 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/public_api.js + [webpack.Progress] 15% building 44/97 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 15% building 45/97 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 15% building 46/97 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 15% building 47/97 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 15% building 48/97 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 15% building 49/97 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 16% building 50/97 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 16% building 51/97 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 16% building 52/97 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-events/dist/esm/index.js + [webpack.Progress] 16% building 52/98 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-for-each.js + [webpack.Progress] 16% building 53/98 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-for-each.js + [webpack.Progress] 16% building 54/98 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-for-each.js + [webpack.Progress] 16% building 54/99 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 16% building 55/99 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 16% building 56/99 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 16% building 57/99 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 16% building 58/99 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 17% building 59/99 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 17% building 60/99 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/webpack/buildin/global.js + [webpack.Progress] 17% building 60/100 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/client_api.js + [webpack.Progress] 17% building 61/100 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/client_api.js + [webpack.Progress] 17% building 61/101 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/features/symbol/index.js + [webpack.Progress] 17% building 61/102 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/types.js + [webpack.Progress] 17% building 62/102 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/types.js + [webpack.Progress] 17% building 62/103 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/inferControls.js + [webpack.Progress] 17% building 62/104 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/hooks.js + [webpack.Progress] 17% building 63/104 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/hooks.js + [webpack.Progress] 17% building 63/105 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.reduce.js + [webpack.Progress] 17% building 63/106 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.assign.js + [webpack.Progress] 17% building 63/107 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.for-each.js + [webpack.Progress] 17% building 63/108 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.function.name.js + [webpack.Progress] 17% building 63/109 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.regexp.exec.js + [webpack.Progress] 17% building 63/110 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.regexp.to-string.js + [webpack.Progress] 17% building 63/111 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.replace.js + [webpack.Progress] 17% building 63/112 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.match.js + [webpack.Progress] 17% building 63/113 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/mapValues.js + [webpack.Progress] 17% building 63/114 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/filterArgTypes.js + [webpack.Progress] 17% building 63/115 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js + [webpack.Progress] 17% building 63/116 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 17% building 64/116 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 17% building 65/116 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 17% building 66/116 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 67/116 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 68/116 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 69/116 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 70/116 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 71/116 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 72/116 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 73/116 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 18% building 74/116 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 19% building 75/116 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 19% building 76/116 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 19% building 77/116 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js + [webpack.Progress] 19% building 77/117 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/queryparams.js + [webpack.Progress] 19% building 77/118 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 78/118 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 79/118 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 80/118 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 81/118 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 82/118 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 19% building 83/118 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 84/118 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 85/118 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 86/118 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 87/118 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 88/118 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 89/118 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/simulate-pageload.js + [webpack.Progress] 20% building 89/119 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/pathToId.js + [webpack.Progress] 20% building 89/120 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/config_api.js + [webpack.Progress] 20% building 89/121 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/index.js + [webpack.Progress] 20% building 89/122 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/story_store.js + [webpack.Progress] 20% building 89/123 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/parameters.js + [webpack.Progress] 20% building 89/124 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-forced.js + [webpack.Progress] 20% building 89/125 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/well-known-symbol.js + [webpack.Progress] 20% building 90/125 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/well-known-symbol.js + [webpack.Progress] 20% building 91/125 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/well-known-symbol.js + [webpack.Progress] 20% building 91/126 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.mdx + [webpack.Progress] 20% building 91/127 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.mdx + [webpack.Progress] 20% building 91/128 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.mdx + [webpack.Progress] 20% building 91/129 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.mdx + [webpack.Progress] 20% building 91/130 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.mdx + [webpack.Progress] 21% building 92/130 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.mdx + [webpack.Progress] 21% building 93/130 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.mdx + [webpack.Progress] 21% building 93/131 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/index.js + [webpack.Progress] 21% building 94/131 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/index.js + [webpack.Progress] 21% building 94/132 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util-deprecate/browser.js + [webpack.Progress] 21% building 95/132 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util-deprecate/browser.js + [webpack.Progress] 21% building 95/133 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 21% building 96/133 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 21% building 97/133 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 21% building 98/133 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 21% building 99/133 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 100/133 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 101/133 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 102/133 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 103/133 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 104/133 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 105/133 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 106/133 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 107/133 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 108/133 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react-jsx-runtime.production.min.js + [webpack.Progress] 22% building 108/134 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.mdx + [webpack.Progress] 22% building 108/135 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.values.js + [webpack.Progress] 23% building 109/135 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.values.js + [webpack.Progress] 23% building 109/136 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.mdx + [webpack.Progress] 23% building 110/136 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.mdx + [webpack.Progress] 23% building 110/137 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.mdx + [webpack.Progress] 23% building 110/138 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.mdx + [webpack.Progress] 23% building 111/138 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.mdx + [webpack.Progress] 23% building 111/139 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js + [webpack.Progress] 23% building 112/139 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js + [webpack.Progress] 23% building 113/139 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js + [webpack.Progress] 23% building 114/139 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js + [webpack.Progress] 23% building 115/139 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js + [webpack.Progress] 23% building 115/140 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.mdx + [webpack.Progress] 23% building 115/141 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/SingleSelect.mdx + [webpack.Progress] 23% building 115/142 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/ts-dedent/dist/index.js + [webpack.Progress] 23% building 115/143 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es5.js + [webpack.Progress] 23% building 115/144 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/ie8-dom-define.js + [webpack.Progress] 23% building 115/145 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/indexed-object.js + [webpack.Progress] 23% building 115/146 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-primitive.js + [webpack.Progress] 23% building 115/147 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-property-descriptor.js + [webpack.Progress] 23% building 115/148 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-built-in.js + [webpack.Progress] 23% building 116/148 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-built-in.js + [webpack.Progress] 24% building 117/148 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-built-in.js + [webpack.Progress] 24% building 117/149 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/crypto-browserify/index.js + [webpack.Progress] 24% building 117/150 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.mdx + [webpack.Progress] 24% building 118/150 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.mdx + [webpack.Progress] 24% building 119/150 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.mdx + [webpack.Progress] 24% building 120/150 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.mdx + [webpack.Progress] 24% building 120/151 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/types.js + [webpack.Progress] 24% building 120/152 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/index.js + [webpack.Progress] 24% building 121/152 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/index.js + [webpack.Progress] 24% building 122/152 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/index.js + [webpack.Progress] 24% building 123/152 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/index.js + [webpack.Progress] 24% building 124/152 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/index.js + [webpack.Progress] 24% building 124/153 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/timers-browserify/main.js + [webpack.Progress] 24% building 124/154 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/hooks.js + [webpack.Progress] 24% building 124/155 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/storybook-channel-mock.js + [webpack.Progress] 24% building 124/156 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/extractDocgenProps.js + [webpack.Progress] 24% building 124/157 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/types.js + [webpack.Progress] 24% building 124/158 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addons/dist/esm/make-decorator.js + [webpack.Progress] 24% building 124/159 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-object.js + [webpack.Progress] 24% building 124/160 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-get-own-property-names.js + [webpack.Progress] 24% building 124/161 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-get-own-property-symbols.js + [webpack.Progress] 24% building 124/162 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-property.js + [webpack.Progress] 24% building 124/163 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/require-object-coercible.js + [webpack.Progress] 24% building 124/164 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/index.js + [webpack.Progress] 24% building 124/165 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Button.mdx + [webpack.Progress] 24% building 124/166 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/index.js + [webpack.Progress] 25% building 125/166 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/index.js + [webpack.Progress] 25% building 125/167 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.includes.js + [webpack.Progress] 25% building 126/167 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.includes.js + [webpack.Progress] 25% building 126/168 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-element-to-jsx-string/dist/cjs/index.js + [webpack.Progress] 25% building 126/169 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/FormGroup.mdx + [webpack.Progress] 25% building 127/169 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/FormGroup.mdx + [webpack.Progress] 25% building 128/169 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/FormGroup.mdx + [webpack.Progress] 25% building 128/170 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/index.js + [webpack.Progress] 25% building 128/171 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-iteration.js + [webpack.Progress] 25% building 129/171 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-iteration.js + [webpack.Progress] 25% building 129/172 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.dom-collections.iterator.js + [webpack.Progress] 25% building 129/173 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.iterator.js + [webpack.Progress] 25% building 129/174 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/CreatableSelect.jsx + [webpack.Progress] 25% building 129/175 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.from.js + [webpack.Progress] 25% building 129/176 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react.production.min.js + [webpack.Progress] 25% building 130/176 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react/cjs/react.production.min.js + [webpack.Progress] 25% building 130/177 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 25% building 131/177 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 25% building 132/177 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 25% building 133/177 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 26% building 134/177 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 26% building 135/177 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 26% building 136/177 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 26% building 137/177 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.every.js + [webpack.Progress] 26% building 137/178 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/index.js + [webpack.Progress] 26% building 137/179 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 26% building 138/179 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 26% building 139/179 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 26% building 140/179 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 26% building 141/179 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 27% building 142/179 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/github-logo.svg + [webpack.Progress] 27% building 142/180 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-node.js + [webpack.Progress] 27% building 143/180 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-node.js + [webpack.Progress] 27% building 144/180 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-node.js + [webpack.Progress] 27% building 144/181 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-assign.js + [webpack.Progress] 27% building 145/181 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-assign.js + [webpack.Progress] 27% building 146/181 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-assign.js + [webpack.Progress] 27% building 146/182 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-v8-version.js + [webpack.Progress] 27% building 146/183 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-reduce.js + [webpack.Progress] 27% building 146/184 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-method-is-strict.js + [webpack.Progress] 27% building 146/185 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.replace-all.js + [webpack.Progress] 27% building 146/186 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-exec.js + [webpack.Progress] 27% building 147/186 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-exec.js + [webpack.Progress] 27% building 147/187 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js + [webpack.Progress] 27% building 147/188 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/redefine.js + [webpack.Progress] 27% building 148/188 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/redefine.js + [webpack.Progress] 27% building 149/188 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/redefine.js + [webpack.Progress] 28% building 150/188 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/redefine.js + [webpack.Progress] 28% building 150/189 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseAssignValue.js + [webpack.Progress] 28% building 151/189 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseAssignValue.js + [webpack.Progress] 28% building 151/190 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/pickBy.js + [webpack.Progress] 28% building 151/191 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/extends.js + [webpack.Progress] 28% building 151/192 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 28% building 151/193 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/asyncToGenerator.js + [webpack.Progress] 28% building 151/194 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/toConsumableArray.js + [webpack.Progress] 28% building 151/195 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 152/195 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 153/195 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 154/195 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 155/195 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 156/195 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 157/195 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 28% building 158/195 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 29% building 159/195 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 29% building 160/195 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 29% building 161/195 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 29% building 162/195 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/ValueContainer.jsx + [webpack.Progress] 29% building 162/196 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/inferArgTypes.js + [webpack.Progress] 29% building 162/197 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/use-symbol-as-uid.js + [webpack.Progress] 29% building 162/198 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/ensureArgTypes.js + [webpack.Progress] 29% building 163/198 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/ensureArgTypes.js + [webpack.Progress] 29% building 163/199 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.find.js + [webpack.Progress] 29% building 163/200 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-symbol.js + [webpack.Progress] 29% building 163/201 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 29% building 164/201 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 29% building 165/201 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 29% building 166/201 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 30% building 167/201 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 30% building 168/201 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/uid.js + [webpack.Progress] 30% building 168/202 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/has.js + [webpack.Progress] 30% building 168/203 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.weak-map.js + [webpack.Progress] 30% building 168/204 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.includes.js + [webpack.Progress] 30% building 168/205 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.set.js + [webpack.Progress] 30% building 168/206 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.entries.js + [webpack.Progress] 30% building 168/207 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.iterator.js + [webpack.Progress] 30% building 168/208 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 169/208 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 170/208 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 171/208 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 172/208 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 173/208 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 30% building 174/208 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 31% building 175/208 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 31% building 176/208 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 31% building 177/208 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 31% building 178/208 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared.js + [webpack.Progress] 31% building 178/209 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-to-array.js + [webpack.Progress] 31% building 178/210 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/types-6-0.js + [webpack.Progress] 31% building 179/210 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/types-6-0.js + [webpack.Progress] 31% building 180/210 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/types-6-0.js + [webpack.Progress] 31% building 180/211 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js + [webpack.Progress] 31% building 181/211 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js + [webpack.Progress] 31% building 182/211 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js + [webpack.Progress] 31% building 183/211 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js + [webpack.Progress] 32% building 184/211 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js + [webpack.Progress] 32% building 184/212 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/index.js + [webpack.Progress] 32% building 185/212 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/index.js + [webpack.Progress] 32% building 186/212 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/index.js + [webpack.Progress] 32% building 186/213 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js + [webpack.Progress] 32% building 186/214 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/document-create-element.js + [webpack.Progress] 32% building 186/215 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2015.js + [webpack.Progress] 32% building 186/216 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-object.js + [webpack.Progress] 32% building 186/217 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/classof-raw.js + [webpack.Progress] 32% building 186/218 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 187/218 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 188/218 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 189/218 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 190/218 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 191/218 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/path.js + [webpack.Progress] 32% building 191/219 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.description.js + [webpack.Progress] 33% building 192/219 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.description.js + [webpack.Progress] 33% building 192/220 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/createPropDef.js + [webpack.Progress] 33% building 193/220 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/createPropDef.js + [webpack.Progress] 33% building 193/221 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-keys-internal.js + [webpack.Progress] 33% building 194/221 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-keys-internal.js + [webpack.Progress] 33% building 194/222 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/enum-bug-keys.js + [webpack.Progress] 33% building 194/223 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/jsdocParser.js + [webpack.Progress] 33% building 195/223 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/jsdocParser.js + [webpack.Progress] 33% building 195/224 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/add-to-unscopables.js + [webpack.Progress] 33% building 196/224 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/add-to-unscopables.js + [webpack.Progress] 33% building 197/224 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/add-to-unscopables.js + [webpack.Progress] 33% building 197/225 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-includes.js + [webpack.Progress] 33% building 197/226 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js + [webpack.Progress] 33% building 197/227 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 33% building 198/227 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 33% building 199/227 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 34% building 200/227 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 34% building 200/228 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 201/228 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 202/228 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 203/228 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 204/228 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 205/228 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 206/228 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 207/228 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 34% building 207/229 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/function-bind-context.js + [webpack.Progress] 34% building 208/229 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/function-bind-context.js + [webpack.Progress] 35% building 209/229 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/function-bind-context.js + [webpack.Progress] 35% building 209/230 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-multibyte.js + [webpack.Progress] 35% building 210/230 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-multibyte.js + [webpack.Progress] 35% building 211/230 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-multibyte.js + [webpack.Progress] 35% building 211/231 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/check-correctness-of-iteration.js + [webpack.Progress] 35% building 212/231 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/check-correctness-of-iteration.js + [webpack.Progress] 35% building 212/232 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.iterator.js + [webpack.Progress] 35% building 212/233 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 35% building 213/233 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 35% building 214/233 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 35% building 215/233 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 35% building 216/233 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 36% building 217/233 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-from.js + [webpack.Progress] 36% building 217/234 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/blocks.js + [webpack.Progress] 36% building 217/235 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/global.scss + [webpack.Progress] 36% building 218/235 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/blocks.js + [webpack.Progress] 36% building 218/236 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/global.scss + [webpack.Progress] 36% building 219/236 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/global.scss + [webpack.Progress] 36% building 220/236 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/global.scss + [webpack.Progress] 36% building 220/237 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-user-agent.js + [webpack.Progress] 36% building 220/238 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/a-function.js + [webpack.Progress] 36% building 220/239 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-length.js + [webpack.Progress] 36% building 220/240 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-object.js + [webpack.Progress] 36% building 220/241 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-flags.js + [webpack.Progress] 36% building 221/241 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-flags.js + [webpack.Progress] 36% building 221/242 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/internal-state.js + [webpack.Progress] 36% building 222/242 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/internal-state.js + [webpack.Progress] 36% building 223/242 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/internal-state.js + [webpack.Progress] 36% building 223/243 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/define-well-known-symbol.js + [webpack.Progress] 36% building 223/244 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_defineProperty.js + [webpack.Progress] 36% building 224/244 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_defineProperty.js + [webpack.Progress] 36% building 224/245 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.jsx + [webpack.Progress] 36% building 224/246 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/inspect-source.js + [webpack.Progress] 36% building 224/247 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.jsx + [webpack.Progress] 36% building 224/248 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-sticky-helpers.js + [webpack.Progress] 36% building 224/249 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/set-global.js + [webpack.Progress] 36% building 224/250 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-property-is-enumerable.js + [webpack.Progress] 36% building 224/251 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.jsx + [webpack.Progress] 36% building 224/252 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-keys.js + [webpack.Progress] 37% building 225/252 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-keys.js + [webpack.Progress] 37% building 225/253 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayMap.js + [webpack.Progress] 37% building 225/254 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeysIn.js + [webpack.Progress] 37% building 226/254 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeysIn.js + [webpack.Progress] 37% building 227/254 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeysIn.js + [webpack.Progress] 37% building 228/254 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeysIn.js + [webpack.Progress] 37% building 229/254 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeysIn.js + [webpack.Progress] 37% building 229/255 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/index.js + [webpack.Progress] 37% building 229/256 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bootstrap/dist/css/bootstrap.min.css + [webpack.Progress] 37% building 230/256 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/index.js + [webpack.Progress] 37% building 230/257 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/SingleSelect.jsx + [webpack.Progress] 37% building 231/257 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/SingleSelect.jsx + [webpack.Progress] 37% building 231/258 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bootstrap/dist/css/bootstrap.min.css + [webpack.Progress] 37% building 232/258 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js??ref--11-1!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/postcss-loader/dist/cjs.js??ref--11-2!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bootstrap/dist/css/bootstrap.min.css + [webpack.Progress] 37% building 232/259 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/Accordion.jsx + [webpack.Progress] 37% building 232/260 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.jsx + [webpack.Progress] 37% building 233/260 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.jsx + [webpack.Progress] 37% building 233/261 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 38% building 234/261 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 38% building 235/261 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 38% building 235/262 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js + [webpack.Progress] 38% building 235/263 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/CopyToClipboardButton.jsx + [webpack.Progress] 38% building 235/264 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.jsx + [webpack.Progress] 38% building 236/264 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.jsx + [webpack.Progress] 38% building 236/265 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/styles.js + [webpack.Progress] 38% building 236/266 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/index.js + [webpack.Progress] 38% building 236/267 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/correct-is-regexp-logic.js + [webpack.Progress] 38% building 236/268 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/collection.js + [webpack.Progress] 38% building 236/269 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/arrayLikeToArray.js + [webpack.Progress] 38% building 236/270 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/define-iterator.js + [webpack.Progress] 38% building 236/271 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-weak-map.js + [webpack.Progress] 38% building 236/272 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButton/index.js + [webpack.Progress] 38% building 236/273 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 38% building 237/273 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 38% building 238/273 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 38% building 239/273 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 38% building 240/273 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 38% building 241/273 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 242/273 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 243/273 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 244/273 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 245/273 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 246/273 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 247/273 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 248/273 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 39% building 249/273 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 40% building 250/273 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-pure.js + [webpack.Progress] 40% building 250/274 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/Toast.jsx + [webpack.Progress] 40% building 250/275 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared-store.js + [webpack.Progress] 40% building 251/275 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared-store.js + [webpack.Progress] 40% building 251/276 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/FormGroup.jsx + [webpack.Progress] 40% building 251/277 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/factoryWithThrowingShims.js + [webpack.Progress] 40% building 251/278 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ControlButtonGroup/index.js + [webpack.Progress] 40% building 251/279 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2016.js + [webpack.Progress] 40% building 251/280 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js + [webpack.Progress] 40% building 252/280 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js + [webpack.Progress] 40% building 252/281 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionCollapse.jsx + [webpack.Progress] 40% building 252/282 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/copy-constructor-properties.js + [webpack.Progress] 40% building 253/282 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/copy-constructor-properties.js + [webpack.Progress] 40% building 253/283 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/hidden-keys.js + [webpack.Progress] 40% building 253/284 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js + [webpack.Progress] 40% building 253/285 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionToggle.jsx + [webpack.Progress] 40% building 253/286 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionItem.jsx + [webpack.Progress] 40% building 253/287 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-create.js + [webpack.Progress] 40% building 253/288 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/pro-regular-svg-icons/index.es.js + [webpack.Progress] 40% building 254/288 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/pro-regular-svg-icons/index.es.js + [webpack.Progress] 40% building 254/289 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js + [webpack.Progress] 40% building 254/290 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 40% building 254/291 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 40% building 255/291 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 40% building 256/291 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 40% building 257/291 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 40% building 258/291 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 41% building 259/291 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 41% building 260/291 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 41% building 261/291 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-absolute-index.js + [webpack.Progress] 41% building 261/292 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/es/symbol/index.js + [webpack.Progress] 41% building 261/293 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-integer.js + [webpack.Progress] 41% building 262/293 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/to-integer.js + [webpack.Progress] 41% building 262/294 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/nonIterableSpread.js + [webpack.Progress] 41% building 262/295 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createPropDef.js + [webpack.Progress] 41% building 262/296 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/index.js + [webpack.Progress] 41% building 262/297 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/iterableToArray.js + [webpack.Progress] 41% building 262/298 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/utils.js + [webpack.Progress] 41% building 262/299 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js + [webpack.Progress] 41% building 262/300 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterators.js + [webpack.Progress] 41% building 262/301 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator-method.js + [webpack.Progress] 41% building 262/302 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/index.js + [webpack.Progress] 41% building 262/303 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array-iterator-method.js + [webpack.Progress] 41% building 263/303 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array-iterator-method.js + [webpack.Progress] 41% building 264/303 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array-iterator-method.js + [webpack.Progress] 41% building 264/304 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/call-with-safe-iteration-closing.js + [webpack.Progress] 41% building 265/304 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/call-with-safe-iteration-closing.js + [webpack.Progress] 41% building 266/304 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/call-with-safe-iteration-closing.js + [webpack.Progress] 42% building 267/304 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/call-with-safe-iteration-closing.js + [webpack.Progress] 42% building 267/305 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/useToast.js + [webpack.Progress] 42% building 268/305 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/useToast.js + [webpack.Progress] 42% building 269/305 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/useToast.js + [webpack.Progress] 42% building 269/306 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/collection-weak.js + [webpack.Progress] 42% building 269/307 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/internal-metadata.js + [webpack.Progress] 42% building 269/308 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/redefine-all.js + [webpack.Progress] 42% building 269/309 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/collection-strong.js + [webpack.Progress] 42% building 270/309 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/collection-strong.js + [webpack.Progress] 42% building 271/309 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/collection-strong.js + [webpack.Progress] 42% building 271/310 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/well-known-symbol-wrapped.js + [webpack.Progress] 42% building 271/311 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getNative.js + [webpack.Progress] 42% building 271/312 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function.prototype.name/shim.js + [webpack.Progress] 42% building 271/313 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/shared-key.js + [webpack.Progress] 42% building 271/314 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/not-a-regexp.js + [webpack.Progress] 42% building 272/314 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/not-a-regexp.js + [webpack.Progress] 42% building 273/314 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/not-a-regexp.js + [webpack.Progress] 42% building 273/315 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js + [webpack.Progress] 42% building 274/315 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js + [webpack.Progress] 43% building 275/315 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js + [webpack.Progress] 43% building 276/315 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js + [webpack.Progress] 43% building 276/316 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseGetAllKeys.js + [webpack.Progress] 43% building 276/317 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es5-shim/es5-shim.js + [webpack.Progress] 43% building 276/318 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randombytes/browser.js + [webpack.Progress] 43% building 276/319 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.scss + [webpack.Progress] 43% building 277/319 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randombytes/browser.js + [webpack.Progress] 43% building 277/320 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.scss + [webpack.Progress] 43% building 278/320 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/Card.scss + [webpack.Progress] 43% building 278/321 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/withToast.jsx + [webpack.Progress] 43% building 278/322 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.scss + [webpack.Progress] 43% building 279/322 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/withToast.jsx + [webpack.Progress] 43% building 279/323 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.scss + [webpack.Progress] 43% building 280/323 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/Tooltip.scss + [webpack.Progress] 43% building 280/324 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/setimmediate/setImmediate.js + [webpack.Progress] 43% building 281/324 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/setimmediate/setImmediate.js + [webpack.Progress] 43% building 282/324 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/setimmediate/setImmediate.js + [webpack.Progress] 43% building 282/325 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/keysIn.js + [webpack.Progress] 43% building 282/326 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 43% building 283/326 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 284/326 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 285/326 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 286/326 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 287/326 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 288/326 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbolsIn.js + [webpack.Progress] 44% building 288/327 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.construct.js + [webpack.Progress] 44% building 289/327 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.construct.js + [webpack.Progress] 44% building 289/328 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_basePickBy.js + [webpack.Progress] 44% building 289/329 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIteratee.js + [webpack.Progress] 44% building 290/329 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIteratee.js + [webpack.Progress] 44% building 291/329 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIteratee.js + [webpack.Progress] 45% building 292/329 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIteratee.js + [webpack.Progress] 45% building 293/329 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIteratee.js + [webpack.Progress] 45% building 293/330 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randomfill/browser.js + [webpack.Progress] 45% building 294/330 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randomfill/browser.js + [webpack.Progress] 45% building 295/330 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randomfill/browser.js + [webpack.Progress] 45% building 296/330 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/randomfill/browser.js + [webpack.Progress] 45% building 296/331 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/browser.js + [webpack.Progress] 45% building 296/332 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/docgenInfo.js + [webpack.Progress] 45% building 296/333 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/string.js + [webpack.Progress] 45% building 296/334 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-ecdh/browser.js + [webpack.Progress] 45% building 297/334 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-ecdh/browser.js + [webpack.Progress] 45% building 298/334 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-ecdh/browser.js + [webpack.Progress] 45% building 299/334 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-ecdh/browser.js + [webpack.Progress] 45% building 299/335 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.jsx + [webpack.Progress] 45% building 299/336 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.jsx + [webpack.Progress] 45% building 299/337 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterators-core.js + [webpack.Progress] 45% building 299/338 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/inherit-if-required.js + [webpack.Progress] 45% building 299/339 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/set-to-string-tag.js + [webpack.Progress] 45% building 299/340 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 300/340 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 301/340 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 302/340 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 303/340 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 304/340 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 305/340 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 306/340 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 306/341 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.scss + [webpack.Progress] 46% building 307/341 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/an-instance.js + [webpack.Progress] 46% building 307/342 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.scss + [webpack.Progress] 46% building 308/342 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.scss + [webpack.Progress] 47% building 309/342 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboard/CopyToClipboard.scss + [webpack.Progress] 47% building 309/343 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 310/343 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 311/343 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 312/343 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 313/343 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 314/343 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 315/343 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterate.js + [webpack.Progress] 47% building 315/344 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/index.js + [webpack.Progress] 47% building 315/345 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Loader/Loader.js + [webpack.Progress] 47% building 315/346 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/CopyToClipboardButton.scss + [webpack.Progress] 47% building 316/346 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Loader/Loader.js + [webpack.Progress] 47% building 316/347 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/CopyToClipboardButton.scss + [webpack.Progress] 47% building 316/348 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/Toast.scss + [webpack.Progress] 48% building 317/348 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CopyToClipboardButton/CopyToClipboardButton.scss + [webpack.Progress] 48% building 317/349 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Toast/Toast.scss + [webpack.Progress] 48% building 317/350 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-set-prototype-of.js + [webpack.Progress] 48% building 318/350 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-set-prototype-of.js + [webpack.Progress] 48% building 318/351 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 319/351 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 320/351 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 321/351 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 322/351 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 323/351 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 323/352 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/buttons.scss + [webpack.Progress] 48% building 324/352 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channels/dist/esm/index.js + [webpack.Progress] 48% building 324/353 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/buttons.scss + [webpack.Progress] 48% building 324/354 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 49% building 325/354 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 49% building 326/354 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 49% building 327/354 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 49% building 328/354 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 49% building 328/355 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/lib/ReactPropTypesSecret.js + [webpack.Progress] 49% building 329/355 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/lib/ReactPropTypesSecret.js + [webpack.Progress] 49% building 330/355 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/lib/ReactPropTypesSecret.js + [webpack.Progress] 49% building 331/355 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/lib/ReactPropTypesSecret.js + [webpack.Progress] 49% building 332/355 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types/lib/ReactPropTypesSecret.js + [webpack.Progress] 49% building 332/356 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/html.js + [webpack.Progress] 49% building 332/357 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/zStack.js + [webpack.Progress] 49% building 332/358 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-properties.js + [webpack.Progress] 49% building 333/358 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-properties.js + [webpack.Progress] 50% building 334/358 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-properties.js + [webpack.Progress] 50% building 335/358 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-properties.js + [webpack.Progress] 50% building 336/358 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-define-properties.js + [webpack.Progress] 50% building 336/359 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Button.jsx + [webpack.Progress] 50% building 336/360 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionCollapse.scss + [webpack.Progress] 50% building 337/360 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Button.jsx + [webpack.Progress] 50% building 337/361 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionCollapse.scss + [webpack.Progress] 50% building 337/362 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/react/dist/esm.js + [webpack.Progress] 50% building 337/363 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/fontWeights.js + [webpack.Progress] 50% building 338/363 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/fontWeights.js + [webpack.Progress] 50% building 338/364 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-assign/index.js + [webpack.Progress] 50% building 338/365 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.to-string-tag.js + [webpack.Progress] 50% building 338/366 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.math.to-string-tag.js + [webpack.Progress] 50% building 339/366 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.math.to-string-tag.js + [webpack.Progress] 50% building 340/366 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.math.to-string-tag.js + [webpack.Progress] 50% building 341/366 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.math.to-string-tag.js + [webpack.Progress] 50% building 341/367 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/render.js + [webpack.Progress] 50% building 341/368 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/globals.js + [webpack.Progress] 51% building 342/368 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/react/dist/esm/client/preview/globals.js + [webpack.Progress] 51% building 342/369 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/classof.js + [webpack.Progress] 51% building 343/369 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/classof.js + [webpack.Progress] 51% building 343/370 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_group.scss + [webpack.Progress] 51% building 344/370 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/classof.js + [webpack.Progress] 51% building 344/371 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_group.scss + [webpack.Progress] 51% building 344/372 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/stringify.js + [webpack.Progress] 51% building 344/373 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/formats.js + [webpack.Progress] 51% building 344/374 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/parse.js + [webpack.Progress] 51% building 344/375 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionToggle.scss + [webpack.Progress] 51% building 345/375 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/parse.js + [webpack.Progress] 51% building 345/376 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionToggle.scss + [webpack.Progress] 51% building 346/376 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Accordion/AccordionToggle.scss + [webpack.Progress] 51% building 346/377 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/iterator-close.js + [webpack.Progress] 51% building 346/378 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButton/RadioButton.jsx + [webpack.Progress] 51% building 347/378 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButton/RadioButton.jsx + [webpack.Progress] 51% building 347/379 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/freezing.js + [webpack.Progress] 51% building 347/380 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array-includes/shim.js + [webpack.Progress] 51% building 347/381 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/set-species.js + [webpack.Progress] 51% building 347/382 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNative.js + [webpack.Progress] 51% building 347/383 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function.prototype.name/polyfill.js + [webpack.Progress] 51% building 347/384 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-regexp.js + [webpack.Progress] 51% building 348/384 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-regexp.js + [webpack.Progress] 51% building 349/384 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-regexp.js + [webpack.Progress] 51% building 349/385 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getValue.js + [webpack.Progress] 52% building 350/385 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getValue.js + [webpack.Progress] 52% building 350/386 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayPush.js + [webpack.Progress] 52% building 351/386 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayPush.js + [webpack.Progress] 52% building 352/386 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayPush.js + [webpack.Progress] 52% building 352/387 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ControlButtonGroup/ControlButtonGroup.jsx + [webpack.Progress] 52% building 353/387 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ControlButtonGroup/ControlButtonGroup.jsx + [webpack.Progress] 52% building 354/387 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ControlButtonGroup/ControlButtonGroup.jsx + [webpack.Progress] 52% building 354/388 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayLikeKeys.js + [webpack.Progress] 52% building 354/389 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/function-bind.js + [webpack.Progress] 52% building 354/390 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.immediate.js + [webpack.Progress] 52% building 354/391 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/process/browser.js + [webpack.Progress] 52% building 354/392 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/creatable/dist/react-select.esm.js + [webpack.Progress] 52% building 355/392 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/creatable/dist/react-select.esm.js + [webpack.Progress] 52% building 355/393 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseGet.js + [webpack.Progress] 52% building 355/394 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatches.js + [webpack.Progress] 52% building 356/394 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatches.js + [webpack.Progress] 52% building 357/394 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatches.js + [webpack.Progress] 52% building 357/395 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/property.js + [webpack.Progress] 52% building 357/396 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isArray.js + [webpack.Progress] 52% building 358/396 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isArray.js + [webpack.Progress] 53% building 359/396 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isArray.js + [webpack.Progress] 53% building 359/397 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.slice.js + [webpack.Progress] 53% building 360/397 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.slice.js + [webpack.Progress] 53% building 361/397 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.slice.js + [webpack.Progress] 53% building 361/398 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js + [webpack.Progress] 53% building 361/399 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/publicEncrypt.js + [webpack.Progress] 53% building 362/399 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/publicEncrypt.js + [webpack.Progress] 53% building 362/400 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/privateDecrypt.js + [webpack.Progress] 53% building 362/401 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/algorithms.json + [webpack.Progress] 53% building 363/401 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/algorithms.json + [webpack.Progress] 53% building 363/402 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-get-prototype-of.js + [webpack.Progress] 53% building 363/403 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/identity.js + [webpack.Progress] 53% building 363/404 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatchesProperty.js + [webpack.Progress] 53% building 364/404 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatchesProperty.js + [webpack.Progress] 53% building 365/404 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatchesProperty.js + [webpack.Progress] 53% building 366/404 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatchesProperty.js + [webpack.Progress] 54% building 367/404 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseMatchesProperty.js + [webpack.Progress] 54% building 367/405 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_castPath.js + [webpack.Progress] 54% building 367/406 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseSet.js + [webpack.Progress] 54% building 368/406 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseSet.js + [webpack.Progress] 54% building 368/407 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/doctrine.js + [webpack.Progress] 54% building 369/407 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/doctrine.js + [webpack.Progress] 54% building 370/407 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/doctrine.js + [webpack.Progress] 54% building 370/408 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.scss + [webpack.Progress] 54% building 371/408 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/doctrine.js + [webpack.Progress] 54% building 371/409 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.scss + [webpack.Progress] 54% building 372/409 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Steps.scss + [webpack.Progress] 54% building 372/410 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/react-select.esm.js + [webpack.Progress] 54% building 372/411 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es6-shim/es6-shim.js + [webpack.Progress] 54% building 372/412 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/a-possible-prototype.js + [webpack.Progress] 54% building 373/412 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/a-possible-prototype.js + [webpack.Progress] 54% building 373/413 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 54% building 374/413 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 54% building 375/413 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 376/413 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 377/413 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 378/413 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 379/413 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 380/413 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.some.js + [webpack.Progress] 55% building 380/414 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 55% building 381/414 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 55% building 382/414 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 55% building 383/414 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 384/414 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 385/414 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 386/414 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 387/414 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 388/414 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 389/414 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/node-libs-browser/node_modules/buffer/index.js + [webpack.Progress] 56% building 389/415 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/verify.js + [webpack.Progress] 56% building 389/416 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 56% building 390/416 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 56% building 391/416 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 57% building 392/416 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 57% building 393/416 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 57% building 394/416 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 57% building 395/416 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/sign.js + [webpack.Progress] 57% building 395/417 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.types.js + [webpack.Progress] 57% building 396/417 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.types.js + [webpack.Progress] 57% building 396/418 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Button.scss + [webpack.Progress] 57% building 397/418 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/Dropdown.types.js + [webpack.Progress] 57% building 397/419 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Button/Button.scss + [webpack.Progress] 57% building 397/420 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/shared/animation.js + [webpack.Progress] 57% building 397/421 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/icon/icon.js + [webpack.Progress] 57% building 397/422 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/index.js + [webpack.Progress] 57% building 398/422 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/index.js + [webpack.Progress] 57% building 398/423 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isArrayLike.js + [webpack.Progress] 57% building 398/424 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseKeysIn.js + [webpack.Progress] 57% building 398/425 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/stubArray.js + [webpack.Progress] 57% building 399/425 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/stubArray.js + [webpack.Progress] 57% building 400/425 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/stubArray.js + [webpack.Progress] 57% building 400/426 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/utils.js + [webpack.Progress] 58% building 401/426 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/qs/lib/utils.js + [webpack.Progress] 58% building 401/427 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/index.js + [webpack.Progress] 58% building 402/427 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/index.js + [webpack.Progress] 58% building 402/428 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array-includes/polyfill.js + [webpack.Progress] 58% building 402/429 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isFunction.js + [webpack.Progress] 58% building 402/430 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function.prototype.name/implementation.js + [webpack.Progress] 58% building 402/431 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_toSource.js + [webpack.Progress] 58% building 402/432 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isObject.js + [webpack.Progress] 58% building 403/432 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isObject.js + [webpack.Progress] 58% building 403/433 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isMasked.js + [webpack.Progress] 58% building 404/433 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isMasked.js + [webpack.Progress] 58% building 404/434 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useStateManager-68425271.esm.js + [webpack.Progress] 58% building 405/434 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useStateManager-68425271.esm.js + [webpack.Progress] 58% building 406/434 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useStateManager-68425271.esm.js + [webpack.Progress] 58% building 407/434 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useStateManager-68425271.esm.js + [webpack.Progress] 58% building 408/434 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useStateManager-68425271.esm.js + [webpack.Progress] 58% building 408/435 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseTimes.js + [webpack.Progress] 58% building 408/436 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/pro-solid-svg-icons/index.es.js + [webpack.Progress] 58% building 408/437 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/index.js + [webpack.Progress] 58% building 408/438 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/react-fontawesome/index.es.js + [webpack.Progress] 58% building 408/439 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core/client.js + [webpack.Progress] 58% building 408/440 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isTypedArray.js + [webpack.Progress] 58% building 408/441 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isIndex.js + [webpack.Progress] 58% building 408/442 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/index.js + [webpack.Progress] 58% building 408/443 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/task.js + [webpack.Progress] 58% building 408/444 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isBuffer.js + [webpack.Progress] 59% building 409/444 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isBuffer.js + [webpack.Progress] 59% building 410/444 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isBuffer.js + [webpack.Progress] 59% building 410/445 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/classnames/index.js + [webpack.Progress] 59% building 410/446 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_toKey.js + [webpack.Progress] 59% building 410/447 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsMatch.js + [webpack.Progress] 59% building 410/448 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseProperty.js + [webpack.Progress] 59% building 410/449 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-method-has-species-support.js + [webpack.Progress] 59% building 411/449 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-method-has-species-support.js + [webpack.Progress] 59% building 411/450 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/withPublic.js + [webpack.Progress] 59% building 412/450 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/withPublic.js + [webpack.Progress] 59% building 412/451 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/correct-prototype-getter.js + [webpack.Progress] 59% building 412/452 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/index.js + [webpack.Progress] 59% building 412/453 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsEqual.js + [webpack.Progress] 59% building 412/454 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/curves.json + [webpack.Progress] 59% building 413/454 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/curves.json + [webpack.Progress] 59% building 414/454 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/browser/curves.json + [webpack.Progress] 59% building 414/455 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/toString.js + [webpack.Progress] 59% building 414/456 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 59% building 415/456 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 59% building 416/456 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 60% building 417/456 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 60% building 418/456 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 60% building 419/456 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assignValue.js + [webpack.Progress] 60% building 419/457 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.index-of.js + [webpack.Progress] 60% building 419/458 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLegend/index.js + [webpack.Progress] 60% building 419/459 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLabel/index.js + [webpack.Progress] 60% building 420/459 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLabel/index.js + [webpack.Progress] 60% building 421/459 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLabel/index.js + [webpack.Progress] 60% building 421/460 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/define-properties/index.js + [webpack.Progress] 60% building 422/460 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/define-properties/index.js + [webpack.Progress] 60% building 423/460 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/define-properties/index.js + [webpack.Progress] 60% building 424/460 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/define-properties/index.js + [webpack.Progress] 60% building 424/461 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 425/461 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 426/461 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 427/461 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 428/461 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 429/461 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 430/461 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 431/461 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/functions-have-names/index.js + [webpack.Progress] 61% building 431/462 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safe-buffer/index.js + [webpack.Progress] 61% building 432/462 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safe-buffer/index.js + [webpack.Progress] 61% building 433/462 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safe-buffer/index.js + [webpack.Progress] 62% building 434/462 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safe-buffer/index.js + [webpack.Progress] 62% building 434/463 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 435/463 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 436/463 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 437/463 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 438/463 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 439/463 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 440/463 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 441/463 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/index-a7690a33.esm.js + [webpack.Progress] 62% building 441/464 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isLength.js + [webpack.Progress] 62% building 441/465 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/icon/svg.js + [webpack.Progress] 62% building 441/466 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/icon/icons.js + [webpack.Progress] 62% building 441/467 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Accordion.js + [webpack.Progress] 62% building 441/468 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionItem.js + [webpack.Progress] 62% building 441/469 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionContext.js + [webpack.Progress] 62% building 441/470 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionButton.js + [webpack.Progress] 62% building 441/471 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nativeKeysIn.js + [webpack.Progress] 62% building 441/472 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isPrototype.js + [webpack.Progress] 63% building 442/472 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isPrototype.js + [webpack.Progress] 63% building 443/472 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isPrototype.js + [webpack.Progress] 63% building 443/473 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Color.js + [webpack.Progress] 63% building 444/473 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Color.js + [webpack.Progress] 63% building 444/474 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array-includes/implementation.js + [webpack.Progress] 63% building 444/475 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic.js + [webpack.Progress] 63% building 444/476 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseGetTag.js + [webpack.Progress] 63% building 444/477 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_coreJsData.js + [webpack.Progress] 63% building 444/478 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Files.js + [webpack.Progress] 63% building 445/478 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Files.js + [webpack.Progress] 63% building 445/479 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 63% building 446/479 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 63% building 447/479 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 63% building 448/479 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 63% building 449/479 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 450/479 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 451/479 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 452/479 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 453/479 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 454/479 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib/bn.js + [webpack.Progress] 64% building 454/480 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsTypedArray.js + [webpack.Progress] 64% building 454/481 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nodeUtil.js + [webpack.Progress] 64% building 454/482 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseUnary.js + [webpack.Progress] 64% building 454/483 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-ios.js + [webpack.Progress] 64% building 454/484 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_root.js + [webpack.Progress] 64% building 455/484 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_root.js + [webpack.Progress] 64% building 456/484 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_root.js + [webpack.Progress] 64% building 456/485 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/extends.js + [webpack.Progress] 64% building 456/486 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/defineProperty.js + [webpack.Progress] 64% building 456/487 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/typeof.js + [webpack.Progress] 64% building 456/488 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js + [webpack.Progress] 64% building 456/489 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/toConsumableArray.js + [webpack.Progress] 64% building 456/490 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js + [webpack.Progress] 64% building 456/491 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/stubFalse.js + [webpack.Progress] 64% building 456/492 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isSymbol.js + [webpack.Progress] 64% building 456/493 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Stack.js + [webpack.Progress] 64% building 457/493 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Stack.js + [webpack.Progress] 64% building 457/494 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/slicedToArray.js + [webpack.Progress] 64% building 457/495 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Text.js + [webpack.Progress] 64% building 457/496 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Range.js + [webpack.Progress] 64% building 457/497 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Object.js + [webpack.Progress] 64% building 457/498 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Number.js + [webpack.Progress] 64% building 457/499 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Date.js + [webpack.Progress] 64% building 457/500 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Boolean.js + [webpack.Progress] 64% building 457/501 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/inherits/inherits_browser.js + [webpack.Progress] 64% building 457/502 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/Array.js + [webpack.Progress] 64% building 457/503 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/types.js + [webpack.Progress] 64% building 457/504 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsEqualDeep.js + [webpack.Progress] 64% building 457/505 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isObjectLike.js + [webpack.Progress] 64% building 458/505 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isObjectLike.js + [webpack.Progress] 64% building 458/506 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/browser.js + [webpack.Progress] 64% building 458/507 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/polished/dist/polished.esm.js + [webpack.Progress] 64% building 459/507 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/polished/dist/polished.esm.js + [webpack.Progress] 64% building 460/507 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/polished/dist/polished.esm.js + [webpack.Progress] 64% building 461/507 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/polished/dist/polished.esm.js + [webpack.Progress] 64% building 462/507 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/polished/dist/polished.esm.js + [webpack.Progress] 64% building 462/508 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseToString.js + [webpack.Progress] 64% building 462/509 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/eq.js + [webpack.Progress] 64% building 462/510 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 64% building 463/510 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 64% building 464/510 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 64% building 465/510 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 64% building 465/511 modules 46 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/bn.js/lib buffer + [webpack.Progress] 64% building 466/511 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 64% building 466/512 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-dom/index.js + [webpack.Progress] 64% building 467/512 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-dom/index.js + [webpack.Progress] 64% building 467/513 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.jsx + [webpack.Progress] 64% building 467/514 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/side-channel/index.js + [webpack.Progress] 64% building 467/515 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/call-bind/callBound.js + [webpack.Progress] 64% building 467/516 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/index.js + [webpack.Progress] 64% building 467/517 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core/dist/cjs/index.js + [webpack.Progress] 64% building 467/518 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 468/518 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 469/518 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 470/518 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 471/518 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 472/518 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 473/518 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 64% building 474/518 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 475/518 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 476/518 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 477/518 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 478/518 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 479/518 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 480/518 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 481/518 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/index.js + [webpack.Progress] 65% building 481/519 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 65% building 482/519 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 65% building 483/519 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutProperties.js + [webpack.Progress] 65% building 483/520 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 65% building 484/520 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 65% building 485/520 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 486/520 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 487/520 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 488/520 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 488/521 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/package.json + [webpack.Progress] 66% building 489/521 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 490/521 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js + [webpack.Progress] 66% building 490/522 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsCallable.js + [webpack.Progress] 66% building 490/523 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/palette.js + [webpack.Progress] 66% building 491/523 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/palette.js + [webpack.Progress] 66% building 492/523 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/palette.js + [webpack.Progress] 66% building 492/524 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url.js + [webpack.Progress] 66% building 492/525 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.starts-with.js + [webpack.Progress] 66% building 493/525 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.starts-with.js + [webpack.Progress] 66% building 494/525 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.starts-with.js + [webpack.Progress] 66% building 495/525 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.starts-with.js + [webpack.Progress] 66% building 495/526 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/inputs.js + [webpack.Progress] 66% building 496/526 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/colors/inputs.js + [webpack.Progress] 66% building 496/527 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 66% building 497/527 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 66% building 498/527 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 66% building 499/527 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 66% building 500/527 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 67% building 501/527 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js + [webpack.Progress] 66% building 501/528 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/index.js + [webpack.Progress] 66% building 501/529 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/inherits.js + [webpack.Progress] 66% building 501/530 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionItemContext.js + [webpack.Progress] 66% building 501/531 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ThemeProvider.js + [webpack.Progress] 66% building 502/531 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ThemeProvider.js + [webpack.Progress] 66% building 502/532 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js + [webpack.Progress] 66% building 502/533 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js + [webpack.Progress] 66% building 502/534 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableSpread.js + [webpack.Progress] 66% building 502/535 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js + [webpack.Progress] 66% building 502/536 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js + [webpack.Progress] 66% building 503/536 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js + [webpack.Progress] 66% building 503/537 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/extends.js + [webpack.Progress] 66% building 503/538 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/index.js + [webpack.Progress] 65% building 503/539 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js + [webpack.Progress] 65% building 503/540 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.bold.js + [webpack.Progress] 65% building 503/541 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.split.js + [webpack.Progress] 65% building 503/542 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-nan.js + [webpack.Progress] 65% building 504/542 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-nan.js + [webpack.Progress] 65% building 505/542 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-nan.js + [webpack.Progress] 65% building 505/543 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.constructor.js + [webpack.Progress] 65% building 505/544 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.trim.js + [webpack.Progress] 65% building 506/544 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.trim.js + [webpack.Progress] 65% building 506/545 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/FadeTransition.jsx + [webpack.Progress] 65% building 507/545 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/FadeTransition.jsx + [webpack.Progress] 65% building 507/546 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToInteger.js + [webpack.Progress] 65% building 507/547 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Symbol.js + [webpack.Progress] 65% building 508/547 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Symbol.js + [webpack.Progress] 65% building 508/548 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_objectToString.js + [webpack.Progress] 65% building 509/548 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_objectToString.js + [webpack.Progress] 65% building 510/548 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_objectToString.js + [webpack.Progress] 65% building 510/549 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLegend/InputLegend.jsx + [webpack.Progress] 65% building 511/549 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLegend/InputLegend.jsx + [webpack.Progress] 65% building 511/550 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/esutils/lib/utils.js + [webpack.Progress] 65% building 511/551 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/base64-js/index.js + [webpack.Progress] 65% building 511/552 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getRawTag.js + [webpack.Progress] 65% building 511/553 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLabel/InputLabel.jsx + [webpack.Progress] 65% building 511/554 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js + [webpack.Progress] 65% building 512/554 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js + [webpack.Progress] 65% building 513/554 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js + [webpack.Progress] 65% building 514/554 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js + [webpack.Progress] 65% building 515/554 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js + [webpack.Progress] 65% building 515/555 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v1.js + [webpack.Progress] 65% building 515/556 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_freeGlobal.js + [webpack.Progress] 65% building 515/557 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_readable.js + [webpack.Progress] 65% building 515/558 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_passthrough.js + [webpack.Progress] 65% building 515/559 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 65% building 516/559 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 65% building 517/559 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 65% building 518/559 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 65% building 519/559 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 65% building 519/560 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_ListCache.js + [webpack.Progress] 65% building 519/561 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js + [webpack.Progress] 65% building 520/561 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js + [webpack.Progress] 65% building 520/562 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-dom/cjs/react-dom.production.min.js + [webpack.Progress] 65% building 521/562 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-dom/cjs/react-dom.production.min.js + [webpack.Progress] 65% building 521/563 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 65% building 522/563 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 65% building 523/563 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 65% building 524/563 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 65% building 525/563 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js + [webpack.Progress] 65% building 525/564 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 65% building 526/564 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 66% building 527/564 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 66% building 528/564 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js + [webpack.Progress] 66% building 528/565 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curves.js + [webpack.Progress] 65% building 528/566 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/utils.js + [webpack.Progress] 66% building 529/566 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/utils.js + [webpack.Progress] 65% building 529/567 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getTag.js + [webpack.Progress] 65% building 529/568 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_equalObjects.js + [webpack.Progress] 65% building 530/568 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_equalObjects.js + [webpack.Progress] 66% building 531/568 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_equalObjects.js + [webpack.Progress] 65% building 531/569 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js + [webpack.Progress] 65% building 531/570 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isFinite.js + [webpack.Progress] 65% building 531/571 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isNaN.js + [webpack.Progress] 65% building 531/572 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/pipeline.js + [webpack.Progress] 65% building 531/573 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 65% building 532/573 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 65% building 532/574 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-rsa/index.js + [webpack.Progress] 65% building 532/575 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/browser.js + [webpack.Progress] 65% building 532/576 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/bar/button.js + [webpack.Progress] 65% building 532/577 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 65% building 533/577 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 65% building 533/578 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/bn.js/lib/bn.js + [webpack.Progress] 65% building 533/579 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/arrayLikeToArray.js + [webpack.Progress] 65% building 533/580 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/aesid.json + [webpack.Progress] 65% building 534/580 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/aesid.json + [webpack.Progress] 65% building 535/580 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/aesid.json + [webpack.Progress] 65% building 535/581 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.scss + [webpack.Progress] 65% building 536/581 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/aesid.json + [webpack.Progress] 65% building 536/582 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Popper/Popper.scss + [webpack.Progress] 65% building 536/583 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/utils.js + [webpack.Progress] 65% building 537/583 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/utils.js + [webpack.Progress] 65% building 537/584 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 538/584 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 539/584 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 540/584 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 541/584 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 542/584 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 543/584 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 544/584 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 65% building 545/584 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 66% building 546/584 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 66% building 547/584 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 66% building 548/584 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 66% building 549/584 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js + [webpack.Progress] 66% building 549/585 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url-search-params.js + [webpack.Progress] 66% building 550/585 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url-search-params.js + [webpack.Progress] 66% building 551/585 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url-search-params.js + [webpack.Progress] 66% building 552/585 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url-search-params.js + [webpack.Progress] 66% building 553/585 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/web.url-search-params.js + [webpack.Progress] 66% building 553/586 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-punycode-to-ascii.js + [webpack.Progress] 66% building 553/587 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 66% building 554/587 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 66% building 555/587 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 66% building 556/587 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 66% building 557/587 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 67% building 558/587 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 67% building 559/587 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 67% building 560/587 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/fontawesome-svg-core/index.es.js + [webpack.Progress] 67% building 560/588 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v5.js + [webpack.Progress] 67% building 560/589 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/asn1.js + [webpack.Progress] 67% building 561/589 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/asn1.js + [webpack.Progress] 67% building 562/589 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/asn1.js + [webpack.Progress] 67% building 563/589 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/asn1.js + [webpack.Progress] 67% building 563/590 modules 27 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/bn.js/lib buffer + [webpack.Progress] 67% building 564/590 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/asn1.js + [webpack.Progress] 67% building 564/591 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/rng.js + [webpack.Progress] 67% building 564/592 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/bytesToUuid.js + [webpack.Progress] 67% building 564/593 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 66% building 564/594 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/variables.scss + [webpack.Progress] 67% building 565/594 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 66% building 565/595 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/variables.scss + [webpack.Progress] 67% building 566/595 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/variables.scss + [webpack.Progress] 66% building 566/596 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/fixProc.js + [webpack.Progress] 67% building 567/596 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/fixProc.js + [webpack.Progress] 67% building 568/596 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/fixProc.js + [webpack.Progress] 67% building 568/597 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-url.js + [webpack.Progress] 67% building 569/597 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-url.js + [webpack.Progress] 67% building 570/597 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-url.js + [webpack.Progress] 67% building 570/598 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/convert.js + [webpack.Progress] 67% building 570/599 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js + [webpack.Progress] 67% building 570/600 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/index.js + [webpack.Progress] 66% building 570/601 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-html-forced.js + [webpack.Progress] 66% building 570/602 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/regexp-exec-abstract.js + [webpack.Progress] 66% building 570/603 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/advance-string-index.js + [webpack.Progress] 66% building 570/604 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/species-constructor.js + [webpack.Progress] 66% building 570/605 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-trim.js + [webpack.Progress] 66% building 570/606 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-trim-forced.js + [webpack.Progress] 66% building 570/607 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/isarray/index.js + [webpack.Progress] 66% building 571/607 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/isarray/index.js + [webpack.Progress] 66% building 571/608 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToNumber.js + [webpack.Progress] 66% building 572/608 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToNumber.js + [webpack.Progress] 66% building 573/608 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToNumber.js + [webpack.Progress] 66% building 574/608 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToNumber.js + [webpack.Progress] 66% building 575/608 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToNumber.js + [webpack.Progress] 66% building 575/609 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-keys/index.js + [webpack.Progress] 66% building 575/610 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/esutils/lib/ast.js + [webpack.Progress] 66% building 575/611 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/esutils/lib/keyword.js + [webpack.Progress] 66% building 575/612 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/ieee754/index.js + [webpack.Progress] 66% building 575/613 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/esutils/lib/code.js + [webpack.Progress] 66% building 575/614 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-html.js + [webpack.Progress] 66% building 576/614 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-html.js + [webpack.Progress] 66% building 576/615 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/FadeTransition.scss + [webpack.Progress] 66% building 577/615 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-html.js + [webpack.Progress] 66% building 577/616 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/FadeTransition.scss + [webpack.Progress] 66% building 578/616 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FadeTransition/FadeTransition.scss + [webpack.Progress] 66% building 578/617 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToInteger.js + [webpack.Progress] 66% building 579/617 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToInteger.js + [webpack.Progress] 66% building 580/617 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToInteger.js + [webpack.Progress] 66% building 581/617 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToInteger.js + [webpack.Progress] 66% building 582/617 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToInteger.js + [webpack.Progress] 66% building 582/618 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheClear.js + [webpack.Progress] 66% building 582/619 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheSet.js + [webpack.Progress] 66% building 583/619 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheSet.js + [webpack.Progress] 66% building 583/620 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheHas.js + [webpack.Progress] 66% building 583/621 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 584/621 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 585/621 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 586/621 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 587/621 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 588/621 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheGet.js + [webpack.Progress] 66% building 588/622 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheDelete.js + [webpack.Progress] 66% building 589/622 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheDelete.js + [webpack.Progress] 66% building 590/622 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_listCacheDelete.js + [webpack.Progress] 66% building 590/623 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/events/events.js + [webpack.Progress] 66% building 590/624 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/input_label.scss + [webpack.Progress] 66% building 591/624 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/events/events.js + [webpack.Progress] 66% building 591/625 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/input_label.scss + [webpack.Progress] 66% building 592/625 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/input_label.scss + [webpack.Progress] 66% building 593/625 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/input_label.scss + [webpack.Progress] 67% building 594/625 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/input_label.scss + [webpack.Progress] 66% building 594/626 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_DataView.js + [webpack.Progress] 66% building 594/627 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getAllKeys.js + [webpack.Progress] 66% building 594/628 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/memoize-one/dist/memoize-one.esm.js + [webpack.Progress] 66% building 595/628 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/memoize-one/dist/memoize-one.esm.js + [webpack.Progress] 66% building 595/629 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_WeakMap.js + [webpack.Progress] 66% building 595/630 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLegend/InputLegend.scss + [webpack.Progress] 66% building 596/630 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_WeakMap.js + [webpack.Progress] 66% building 596/631 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/InputLegend/InputLegend.scss + [webpack.Progress] 66% building 596/632 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Set.js + [webpack.Progress] 66% building 596/633 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Promise.js + [webpack.Progress] 66% building 596/634 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v35.js + [webpack.Progress] 66% building 596/635 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 597/635 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 598/635 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 599/635 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 600/635 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 600/636 modules 36 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib util + [webpack.Progress] 66% building 601/636 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 602/636 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/sha1.js + [webpack.Progress] 66% building 602/637 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/legacy.js + [webpack.Progress] 66% building 603/637 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/legacy.js + [webpack.Progress] 66% building 604/637 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/legacy.js + [webpack.Progress] 66% building 605/637 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/legacy.js + [webpack.Progress] 67% building 606/637 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hmac/legacy.js + [webpack.Progress] 66% building 606/638 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/form/index.js + [webpack.Progress] 66% building 606/639 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Map.js + [webpack.Progress] 66% building 607/639 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Map.js + [webpack.Progress] 67% building 608/639 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Map.js + [webpack.Progress] 67% building 609/639 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Map.js + [webpack.Progress] 67% building 610/639 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Map.js + [webpack.Progress] 67% building 610/640 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator.js + [webpack.Progress] 67% building 611/640 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator.js + [webpack.Progress] 67% building 612/640 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator.js + [webpack.Progress] 67% building 613/640 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator.js + [webpack.Progress] 67% building 614/640 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-iterator.js + [webpack.Progress] 67% building 614/641 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/brorand/index.js + [webpack.Progress] 67% building 614/642 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-string/index.js + [webpack.Progress] 67% building 614/643 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/get-intrinsic/index.js + [webpack.Progress] 67% building 615/643 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/get-intrinsic/index.js + [webpack.Progress] 67% building 616/643 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/get-intrinsic/index.js + [webpack.Progress] 67% building 616/644 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v4.js + [webpack.Progress] 67% building 617/644 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v4.js + [webpack.Progress] 67% building 618/644 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v4.js + [webpack.Progress] 67% building 618/645 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/create-iterator-constructor.js + [webpack.Progress] 67% building 618/646 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js + [webpack.Progress] 67% building 618/647 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/certificate.js + [webpack.Progress] 67% building 619/647 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-asn1/certificate.js + [webpack.Progress] 67% building 619/648 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/eddsa/index.js + [webpack.Progress] 67% building 619/649 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/ec/index.js + [webpack.Progress] 67% building 619/650 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curve/index.js + [webpack.Progress] 67% building 619/651 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/v3.js + [webpack.Progress] 66% building 619/652 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/Options.js + [webpack.Progress] 66% building 619/653 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_duplex.js + [webpack.Progress] 66% building 620/653 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_duplex.js +(node:99807) DeprecationWarning: Default PostCSS plugins are deprecated. When switching to '@storybook/addon-postcss', +you will need to add your own plugins, such as 'postcss-flexbugs-fixes' and 'autoprefixer'. + +See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-default-postcss-plugins for details. + [webpack.Progress] 66% building 620/654 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/whitespaces.js + [webpack.Progress] 66% building 621/654 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/whitespaces.js + [webpack.Progress] 67% building 622/654 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/whitespaces.js + [webpack.Progress] 66% building 622/655 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/async_iterator.js + [webpack.Progress] 66% building 622/656 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-inspect/index.js + [webpack.Progress] 66% building 622/657 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToPrimitive.js + [webpack.Progress] 66% building 622/658 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isPrimitive.js + [webpack.Progress] 66% building 622/659 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/regexTester.js + [webpack.Progress] 66% building 623/659 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/regexTester.js + [webpack.Progress] 66% building 623/660 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 66% building 623/661 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/state.js + [webpack.Progress] 66% building 623/662 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/destroy.js + [webpack.Progress] 66% building 623/663 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/from-browser.js + [webpack.Progress] 66% building 623/664 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-keys/isArguments.js + [webpack.Progress] 66% building 623/665 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-keys/implementation.js + [webpack.Progress] 66% building 623/666 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 66% building 624/666 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 66% building 624/667 modules 43 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/brorand crypto + [webpack.Progress] 66% building 625/667 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 66% building 626/667 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 66% building 627/667 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 66% building 627/668 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/call-bind/index.js + [webpack.Progress] 66% building 627/669 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js + [webpack.Progress] 66% building 628/669 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js + [webpack.Progress] 66% building 629/669 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js + [webpack.Progress] 66% building 630/669 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js + [webpack.Progress] 66% building 630/670 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/abs.js + [webpack.Progress] 66% building 630/671 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-callable/index.js + [webpack.Progress] 66% building 631/671 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-callable/index.js + [webpack.Progress] 66% building 631/672 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/stream-browser.js + [webpack.Progress] 66% building 631/673 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/sign.js + [webpack.Progress] 66% building 631/674 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assocIndexOf.js + [webpack.Progress] 66% building 632/674 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assocIndexOf.js + [webpack.Progress] 66% building 633/674 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assocIndexOf.js + [webpack.Progress] 66% building 634/674 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_assocIndexOf.js + [webpack.Progress] 66% building 634/675 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToNumber.js + [webpack.Progress] 66% building 634/676 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/floor.js + [webpack.Progress] 66% building 635/676 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/floor.js + [webpack.Progress] 66% building 635/677 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/ensure.js + [webpack.Progress] 66% building 635/678 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/convert.js + [webpack.Progress] 66% building 635/679 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string_decoder/lib/string_decoder.js + [webpack.Progress] 66% building 636/679 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string_decoder/lib/string_decoder.js + [webpack.Progress] 66% building 636/680 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/create.js + [webpack.Progress] 66% building 637/680 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/create.js + [webpack.Progress] 66% building 638/680 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/create.js + [webpack.Progress] 66% building 638/681 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/styled/dist/styled.browser.esm.js + [webpack.Progress] 66% building 638/682 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/global.js + [webpack.Progress] 66% building 638/683 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/keys.js + [webpack.Progress] 66% building 639/683 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/keys.js + [webpack.Progress] 66% building 640/683 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/keys.js + [webpack.Progress] 66% building 640/684 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbols.js + [webpack.Progress] 66% building 641/684 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbols.js + [webpack.Progress] 66% building 642/684 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbols.js + [webpack.Progress] 66% building 643/684 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getSymbols.js + [webpack.Progress] 66% building 643/685 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/browser.js + [webpack.Progress] 66% building 643/686 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/browser.js + [webpack.Progress] 66% building 643/687 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/types.js + [webpack.Progress] 66% building 643/688 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 644/688 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 645/688 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 646/688 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 647/688 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 648/688 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 649/688 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 650/688 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 650/689 modules 39 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams util + [webpack.Progress] 66% building 651/689 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/base.js + [webpack.Progress] 66% building 651/690 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/index.js + [webpack.Progress] 66% building 652/690 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/index.js + [webpack.Progress] 66% building 653/690 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/index.js + [webpack.Progress] 66% building 653/691 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/md5.js + [webpack.Progress] 66% building 654/691 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/md5.js + [webpack.Progress] 66% building 655/691 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/md5.js + [webpack.Progress] 66% building 656/691 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid/dist/esm-browser/md5.js + [webpack.Progress] 66% building 656/692 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js + [webpack.Progress] 66% building 656/693 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/runtime/api.js + [webpack.Progress] 66% building 656/694 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 66% building 657/694 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 66% building 658/694 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 66% building 658/695 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 66% building 659/695 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 66% building 660/695 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 661/695 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 662/695 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 663/695 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 664/695 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 665/695 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 666/695 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 667/695 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/create-hash/md5.js + [webpack.Progress] 67% building 667/696 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 668/696 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 669/696 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 670/696 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 671/696 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 672/696 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js + [webpack.Progress] 67% building 672/697 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/scheduler/index.js + [webpack.Progress] 67% building 672/698 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js + [webpack.Progress] 67% building 672/699 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js + [webpack.Progress] 67% building 672/700 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/form/input/input.js + [webpack.Progress] 67% building 672/701 modules 29 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object-inspect ./util.inspect + [webpack.Progress] 67% building 673/701 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/form/input/input.js + [webpack.Progress] 67% building 674/701 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/form/input/input.js + [webpack.Progress] 67% building 674/702 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_equalByTag.js + [webpack.Progress] 67% building 674/703 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_equalArrays.js + [webpack.Progress] 67% building 674/704 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/form/field/field.js + [webpack.Progress] 67% building 674/705 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curve/base.js + [webpack.Progress] 67% building 674/706 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArray.js + [webpack.Progress] 67% building 675/706 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArray.js + [webpack.Progress] 67% building 675/707 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/index.js + [webpack.Progress] 67% building 676/707 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/index.js + [webpack.Progress] 67% building 677/707 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/index.js + [webpack.Progress] 67% building 678/707 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tooltip/index.js + [webpack.Progress] 67% building 678/708 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/index.js + [webpack.Progress] 67% building 678/709 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/Select.js + [webpack.Progress] 67% building 679/709 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/Select.js + [webpack.Progress] 67% building 679/710 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/Radio.js + [webpack.Progress] 67% building 679/711 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/Checkbox.js + [webpack.Progress] 67% building 679/712 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curve/edwards.js + [webpack.Progress] 67% building 679/713 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curve/mont.js + [webpack.Progress] 67% building 679/714 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/cipher-base/index.js + [webpack.Progress] 66% building 679/715 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash.js + [webpack.Progress] 67% building 680/715 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash.js + [webpack.Progress] 66% building 680/716 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/curve/short.js + [webpack.Progress] 66% building 680/717 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/ec/signature.js + [webpack.Progress] 66% building 680/718 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/ec/key.js + [webpack.Progress] 66% building 680/719 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/eddsa/signature.js + [webpack.Progress] 66% building 680/720 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/elliptic/lib/elliptic/eddsa/key.js + [webpack.Progress] 66% building 680/721 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/Tooltip.js + [webpack.Progress] 66% building 681/721 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/Tooltip.js + [webpack.Progress] 66% building 681/722 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/cloneDeep.js + [webpack.Progress] 66% building 682/722 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/cloneDeep.js + [webpack.Progress] 66% building 683/722 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/cloneDeep.js + [webpack.Progress] 66% building 683/723 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackSet.js + [webpack.Progress] 66% building 684/723 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackSet.js + [webpack.Progress] 66% building 684/724 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/minimalistic-assert/index.js + [webpack.Progress] 66% building 684/725 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackHas.js + [webpack.Progress] 66% building 684/726 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackGet.js + [webpack.Progress] 66% building 684/727 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/list.json + [webpack.Progress] 66% building 684/728 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js + [webpack.Progress] 66% building 684/729 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/construct.js + [webpack.Progress] 66% building 684/730 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 66% building 684/731 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackDelete.js + [webpack.Progress] 66% building 684/732 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackClear.js + [webpack.Progress] 66% building 685/732 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackClear.js + [webpack.Progress] 66% building 686/732 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackClear.js + [webpack.Progress] 66% building 687/732 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackClear.js + [webpack.Progress] 66% building 688/732 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stackClear.js + [webpack.Progress] 66% building 688/733 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToPrimitive.js + [webpack.Progress] 66% building 689/733 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/ToPrimitive.js + [webpack.Progress] 66% building 689/734 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/animation.js + [webpack.Progress] 66% building 689/735 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js + [webpack.Progress] 66% building 690/735 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js + [webpack.Progress] 66% building 691/735 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js + [webpack.Progress] 66% building 692/735 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js + [webpack.Progress] 66% building 692/736 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/index.js + [webpack.Progress] 66% building 692/737 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseKeys.js + [webpack.Progress] 66% building 692/738 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/index.js + [webpack.Progress] 66% building 692/739 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/minimalistic-crypto-utils/lib/utils.js + [webpack.Progress] 66% building 693/739 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/minimalistic-crypto-utils/lib/utils.js + [webpack.Progress] 66% building 693/740 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayFilter.js + [webpack.Progress] 66% building 694/740 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayFilter.js + [webpack.Progress] 66% building 695/740 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayFilter.js + [webpack.Progress] 66% building 695/741 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/ripemd160/index.js + [webpack.Progress] 66% building 695/742 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/encrypter.js + [webpack.Progress] 66% building 695/743 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/decrypter.js + [webpack.Progress] 66% building 696/743 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/decrypter.js + [webpack.Progress] 66% building 696/744 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/evp_bytestokey/index.js + [webpack.Progress] 66% building 696/745 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-rsa/node_modules/bn.js/lib/bn.js + [webpack.Progress] 65% building 696/746 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js + [webpack.Progress] 66% building 697/746 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js + [webpack.Progress] 65% building 697/747 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/themes/light.js + [webpack.Progress] 65% building 697/748 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/themes/dark.js + [webpack.Progress] 65% building 697/749 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/modules/syntax.js + [webpack.Progress] 65% building 698/749 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/modules/syntax.js + [webpack.Progress] 65% building 699/749 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/modules/syntax.js + [webpack.Progress] 66% building 700/749 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/theming/dist/esm/modules/syntax.js + [webpack.Progress] 65% building 700/750 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/SameValueZero.js + [webpack.Progress] 65% building 700/751 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 701/751 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 702/751 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 703/751 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 704/751 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 705/751 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 706/751 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es2015.js + [webpack.Progress] 66% building 706/752 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToObject.js + [webpack.Progress] 66% building 706/753 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1.js + [webpack.Progress] 66% building 706/754 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/async.js + [webpack.Progress] 66% building 706/755 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 707/755 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 708/755 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 709/755 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 710/755 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 711/755 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 712/755 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 713/755 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 714/755 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/sync-browser.js + [webpack.Progress] 66% building 714/756 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/scheduler/cjs/scheduler.production.min.js + [webpack.Progress] 66% building 715/756 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/scheduler/cjs/scheduler.production.min.js + [webpack.Progress] 66% building 715/757 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/types.js + [webpack.Progress] 66% building 715/758 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.splice.js + [webpack.Progress] 66% building 716/758 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.splice.js + [webpack.Progress] 66% building 717/758 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.splice.js + [webpack.Progress] 66% building 718/758 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.splice.js + [webpack.Progress] 66% building 719/758 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.splice.js + [webpack.Progress] 66% building 719/759 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 66% building 720/759 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 66% building 721/759 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 722/759 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 723/759 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 724/759 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 725/759 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 726/759 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 727/759 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 727/760 modules 33 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-rsa/node_modules/bn.js/lib buffer + [webpack.Progress] 67% building 728/760 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 729/760 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToLength.js + [webpack.Progress] 67% building 729/761 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 730/761 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 731/761 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 732/761 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 733/761 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 734/761 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 735/761 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js + [webpack.Progress] 67% building 735/762 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js + [webpack.Progress] 67% building 735/763 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setToArray.js + [webpack.Progress] 67% building 735/764 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_SetCache.js + [webpack.Progress] 67% building 736/764 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_SetCache.js + [webpack.Progress] 67% building 737/764 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_SetCache.js + [webpack.Progress] 67% building 738/764 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_SetCache.js + [webpack.Progress] 68% building 739/764 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_SetCache.js + [webpack.Progress] 67% building 739/765 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/Popper.js + [webpack.Progress] 67% building 739/766 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/helpers.js + [webpack.Progress] 67% building 740/766 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/options/helpers.js + [webpack.Progress] 67% building 740/767 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/usePopper.js + [webpack.Progress] 67% building 740/768 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/Reference.js + [webpack.Progress] 67% building 740/769 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/Manager.js + [webpack.Progress] 67% building 740/770 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cacheHas.js + [webpack.Progress] 67% building 741/770 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cacheHas.js + [webpack.Progress] 67% building 742/770 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cacheHas.js + [webpack.Progress] 67% building 742/771 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arraySome.js + [webpack.Progress] 67% building 742/772 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Button/Button.js + [webpack.Progress] 67% building 743/772 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Button/Button.js + [webpack.Progress] 67% building 743/773 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js + [webpack.Progress] 67% building 743/774 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js + [webpack.Progress] 67% building 743/775 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/core/dist/core.browser.esm.js + [webpack.Progress] 67% building 743/776 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapToArray.js + [webpack.Progress] 67% building 743/777 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Uint8Array.js + [webpack.Progress] 67% building 743/778 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseClone.js + [webpack.Progress] 67% building 744/778 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseClone.js + [webpack.Progress] 67% building 744/779 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_MapCache.js + [webpack.Progress] 67% building 744/780 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/throttle.js + [webpack.Progress] 67% building 744/781 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stream-browserify/index.js + [webpack.Progress] 67% building 744/782 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionHeader.js + [webpack.Progress] 67% building 745/782 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionHeader.js + [webpack.Progress] 67% building 745/783 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionCollapse.js + [webpack.Progress] 67% building 745/784 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionBody.js + [webpack.Progress] 67% building 746/784 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionBody.js + [webpack.Progress] 67% building 747/784 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AccordionBody.js + [webpack.Progress] 67% building 747/785 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/utils.js + [webpack.Progress] 67% building 747/786 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/hmac.js + [webpack.Progress] 66% building 747/787 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/ripemd.js + [webpack.Progress] 66% building 747/788 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha.js + [webpack.Progress] 66% building 747/789 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/common.js + [webpack.Progress] 66% building 747/790 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/es5.js + [webpack.Progress] 66% building 747/791 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/createClass.js + [webpack.Progress] 66% building 747/792 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/classCallCheck.js + [webpack.Progress] 66% building 747/793 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/has-symbols/index.js + [webpack.Progress] 66% building 747/794 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 748/794 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 749/794 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 750/794 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 751/794 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 752/794 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js + [webpack.Progress] 66% building 752/795 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha.js + [webpack.Progress] 66% building 753/795 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha.js + [webpack.Progress] 66% building 753/796 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nativeKeys.js + [webpack.Progress] 66% building 753/797 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/CSSTransition.js + [webpack.Progress] 66% building 753/798 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/config.js + [webpack.Progress] 66% building 753/799 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/Transition.js + [webpack.Progress] 66% building 753/800 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/TransitionGroup.js + [webpack.Progress] 66% building 754/800 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/TransitionGroup.js + [webpack.Progress] 66% building 754/801 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/authCipher.js + [webpack.Progress] 66% building 755/801 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/authCipher.js + [webpack.Progress] 66% building 755/802 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/md5.js/index.js + [webpack.Progress] 66% building 755/803 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 756/803 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 757/803 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 758/803 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 759/803 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 760/803 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 761/803 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/aes.js + [webpack.Progress] 66% building 761/804 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/streamCipher.js + [webpack.Progress] 66% building 762/804 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/streamCipher.js + [webpack.Progress] 66% building 762/805 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RequireObjectCoercible.js + [webpack.Progress] 66% building 763/805 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RequireObjectCoercible.js + [webpack.Progress] 66% building 764/805 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RequireObjectCoercible.js + [webpack.Progress] 67% building 765/805 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RequireObjectCoercible.js + [webpack.Progress] 67% building 766/805 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RequireObjectCoercible.js + [webpack.Progress] 67% building 766/806 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/to-buffer.js + [webpack.Progress] 67% building 767/806 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/to-buffer.js + [webpack.Progress] 67% building 767/807 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/default-encoding.js + [webpack.Progress] 66% building 767/808 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 768/808 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 769/808 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 770/808 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 771/808 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 772/808 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 773/808 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/pbkdf2/lib/precondition.js + [webpack.Progress] 67% building 773/809 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/array-species-create.js + [webpack.Progress] 67% building 773/810 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/helpers/isPrimitive.js + [webpack.Progress] 67% building 774/810 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/helpers/isPrimitive.js + [webpack.Progress] 67% building 775/810 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/helpers/isPrimitive.js + [webpack.Progress] 67% building 776/810 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/helpers/isPrimitive.js + [webpack.Progress] 67% building 777/810 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-to-primitive/helpers/isPrimitive.js + [webpack.Progress] 67% building 777/811 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.small.js + [webpack.Progress] 67% building 778/811 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.small.js + [webpack.Progress] 67% building 778/812 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/index.js + [webpack.Progress] 67% building 779/812 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/index.js + [webpack.Progress] 67% building 779/813 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/maxSafeInteger.js + [webpack.Progress] 67% building 780/813 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/maxSafeInteger.js + [webpack.Progress] 67% building 781/813 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/maxSafeInteger.js + [webpack.Progress] 67% building 782/813 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/maxSafeInteger.js + [webpack.Progress] 67% building 783/813 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/maxSafeInteger.js + [webpack.Progress] 67% building 783/814 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/index.js + [webpack.Progress] 67% building 784/814 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/index.js + [webpack.Progress] 67% building 784/815 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 785/815 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 786/815 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 786/816 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hmac-drbg/lib/hmac-drbg.js + [webpack.Progress] 67% building 786/817 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/passthrough.js + [webpack.Progress] 67% building 786/818 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/transform.js + [webpack.Progress] 67% building 786/819 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheHas.js + [webpack.Progress] 67% building 786/820 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/memoizerific/memoizerific.js + [webpack.Progress] 67% building 787/820 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/memoizerific/memoizerific.js + [webpack.Progress] 67% building 788/820 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/memoizerific/memoizerific.js + [webpack.Progress] 67% building 788/821 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/duplex-browser.js + [webpack.Progress] 67% building 788/822 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/writable-browser.js + [webpack.Progress] 67% building 789/822 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/writable-browser.js + [webpack.Progress] 67% building 789/823 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper/lib/esm/utils.js + [webpack.Progress] 67% building 789/824 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheAdd.js + [webpack.Progress] 67% building 790/824 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheAdd.js + [webpack.Progress] 67% building 791/824 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheAdd.js + [webpack.Progress] 67% building 792/824 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheAdd.js + [webpack.Progress] 67% building 793/824 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setCacheAdd.js + [webpack.Progress] 67% building 793/825 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/index.js + [webpack.Progress] 67% building 794/825 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/index.js + [webpack.Progress] 67% building 794/826 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-popper-tooltip/dist/esm/react-popper-tooltip.js + [webpack.Progress] 67% building 794/827 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js + [webpack.Progress] 67% building 795/827 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js + [webpack.Progress] 67% building 796/827 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js + [webpack.Progress] 67% building 797/827 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js + [webpack.Progress] 67% building 797/828 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/SwitchTransition.js + [webpack.Progress] 67% building 797/829 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/index.js + [webpack.Progress] 67% building 798/829 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/index.js + [webpack.Progress] 67% building 798/830 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isSet.js + [webpack.Progress] 67% building 798/831 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isMap.js + [webpack.Progress] 67% building 798/832 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheClear.js + [webpack.Progress] 67% building 798/833 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/debounce.js + [webpack.Progress] 67% building 799/833 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/debounce.js + [webpack.Progress] 67% building 800/833 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/debounce.js + [webpack.Progress] 67% building 801/833 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/debounce.js + [webpack.Progress] 67% building 801/834 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Collapse.js + [webpack.Progress] 67% building 801/835 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/api.js + [webpack.Progress] 67% building 802/835 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/api.js + [webpack.Progress] 67% building 802/836 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheSet.js + [webpack.Progress] 67% building 802/837 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheHas.js + [webpack.Progress] 67% building 803/837 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheHas.js + [webpack.Progress] 67% building 803/838 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/has-symbols/shams.js + [webpack.Progress] 67% building 804/838 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/has-symbols/shams.js + [webpack.Progress] 67% building 805/838 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/has-symbols/shams.js + [webpack.Progress] 67% building 805/839 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheGet.js + [webpack.Progress] 67% building 806/839 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheGet.js + [webpack.Progress] 67% building 807/839 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheGet.js + [webpack.Progress] 67% building 807/840 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/hash.js + [webpack.Progress] 67% building 807/841 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_mapCacheDelete.js + [webpack.Progress] 67% building 807/842 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_initCloneObject.js + [webpack.Progress] 67% building 807/843 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/1.js + [webpack.Progress] 67% building 807/844 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/512.js + [webpack.Progress] 67% building 807/845 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/384.js + [webpack.Progress] 67% building 807/846 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/256.js + [webpack.Progress] 67% building 807/847 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/224.js + [webpack.Progress] 67% building 807/848 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_initCloneByTag.js + [webpack.Progress] 67% building 807/849 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_overArg.js + [webpack.Progress] 66% building 807/850 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-prototype-of.js + [webpack.Progress] 67% building 808/850 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-prototype-of.js + [webpack.Progress] 66% building 808/851 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/incr32.js + [webpack.Progress] 67% building 809/851 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/incr32.js + [webpack.Progress] 67% building 810/851 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/incr32.js + [webpack.Progress] 67% building 811/851 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/incr32.js + [webpack.Progress] 67% building 812/851 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/incr32.js + [webpack.Progress] 67% building 812/852 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/ghash.js + [webpack.Progress] 67% building 812/853 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js + [webpack.Progress] 67% building 813/853 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js + [webpack.Progress] 67% building 813/854 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/TransitionGroupContext.js + [webpack.Progress] 67% building 814/854 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/TransitionGroupContext.js + [webpack.Progress] 67% building 815/854 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/TransitionGroupContext.js + [webpack.Progress] 67% building 815/855 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/utils/PropTypes.js + [webpack.Progress] 67% building 815/856 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/utils/ChildMapping.js + [webpack.Progress] 67% building 815/857 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/CheckObjectCoercible.js + [webpack.Progress] 67% building 816/857 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/CheckObjectCoercible.js + [webpack.Progress] 67% building 817/857 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/CheckObjectCoercible.js + [webpack.Progress] 67% building 818/857 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/CheckObjectCoercible.js + [webpack.Progress] 67% building 818/858 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_readable.js + [webpack.Progress] 67% building 818/859 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_passthrough.js + [webpack.Progress] 67% building 818/860 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 67% building 818/861 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_duplex.js + [webpack.Progress] 66% building 818/862 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 819/862 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 820/862 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 820/863 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 821/863 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 822/863 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 823/863 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 824/863 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 825/863 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 826/863 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 827/863 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 828/863 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 829/863 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 830/863 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-array.js + [webpack.Progress] 67% building 830/864 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/implementation.js + [webpack.Progress] 67% building 831/864 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/implementation.js + [webpack.Progress] 67% building 832/864 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/implementation.js + [webpack.Progress] 67% building 833/864 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/function-bind/implementation.js + [webpack.Progress] 67% building 833/865 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 67% building 834/865 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 67% building 835/865 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 67% building 836/865 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 68% building 837/865 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 68% building 838/865 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 68% building 839/865 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/index.js + [webpack.Progress] 68% building 839/866 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js + [webpack.Progress] 68% building 840/866 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js + [webpack.Progress] 68% building 840/867 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/index.js + [webpack.Progress] 68% building 840/868 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 841/868 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 842/868 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 843/868 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 844/868 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 845/868 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 846/868 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-colorful/dist/index.module.js + [webpack.Progress] 68% building 846/869 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/start.js + [webpack.Progress] 68% building 846/870 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-symbol/index.js + [webpack.Progress] 68% building 846/871 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-date-object/index.js + [webpack.Progress] 68% building 847/871 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-date-object/index.js + [webpack.Progress] 68% building 847/872 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-convert/index.js + [webpack.Progress] 68% building 848/872 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-convert/index.js + [webpack.Progress] 68% building 848/873 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/parse.js + [webpack.Progress] 68% building 848/874 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsSet.js + [webpack.Progress] 68% building 848/875 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsMap.js + [webpack.Progress] 68% building 848/876 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_Hash.js + [webpack.Progress] 68% building 848/877 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/toNumber.js + [webpack.Progress] 67% building 848/878 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/TransitionWrapper.js + [webpack.Progress] 67% building 848/879 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getMapData.js + [webpack.Progress] 67% building 849/879 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getMapData.js + [webpack.Progress] 67% building 849/880 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/triggerBrowserReflow.js + [webpack.Progress] 67% building 849/881 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/createChainedFunction.js + [webpack.Progress] 67% building 849/882 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/transitionEndListener.js + [webpack.Progress] 67% building 849/883 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/now.js + [webpack.Progress] 67% building 850/883 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/now.js + [webpack.Progress] 67% building 851/883 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/now.js + [webpack.Progress] 67% building 851/884 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/has/src/index.js + [webpack.Progress] 67% building 851/885 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseCreate.js + [webpack.Progress] 67% building 851/886 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash.js/lib/hash/sha/common.js + [webpack.Progress] 67% building 851/887 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getPrototype.js + [webpack.Progress] 67% building 851/888 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneArrayBuffer.js + [webpack.Progress] 67% building 851/889 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneTypedArray.js + [webpack.Progress] 67% building 851/890 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneSymbol.js + [webpack.Progress] 67% building 851/891 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneRegExp.js + [webpack.Progress] 67% building 852/891 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneRegExp.js + [webpack.Progress] 67% building 852/892 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneDataView.js + [webpack.Progress] 67% building 853/892 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneDataView.js + [webpack.Progress] 67% building 854/892 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneDataView.js + [webpack.Progress] 67% building 855/892 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneDataView.js + [webpack.Progress] 67% building 855/893 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/index.js + [webpack.Progress] 67% building 855/894 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/index.js + [webpack.Progress] 67% building 855/895 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/decoders/index.js + [webpack.Progress] 67% building 855/896 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/constants/index.js + [webpack.Progress] 67% building 855/897 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/base/index.js + [webpack.Progress] 67% building 855/898 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/objectTypes.js + [webpack.Progress] 67% building 856/898 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/objectTypes.js + [webpack.Progress] 67% building 856/899 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/warning/warning.js + [webpack.Progress] 67% building 857/899 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/warning/warning.js + [webpack.Progress] 67% building 857/900 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-fast-compare/index.js + [webpack.Progress] 67% building 857/901 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 858/901 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 859/901 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 860/901 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 861/901 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 862/901 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js + [webpack.Progress] 67% building 862/902 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/inputUsageTypes.js + [webpack.Progress] 67% building 862/903 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/dataTypes.js + [webpack.Progress] 67% building 862/904 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 863/904 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 864/904 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 865/904 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 866/904 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 867/904 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 868/904 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 869/904 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 870/904 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 871/904 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 872/904 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js + [webpack.Progress] 67% building 872/905 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonNode.js + [webpack.Progress] 67% building 873/905 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonNode.js + [webpack.Progress] 67% building 874/905 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonNode.js + [webpack.Progress] 67% building 874/906 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/ecb.js + [webpack.Progress] 67% building 875/906 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/ecb.js + [webpack.Progress] 67% building 875/907 modules 32 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib util + [webpack.Progress] 67% building 876/907 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/ecb.js + [webpack.Progress] 67% building 876/908 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/memoize/dist/memoize.browser.esm.js + [webpack.Progress] 67% building 876/909 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/index.js + [webpack.Progress] 67% building 877/909 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/index.js + [webpack.Progress] 67% building 878/909 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/index.js + [webpack.Progress] 68% building 879/909 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/index.js + [webpack.Progress] 68% building 880/909 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/index.js + [webpack.Progress] 68% building 880/910 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/css/dist/css.browser.esm.js + [webpack.Progress] 67% building 880/911 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/sheet/dist/sheet.browser.esm.js + [webpack.Progress] 68% building 881/911 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/sheet/dist/sheet.browser.esm.js + [webpack.Progress] 68% building 882/911 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/sheet/dist/sheet.browser.esm.js + [webpack.Progress] 68% building 882/912 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/ctr.js + [webpack.Progress] 67% building 882/913 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/ofb.js + [webpack.Progress] 67% building 882/914 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 67% building 883/914 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 884/914 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 885/914 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 886/914 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 887/914 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 888/914 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb1.js + [webpack.Progress] 68% building 888/915 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/buffer-xor/index.js + [webpack.Progress] 68% building 888/916 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/StoryRenderer.js + [webpack.Progress] 68% building 888/917 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/loadCsf.js + [webpack.Progress] 68% building 888/918 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/url.js + [webpack.Progress] 67% building 888/919 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams/destroy.js + [webpack.Progress] 67% building 888/920 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb8.js + [webpack.Progress] 67% building 888/921 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb.js + [webpack.Progress] 67% building 889/921 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cfb.js + [webpack.Progress] 67% building 889/922 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-convert/conversions.js + [webpack.Progress] 67% building 890/922 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-convert/conversions.js + [webpack.Progress] 67% building 890/923 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-convert/route.js + [webpack.Progress] 67% building 890/924 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-aes/modes/cbc.js + [webpack.Progress] 67% building 890/925 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashClear.js + [webpack.Progress] 67% building 890/926 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseTrim.js + [webpack.Progress] 67% building 891/926 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseTrim.js + [webpack.Progress] 67% building 892/926 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseTrim.js + [webpack.Progress] 67% building 892/927 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/safeFindDOMNode.js + [webpack.Progress] 67% building 893/927 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/safeFindDOMNode.js + [webpack.Progress] 67% building 894/927 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/safeFindDOMNode.js + [webpack.Progress] 67% building 894/928 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isKeyable.js + [webpack.Progress] 67% building 895/928 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isKeyable.js + [webpack.Progress] 67% building 896/928 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isKeyable.js + [webpack.Progress] 67% building 897/928 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isKeyable.js + [webpack.Progress] 67% building 897/929 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams/stream-browser.js + [webpack.Progress] 67% building 897/930 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashSet.js + [webpack.Progress] 67% building 897/931 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashHas.js + [webpack.Progress] 67% building 897/932 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashGet.js + [webpack.Progress] 67% building 897/933 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 67% building 898/933 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 67% building 899/933 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 67% building 900/933 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 67% building 901/933 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 68% building 902/933 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hashDelete.js + [webpack.Progress] 67% building 902/934 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams/BufferList.js + [webpack.Progress] 68% building 903/934 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams/BufferList.js + [webpack.Progress] 68% building 904/934 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams/BufferList.js + [webpack.Progress] 68% building 904/935 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/enums.js + [webpack.Progress] 67% building 904/936 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/popper-lite.js + [webpack.Progress] 68% building 905/936 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/popper-lite.js + [webpack.Progress] 67% building 905/937 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/popper.js + [webpack.Progress] 67% building 905/938 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/hook.js + [webpack.Progress] 67% building 905/939 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/der.js + [webpack.Progress] 67% building 906/939 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/der.js + [webpack.Progress] 67% building 906/940 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/decoders/der.js + [webpack.Progress] 67% building 907/940 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/decoders/der.js + [webpack.Progress] 67% building 907/941 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/constants/der.js + [webpack.Progress] 67% building 907/942 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/createPopper.js + [webpack.Progress] 67% building 907/943 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/base/reporter.js + [webpack.Progress] 67% building 907/944 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/base/node.js + [webpack.Progress] 67% building 907/945 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/base/buffer.js + [webpack.Progress] 67% building 907/946 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/decoders/pem.js + [webpack.Progress] 67% building 907/947 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 908/947 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 909/947 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 910/947 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 911/947 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 912/947 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/asn1.js/lib/asn1/encoders/pem.js + [webpack.Progress] 67% building 912/948 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/uncontrollable.js + [webpack.Progress] 67% building 913/948 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/uncontrollable.js + [webpack.Progress] 67% building 914/948 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/uncontrollable.js + [webpack.Progress] 67% building 915/948 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/uncontrollable.js + [webpack.Progress] 67% building 916/948 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/uncontrollable.js + [webpack.Progress] 67% building 916/949 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonFunctionValue.js + [webpack.Progress] 67% building 916/950 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/diff/index.js + [webpack.Progress] 67% building 916/951 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/index.js + [webpack.Progress] 67% building 916/952 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/detailed/index.js + [webpack.Progress] 67% building 916/953 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/updated/index.js + [webpack.Progress] 67% building 917/953 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/updated/index.js + [webpack.Progress] 67% building 917/954 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonArray.js + [webpack.Progress] 67% building 917/955 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/deleted/index.js + [webpack.Progress] 67% building 917/956 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 918/956 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 918/957 modules 39 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/lib/internal/streams util + [webpack.Progress] 67% building 919/957 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 920/957 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 921/957 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 922/957 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 923/957 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 924/957 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 67% building 925/957 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 926/957 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 927/957 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 928/957 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 929/957 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 930/957 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 931/957 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js + [webpack.Progress] 68% building 931/958 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/added/index.js + [webpack.Progress] 68% building 931/959 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonValue.js + [webpack.Progress] 68% building 931/960 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_initCloneArray.js + [webpack.Progress] 68% building 931/961 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_copySymbolsIn.js + [webpack.Progress] 68% building 932/961 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_copySymbolsIn.js + [webpack.Progress] 68% building 932/962 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_copySymbols.js + [webpack.Progress] 68% building 932/963 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/serialize/dist/serialize.browser.esm.js + [webpack.Progress] 68% building 932/964 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/utils/dist/utils.browser.esm.js + [webpack.Progress] 67% building 932/965 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/parseArgsParam.js + [webpack.Progress] 67% building 932/966 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/applyStyles.js + [webpack.Progress] 67% building 932/967 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/hide.js + [webpack.Progress] 67% building 933/967 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/hide.js + [webpack.Progress] 67% building 933/968 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/csf/dist/index.js + [webpack.Progress] 67% building 934/968 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/csf/dist/index.js + [webpack.Progress] 67% building 934/969 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/process-nextick-args/index.js + [webpack.Progress] 67% building 935/969 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/process-nextick-args/index.js + [webpack.Progress] 67% building 936/969 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/process-nextick-args/index.js + [webpack.Progress] 68% building 937/969 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/process-nextick-args/index.js + [webpack.Progress] 67% building 937/970 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nativeCreate.js + [webpack.Progress] 68% building 938/970 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nativeCreate.js + [webpack.Progress] 68% building 939/970 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_nativeCreate.js + [webpack.Progress] 68% building 939/971 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_trimmedEndIndex.js + [webpack.Progress] 68% building 940/971 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_trimmedEndIndex.js + [webpack.Progress] 68% building 941/971 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_trimmedEndIndex.js + [webpack.Progress] 68% building 941/972 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 941/973 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 942/973 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 943/973 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 944/973 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 945/973 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 945/974 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/dom-helpers/esm/removeClass.js + [webpack.Progress] 68% building 945/975 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/dom-helpers/esm/addClass.js + [webpack.Progress] 68% building 945/976 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.repeat.js + [webpack.Progress] 68% building 945/977 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/detectOverflow.js + [webpack.Progress] 67% building 945/978 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/mergeByName.js + [webpack.Progress] 67% building 945/979 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getBasePlacement.js + [webpack.Progress] 67% building 945/980 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/uniqueBy.js + [webpack.Progress] 67% building 945/981 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/validateModifiers.js + [webpack.Progress] 67% building 945/982 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/debounce.js + [webpack.Progress] 67% building 945/983 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/orderModifiers.js + [webpack.Progress] 67% building 945/984 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js + [webpack.Progress] 67% building 945/985 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js + [webpack.Progress] 67% building 945/986 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 67% building 946/986 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 67% building 946/987 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js + [webpack.Progress] 67% building 946/988 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js + [webpack.Progress] 67% building 947/988 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js + [webpack.Progress] 67% building 947/989 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/offset.js + [webpack.Progress] 67% building 947/990 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/flip.js + [webpack.Progress] 67% building 947/991 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/eventListeners.js + [webpack.Progress] 67% building 948/991 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/eventListeners.js + [webpack.Progress] 67% building 949/991 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/eventListeners.js + [webpack.Progress] 67% building 949/992 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/esm/Transition.js + [webpack.Progress] 67% building 949/993 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/css.js + [webpack.Progress] 67% building 950/993 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/css.js + [webpack.Progress] 67% building 951/993 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/css.js + [webpack.Progress] 67% building 952/993 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/css.js + [webpack.Progress] 67% building 952/994 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.get-own-property-names.js + [webpack.Progress] 67% building 952/995 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/computeStyles.js + [webpack.Progress] 67% building 952/996 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js + [webpack.Progress] 67% building 952/997 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/arrow.js + [webpack.Progress] 67% building 953/997 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/arrow.js + [webpack.Progress] 67% building 954/997 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/modifiers/arrow.js + [webpack.Progress] 67% building 954/998 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/utils.js + [webpack.Progress] 67% building 955/998 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/utils.js + [webpack.Progress] 67% building 956/998 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/lib/esm/utils.js + [webpack.Progress] 67% building 956/999 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-composed-ref/dist/use-composed-ref.esm.js + [webpack.Progress] 67% building 956/1000 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js + [webpack.Progress] 67% building 957/1000 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js + [webpack.Progress] 67% building 958/1000 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js + [webpack.Progress] 67% building 958/1001 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/transitionEnd.js + [webpack.Progress] 67% building 958/1002 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 959/1002 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 960/1002 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 961/1002 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 962/1002 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 963/1002 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 964/1002 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 965/1002 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 966/1002 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 967/1002 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 968/1002 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 68% building 969/1002 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/readable-browser.js + [webpack.Progress] 67% building 969/1003 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 970/1003 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 971/1003 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 972/1003 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 973/1003 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 974/1003 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/readable-stream/node_modules/safe-buffer/index.js + [webpack.Progress] 68% building 974/1004 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-latest/dist/use-latest.esm.js + [webpack.Progress] 68% building 974/1005 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 975/1005 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 976/1005 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 977/1005 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 978/1005 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 979/1005 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 980/1005 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js + [webpack.Progress] 68% building 980/1006 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js + [webpack.Progress] 68% building 980/1007 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getWindow.js + [webpack.Progress] 68% building 980/1008 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_copyObject.js + [webpack.Progress] 68% building 980/1009 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channel-postmessage/dist/esm/index.js + [webpack.Progress] 68% building 981/1009 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/channel-postmessage/dist/esm/index.js + [webpack.Progress] 68% building 981/1010 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 981/1011 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/expandToHashMap.js + [webpack.Progress] 68% building 981/1012 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js + [webpack.Progress] 68% building 981/1013 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/rectToClientRect.js + [webpack.Progress] 68% building 981/1014 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/format.js + [webpack.Progress] 67% building 981/1015 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/computeOffsets.js + [webpack.Progress] 67% building 981/1016 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js + [webpack.Progress] 67% building 981/1017 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 67% building 981/1018 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/math.js + [webpack.Progress] 67% building 981/1019 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-util-is/lib/util.js + [webpack.Progress] 67% building 981/1020 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js + [webpack.Progress] 67% building 981/1021 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js + [webpack.Progress] 67% building 981/1022 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 67% building 982/1022 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 67% building 983/1022 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 67% building 984/1022 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 67% building 985/1022 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 67% building 985/1023 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/startCase.js + [webpack.Progress] 67% building 985/1024 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.search.js + [webpack.Progress] 67% building 986/1024 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.search.js + [webpack.Progress] 67% building 987/1024 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.search.js + [webpack.Progress] 67% building 988/1024 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.search.js + [webpack.Progress] 67% building 988/1025 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/within.js + [webpack.Progress] 67% building 988/1026 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js + [webpack.Progress] 67% building 988/1027 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/contains.js + [webpack.Progress] 67% building 988/1028 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js + [webpack.Progress] 67% building 988/1029 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js + [webpack.Progress] 67% building 988/1030 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/utils/getAltAxis.js + [webpack.Progress] 67% building 988/1031 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 67% building 989/1031 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 67% building 990/1031 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 67% building 991/1031 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 67% building 992/1031 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 67% building 992/1032 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js + [webpack.Progress] 67% building 992/1033 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 67% building 992/1034 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js + [webpack.Progress] 67% building 992/1035 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js + [webpack.Progress] 67% building 993/1035 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js + [webpack.Progress] 67% building 993/1036 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/dom-helpers/esm/hasClass.js + [webpack.Progress] 67% building 993/1037 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 994/1037 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 995/1037 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 996/1037 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 997/1037 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 998/1037 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 999/1037 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 1000/1037 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/string-repeat.js + [webpack.Progress] 67% building 1000/1038 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 67% building 1001/1038 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 67% building 1002/1038 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 67% building 1003/1038 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 68% building 1004/1038 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 68% building 1005/1038 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 68% building 1005/1039 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/getComputedStyle.js + [webpack.Progress] 67% building 1005/1040 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/extends.js + [webpack.Progress] 67% building 1005/1041 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js + [webpack.Progress] 67% building 1005/1042 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 67% building 1006/1042 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 67% building 1007/1042 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 67% building 1007/1043 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-get-own-property-names-external.js + [webpack.Progress] 67% building 1007/1044 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_readable.js + [webpack.Progress] 67% building 1007/1045 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_passthrough.js + [webpack.Progress] 67% building 1007/1046 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_transform.js + [webpack.Progress] 67% building 1007/1047 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_duplex.js + [webpack.Progress] 67% building 1007/1048 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 1008/1048 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 1009/1048 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 1010/1048 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js + [webpack.Progress] 67% building 1010/1049 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/isTransform.js + [webpack.Progress] 67% building 1010/1050 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/hyphenateStyle.js + [webpack.Progress] 67% building 1010/1051 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/esm/TransitionGroupContext.js + [webpack.Progress] 67% building 1010/1052 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/esm/config.js + [webpack.Progress] 67% building 1011/1052 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/esm/config.js + [webpack.Progress] 67% building 1011/1053 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-name/index.js + [webpack.Progress] 67% building 1012/1053 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-name/index.js + [webpack.Progress] 67% building 1013/1053 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-name/index.js + [webpack.Progress] 67% building 1014/1053 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/color-name/index.js + [webpack.Progress] 67% building 1014/1054 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 67% building 1015/1054 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 67% building 1016/1054 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 67% building 1017/1054 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 67% building 1018/1054 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 68% building 1019/1054 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 68% building 1020/1054 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.number.is-integer.js + [webpack.Progress] 68% building 1020/1055 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/esm/utils/PropTypes.js + [webpack.Progress] 67% building 1020/1056 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/pipeline.js + [webpack.Progress] 67% building 1020/1057 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 67% building 1021/1057 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 68% building 1022/1057 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 68% building 1023/1057 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 68% building 1024/1057 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 68% building 1025/1057 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js + [webpack.Progress] 68% building 1025/1058 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/triggerEvent.js + [webpack.Progress] 68% building 1025/1059 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1026/1059 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1027/1059 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1028/1059 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1029/1059 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1030/1059 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1031/1059 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1032/1059 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1033/1059 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1034/1059 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1035/1059 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1035/1060 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + [webpack.Progress] 68% building 1035/1061 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js + [webpack.Progress] 68% building 1035/1062 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js + [webpack.Progress] 68% building 1036/1062 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js + [webpack.Progress] 68% building 1036/1063 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js + [webpack.Progress] 68% building 1037/1063 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js + [webpack.Progress] 68% building 1037/1064 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isPlainObject.js + [webpack.Progress] 68% building 1037/1065 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uncontrollable/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 68% building 1037/1066 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_createCompounder.js + [webpack.Progress] 68% building 1037/1067 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/same-value.js + [webpack.Progress] 68% building 1037/1068 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safer-buffer/safer.js + [webpack.Progress] 68% building 1038/1068 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safer-buffer/safer.js + [webpack.Progress] 68% building 1039/1068 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safer-buffer/safer.js + [webpack.Progress] 68% building 1040/1068 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/safer-buffer/safer.js + [webpack.Progress] 68% building 1040/1069 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.string.ends-with.js + [webpack.Progress] 68% building 1040/1070 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/invariant/browser.js + [webpack.Progress] 68% building 1040/1071 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/upperFirst.js + [webpack.Progress] 68% building 1040/1072 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js + [webpack.Progress] 68% building 1040/1073 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 68% building 1040/1074 modules 34 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib util + [webpack.Progress] 68% building 1041/1074 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 68% building 1042/1074 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 68% building 1043/1074 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/errors-browser.js + [webpack.Progress] 68% building 1043/1075 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/NoDocs.js + [webpack.Progress] 68% building 1044/1075 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/NoDocs.js + [webpack.Progress] 68% building 1045/1075 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/NoDocs.js + [webpack.Progress] 68% building 1046/1075 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/NoDocs.js + [webpack.Progress] 68% building 1047/1075 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/core-client/dist/esm/preview/NoDocs.js + [webpack.Progress] 68% building 1047/1076 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deep-object-diff/dist/utils/index.js + [webpack.Progress] 68% building 1047/1077 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js + [webpack.Progress] 68% building 1047/1078 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js + [webpack.Progress] 68% building 1047/1079 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1048/1079 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1049/1079 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1050/1079 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1051/1079 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1052/1079 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1053/1079 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1054/1079 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1055/1079 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1056/1079 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1057/1079 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 1057/1080 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/hyphenate.js + [webpack.Progress] 68% building 1057/1081 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js + [webpack.Progress] 68% building 1057/1082 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/state.js + [webpack.Progress] 68% building 1057/1083 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/destroy.js + [webpack.Progress] 68% building 1057/1084 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/from-browser.js + [webpack.Progress] 68% building 1057/1085 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/async_iterator.js + [webpack.Progress] 68% building 1058/1085 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/async_iterator.js + [webpack.Progress] 68% building 1058/1086 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/is-integer.js + [webpack.Progress] 68% building 1058/1087 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/stream-browser.js + [webpack.Progress] 68% building 1058/1088 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 68% building 1059/1088 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/buffer_list.js + [webpack.Progress] 68% building 1059/1089 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/hash/dist/hash.browser.esm.js + [webpack.Progress] 68% building 1059/1090 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/Select-54ac8379.esm.js + [webpack.Progress] 68% building 1060/1090 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/Select-54ac8379.esm.js + [webpack.Progress] 68% building 1061/1090 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/Select-54ac8379.esm.js + [webpack.Progress] 68% building 1062/1090 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/Select-54ac8379.esm.js + [webpack.Progress] 68% building 1062/1091 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_copyArray.js + [webpack.Progress] 68% building 1062/1092 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_cloneBuffer.js + [webpack.Progress] 68% building 1062/1093 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseAssignIn.js + [webpack.Progress] 68% building 1062/1094 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseAssign.js + [webpack.Progress] 68% building 1062/1095 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/addEventListener.js + [webpack.Progress] 68% building 1062/1096 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/removeEventListener.js + [webpack.Progress] 68% building 1063/1096 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/removeEventListener.js + [webpack.Progress] 68% building 1063/1097 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayEach.js + [webpack.Progress] 68% building 1064/1097 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayEach.js + [webpack.Progress] 68% building 1065/1097 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayEach.js + [webpack.Progress] 68% building 1065/1098 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.map.js + [webpack.Progress] 68% building 1066/1098 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.map.js + [webpack.Progress] 68% building 1067/1098 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.map.js + [webpack.Progress] 68% building 1068/1098 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.map.js + [webpack.Progress] 68% building 1068/1099 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-transition-group/esm/ReplaceTransition.js + [webpack.Progress] 68% building 1068/1100 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha512.js + [webpack.Progress] 68% building 1068/1101 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha384.js + [webpack.Progress] 68% building 1068/1102 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha256.js + [webpack.Progress] 68% building 1068/1103 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha224.js + [webpack.Progress] 68% building 1068/1104 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sha.js/sha1.js + [webpack.Progress] 67% building 1068/1105 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js + [webpack.Progress] 68% building 1069/1105 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js + [webpack.Progress] 67% building 1069/1106 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 68% building 1070/1106 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js + [webpack.Progress] 67% building 1070/1107 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayReduce.js + [webpack.Progress] 67% building 1070/1108 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/words.js + [webpack.Progress] 67% building 1070/1109 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/deburr.js + [webpack.Progress] 67% building 1071/1109 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/deburr.js + [webpack.Progress] 67% building 1071/1110 modules 39 active ignored /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams util + [webpack.Progress] 67% building 1072/1110 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/deburr.js + [webpack.Progress] 68% building 1073/1110 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/deburr.js + [webpack.Progress] 68% building 1074/1110 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/deburr.js + [webpack.Progress] 68% building 1074/1111 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/utility.js + [webpack.Progress] 67% building 1074/1112 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/lib/typed.js + [webpack.Progress] 67% building 1074/1113 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stringToPath.js + [webpack.Progress] 67% building 1074/1114 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_createCaseFirst.js + [webpack.Progress] 67% building 1074/1115 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isKey.js + [webpack.Progress] 67% building 1074/1116 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 67% building 1075/1116 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 67% building 1076/1116 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 67% building 1077/1116 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 67% building 1078/1116 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 68% building 1079/1116 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_matchesStrictComparable.js + [webpack.Progress] 67% building 1079/1117 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useCreatable-8a6670a3.esm.js + [webpack.Progress] 68% building 1080/1117 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useCreatable-8a6670a3.esm.js + [webpack.Progress] 67% building 1080/1118 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isStrictComparable.js + [webpack.Progress] 67% building 1080/1119 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/hasIn.js + [webpack.Progress] 67% building 1080/1120 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/get.js + [webpack.Progress] 67% building 1080/1121 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/xor.js + [webpack.Progress] 67% building 1080/1122 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 67% building 1081/1122 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 67% building 1082/1122 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 67% building 1083/1122 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 67% building 1084/1122 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1085/1122 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1086/1122 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1087/1122 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1088/1122 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1089/1122 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1090/1122 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/public-encrypt/mgf.js + [webpack.Progress] 68% building 1090/1123 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerDocument.js + [webpack.Progress] 68% building 1090/1124 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.scss + [webpack.Progress] 68% building 1091/1124 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/ownerDocument.js + [webpack.Progress] 68% building 1091/1125 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.scss + [webpack.Progress] 68% building 1092/1125 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.scss + [webpack.Progress] 68% building 1093/1125 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.scss + [webpack.Progress] 68% building 1094/1125 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Alert/Alert.scss + [webpack.Progress] 68% building 1094/1126 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_basePropertyDeep.js + [webpack.Progress] 68% building 1094/1127 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_getMatchData.js + [webpack.Progress] 68% building 1094/1128 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/inherits.js + [webpack.Progress] 68% building 1094/1129 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inherits.js + [webpack.Progress] 68% building 1094/1130 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/createClass.js + [webpack.Progress] 68% building 1094/1131 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/createClass.js + [webpack.Progress] 67% building 1094/1132 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/classCallCheck.js + [webpack.Progress] 67% building 1094/1133 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/classCallCheck.js + [webpack.Progress] 67% building 1094/1134 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 67% building 1095/1134 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 67% building 1096/1134 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1097/1134 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1098/1134 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1099/1134 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1100/1134 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1100/1135 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.scss + [webpack.Progress] 68% building 1101/1135 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js + [webpack.Progress] 68% building 1101/1136 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.scss + [webpack.Progress] 68% building 1102/1136 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/Avatar.scss + [webpack.Progress] 68% building 1102/1137 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isArguments.js + [webpack.Progress] 68% building 1102/1138 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createDefaultValue.js + [webpack.Progress] 68% building 1102/1139 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createType.js + [webpack.Progress] 68% building 1102/1140 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inheritsLoose.js + [webpack.Progress] 68% building 1103/1140 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inheritsLoose.js + [webpack.Progress] 68% building 1104/1140 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inheritsLoose.js + [webpack.Progress] 68% building 1105/1140 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inheritsLoose.js + [webpack.Progress] 68% building 1106/1140 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/inheritsLoose.js + [webpack.Progress] 68% building 1106/1141 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createDefaultValue.js + [webpack.Progress] 68% building 1107/1141 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createDefaultValue.js + [webpack.Progress] 68% building 1107/1142 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createType.js + [webpack.Progress] 68% building 1107/1143 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.json.to-string-tag.js + [webpack.Progress] 68% building 1107/1144 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.unscopables.js + [webpack.Progress] 68% building 1107/1145 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.to-string-tag.js + [webpack.Progress] 67% building 1107/1146 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.to-primitive.js + [webpack.Progress] 67% building 1107/1147 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/telejson/dist/index.js + [webpack.Progress] 67% building 1107/1148 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.split.js + [webpack.Progress] 67% building 1107/1149 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.species.js + [webpack.Progress] 67% building 1107/1150 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.search.js + [webpack.Progress] 67% building 1107/1151 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.replace.js + [webpack.Progress] 67% building 1107/1152 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.match-all.js + [webpack.Progress] 67% building 1107/1153 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/unitless/dist/unitless.browser.esm.js + [webpack.Progress] 67% building 1107/1154 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/doctrine/package.json + [webpack.Progress] 67% building 1108/1154 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/unitless/dist/unitless.browser.esm.js + [webpack.Progress] 67% building 1109/1154 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/unitless/dist/unitless.browser.esm.js + [webpack.Progress] 67% building 1109/1155 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + [webpack.Progress] 67% building 1109/1156 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.match.js + [webpack.Progress] 67% building 1109/1157 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.is-concat-spreadable.js + [webpack.Progress] 67% building 1109/1158 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.has-instance.js + [webpack.Progress] 67% building 1110/1158 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.has-instance.js + [webpack.Progress] 67% building 1111/1158 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.has-instance.js + [webpack.Progress] 67% building 1112/1158 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.has-instance.js + [webpack.Progress] 67% building 1113/1158 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.has-instance.js + [webpack.Progress] 67% building 1113/1159 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.async-iterator.js + [webpack.Progress] 67% building 1114/1159 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.async-iterator.js + [webpack.Progress] 67% building 1115/1159 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.symbol.async-iterator.js + [webpack.Progress] 67% building 1115/1160 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/canUseDOM.js + [webpack.Progress] 67% building 1116/1160 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/canUseDOM.js + [webpack.Progress] 67% building 1117/1160 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/canUseDOM.js + [webpack.Progress] 67% building 1118/1160 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/canUseDOM.js + [webpack.Progress] 67% building 1118/1161 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/classNames.js + [webpack.Progress] 67% building 1119/1161 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/classNames.js + [webpack.Progress] 67% building 1120/1161 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/classNames.js + [webpack.Progress] 67% building 1121/1161 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/classNames.js + [webpack.Progress] 67% building 1121/1162 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/getPrototypeOf.js + [webpack.Progress] 67% building 1121/1163 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 67% building 1122/1163 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 67% building 1123/1163 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 67% building 1124/1163 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 68% building 1125/1163 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 68% building 1126/1163 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js + [webpack.Progress] 68% building 1126/1164 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/ansi-to-html/lib/ansi_to_html.js + [webpack.Progress] 67% building 1126/1165 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2017.js + [webpack.Progress] 68% building 1127/1165 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2017.js + [webpack.Progress] 67% building 1127/1166 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.mdx + [webpack.Progress] 68% building 1128/1166 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.mdx + [webpack.Progress] 68% building 1129/1166 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.mdx + [webpack.Progress] 68% building 1129/1167 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/bar/bar.js + [webpack.Progress] 67% building 1129/1168 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/bar/separator.js + [webpack.Progress] 67% building 1129/1169 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_asciiWords.js + [webpack.Progress] 67% building 1129/1170 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_deburrLetter.js + [webpack.Progress] 67% building 1130/1170 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_deburrLetter.js + [webpack.Progress] 67% building 1130/1171 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 67% building 1130/1172 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 67% building 1131/1172 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 67% building 1132/1172 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 68% building 1133/1172 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 68% building 1134/1172 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 68% building 1135/1172 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/setPrototypeOf.js + [webpack.Progress] 68% building 1135/1173 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_memoizeCapped.js + [webpack.Progress] 68% building 1135/1174 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_castSlice.js + [webpack.Progress] 67% building 1135/1175 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stringToArray.js + [webpack.Progress] 68% building 1136/1175 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stringToArray.js + [webpack.Progress] 68% building 1137/1175 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_stringToArray.js + [webpack.Progress] 68% building 1137/1176 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicode.js + [webpack.Progress] 68% building 1138/1176 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicode.js + [webpack.Progress] 68% building 1139/1176 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicode.js + [webpack.Progress] 68% building 1140/1176 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicode.js + [webpack.Progress] 68% building 1141/1176 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicode.js + [webpack.Progress] 68% building 1141/1177 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/brand/StorybookIcon.js + [webpack.Progress] 68% building 1141/1178 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/brand/StorybookLogo.js + [webpack.Progress] 68% building 1141/1179 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_unicodeWords.js + [webpack.Progress] 68% building 1141/1180 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseHasIn.js + [webpack.Progress] 67% building 1141/1181 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasPath.js + [webpack.Progress] 67% building 1141/1182 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_hasUnicodeWord.js + [webpack.Progress] 67% building 1141/1183 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/addon-panel/addon-panel.js + [webpack.Progress] 67% building 1141/1184 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/assert/assert.js + [webpack.Progress] 67% building 1141/1185 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipLinkList.js + [webpack.Progress] 67% building 1141/1186 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js + [webpack.Progress] 67% building 1142/1186 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js + [webpack.Progress] 67% building 1143/1186 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js + [webpack.Progress] 67% building 1144/1186 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js + [webpack.Progress] 67% building 1145/1186 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js + [webpack.Progress] 67% building 1145/1187 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/typeof.js + [webpack.Progress] 67% building 1145/1188 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/index.js + [webpack.Progress] 67% building 1145/1189 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tabs/tabs.js + [webpack.Progress] 67% building 1145/1190 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js + [webpack.Progress] 67% building 1145/1191 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js + [webpack.Progress] 67% building 1145/1192 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1146/1192 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1147/1192 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1148/1192 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1149/1192 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1150/1192 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1151/1192 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js + [webpack.Progress] 67% building 1151/1193 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Zoom/Zoom.js + [webpack.Progress] 67% building 1151/1194 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/index.js + [webpack.Progress] 67% building 1151/1195 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 67% building 1152/1195 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 67% building 1153/1195 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 67% building 1154/1195 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 67% building 1155/1195 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 68% building 1156/1195 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 68% building 1157/1195 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js + [webpack.Progress] 68% building 1157/1196 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsArguments.js + [webpack.Progress] 68% building 1158/1196 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsArguments.js + [webpack.Progress] 68% building 1158/1197 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1159/1197 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1160/1197 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1161/1197 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1162/1197 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1163/1197 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js + [webpack.Progress] 68% building 1163/1198 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/spaced/Spaced.js + [webpack.Progress] 68% building 1163/1199 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ActionBar/ActionBar.js + [webpack.Progress] 68% building 1164/1199 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ActionBar/ActionBar.js + [webpack.Progress] 68% building 1165/1199 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ActionBar/ActionBar.js + [webpack.Progress] 68% building 1165/1200 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js + [webpack.Progress] 68% building 1165/1201 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/typography/DocumentWrapper.js + [webpack.Progress] 68% building 1165/1202 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/typography/DocumentFormatting.js + [webpack.Progress] 68% building 1165/1203 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/typography/link/link.js + [webpack.Progress] 68% building 1165/1204 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Badge/Badge.js + [webpack.Progress] 68% building 1165/1205 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/dom-iterables.js + [webpack.Progress] 67% building 1165/1206 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/cache/dist/cache.browser.esm.js + [webpack.Progress] 67% building 1165/1207 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js + [webpack.Progress] 67% building 1165/1208 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js + [webpack.Progress] 67% building 1165/1209 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.jsx + [webpack.Progress] 67% building 1165/1210 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.jsx + [webpack.Progress] 67% building 1165/1211 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.jsx + [webpack.Progress] 67% building 1165/1212 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/assertThisInitialized.js + [webpack.Progress] 67% building 1166/1212 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/assertThisInitialized.js + [webpack.Progress] 67% building 1167/1212 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/assertThisInitialized.js + [webpack.Progress] 67% building 1167/1213 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-react.browser.esm.js + [webpack.Progress] 67% building 1168/1213 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-react.browser.esm.js + [webpack.Progress] 67% building 1169/1213 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-react.browser.esm.js + [webpack.Progress] 67% building 1170/1213 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-react.browser.esm.js + [webpack.Progress] 67% building 1171/1213 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-react.browser.esm.js + [webpack.Progress] 67% building 1171/1214 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/algos.js + [webpack.Progress] 67% building 1172/1214 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-sign/algos.js + [webpack.Progress] 67% building 1172/1215 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es5-shim/es5-sham.js + [webpack.Progress] 67% building 1172/1216 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/generateCode.js + [webpack.Progress] 67% building 1173/1216 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/generateCode.js + [webpack.Progress] 67% building 1173/1217 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js + [webpack.Progress] 67% building 1174/1217 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js + [webpack.Progress] 67% building 1174/1218 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js + [webpack.Progress] 67% building 1174/1219 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/blocks.js + [webpack.Progress] 67% building 1175/1219 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/blocks.js + [webpack.Progress] 67% building 1175/1220 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/TrackedButton/index.js + [webpack.Progress] 67% building 1175/1221 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1176/1221 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1177/1221 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1178/1221 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1179/1221 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1180/1221 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 68% building 1181/1221 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/storySort.js + [webpack.Progress] 67% building 1181/1222 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/index.js + [webpack.Progress] 68% building 1182/1222 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/index.js + [webpack.Progress] 68% building 1183/1222 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/index.js + [webpack.Progress] 68% building 1183/1223 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/index.js + [webpack.Progress] 67% building 1183/1224 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2018.js + [webpack.Progress] 68% building 1184/1224 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2018.js + [webpack.Progress] 68% building 1185/1224 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2018.js + [webpack.Progress] 68% building 1186/1224 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2018.js + [webpack.Progress] 68% building 1187/1224 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2018.js + [webpack.Progress] 68% building 1187/1225 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_basePropertyOf.js + [webpack.Progress] 68% building 1187/1226 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.parse-int.js + [webpack.Progress] 68% building 1188/1226 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.parse-int.js + [webpack.Progress] 68% building 1188/1227 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/args.js + [webpack.Progress] 68% building 1188/1228 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/memoize.js + [webpack.Progress] 68% building 1189/1228 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/memoize.js + [webpack.Progress] 68% building 1189/1229 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseSlice.js + [webpack.Progress] 68% building 1189/1230 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_asciiToArray.js + [webpack.Progress] 67% building 1189/1231 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_unicodeToArray.js + [webpack.Progress] 68% building 1190/1231 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_unicodeToArray.js + [webpack.Progress] 68% building 1191/1231 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_unicodeToArray.js + [webpack.Progress] 68% building 1192/1231 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_unicodeToArray.js + [webpack.Progress] 68% building 1192/1232 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/index.js + [webpack.Progress] 68% building 1193/1232 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/index.js + [webpack.Progress] 68% building 1194/1232 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormGroup/index.js + [webpack.Progress] 68% building 1194/1233 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/pick.js + [webpack.Progress] 68% building 1195/1233 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/pick.js + [webpack.Progress] 68% building 1195/1234 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js + [webpack.Progress] 68% building 1196/1234 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js + [webpack.Progress] 68% building 1197/1234 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js + [webpack.Progress] 68% building 1197/1235 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-copy-to-clipboard/lib/index.js + [webpack.Progress] 68% building 1198/1235 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-copy-to-clipboard/lib/index.js + [webpack.Progress] 68% building 1198/1236 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/util.js + [webpack.Progress] 68% building 1199/1236 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/util.js + [webpack.Progress] 68% building 1200/1236 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/util.js + [webpack.Progress] 68% building 1200/1237 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js + [webpack.Progress] 68% building 1201/1237 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js + [webpack.Progress] 68% building 1201/1238 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Tooltip.js + [webpack.Progress] 68% building 1201/1239 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToggleButtonGroup.js + [webpack.Progress] 68% building 1201/1240 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToggleButton.js + [webpack.Progress] 68% building 1201/1241 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastContainer.js + [webpack.Progress] 68% building 1202/1241 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastContainer.js + [webpack.Progress] 68% building 1203/1241 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastContainer.js + [webpack.Progress] 68% building 1203/1242 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/shim.js + [webpack.Progress] 68% building 1204/1242 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/shim.js + [webpack.Progress] 68% building 1204/1243 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Zoom/ZoomIFrame.js + [webpack.Progress] 68% building 1205/1243 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Zoom/ZoomIFrame.js + [webpack.Progress] 68% building 1205/1244 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/OverlayScrollbars.js + [webpack.Progress] 68% building 1205/1245 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/GlobalScrollAreaStyles.js + [webpack.Progress] 68% building 1206/1245 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/GlobalScrollAreaStyles.js + [webpack.Progress] 68% building 1207/1245 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/GlobalScrollAreaStyles.js + [webpack.Progress] 68% building 1208/1245 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/ScrollArea/GlobalScrollAreaStyles.js + [webpack.Progress] 68% building 1208/1246 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.getownpropertydescriptors/shim.js + [webpack.Progress] 68% building 1208/1247 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padend/shim.js + [webpack.Progress] 68% building 1208/1248 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padstart/shim.js + [webpack.Progress] 68% building 1208/1249 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/shim.js + [webpack.Progress] 68% building 1209/1249 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/shim.js + [webpack.Progress] 68% building 1209/1250 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Zoom/ZoomElement.js + [webpack.Progress] 67% building 1209/1251 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastHeader.js + [webpack.Progress] 68% building 1210/1251 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastHeader.js + [webpack.Progress] 68% building 1211/1251 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastHeader.js + [webpack.Progress] 68% building 1212/1251 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastHeader.js + [webpack.Progress] 68% building 1212/1252 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/syntaxhighlighter/syntaxhighlighter.js + [webpack.Progress] 68% building 1212/1253 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/index.js + [webpack.Progress] 68% building 1213/1253 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/index.js + [webpack.Progress] 68% building 1214/1253 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/index.js + [webpack.Progress] 68% building 1214/1254 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/typography/shared.js + [webpack.Progress] 68% building 1214/1255 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastBody.js + [webpack.Progress] 67% building 1214/1256 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Toast.js + [webpack.Progress] 67% building 1214/1257 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Tabs.js + [webpack.Progress] 67% building 1214/1258 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/TabPane.js + [webpack.Progress] 67% building 1214/1259 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Table.js + [webpack.Progress] 67% building 1214/1260 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/TabContent.js + [webpack.Progress] 67% building 1215/1260 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/TabContent.js + [webpack.Progress] 67% building 1215/1261 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/TabContainer.js + [webpack.Progress] 67% building 1215/1262 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Tab.js + [webpack.Progress] 67% building 1215/1263 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Stack.js + [webpack.Progress] 67% building 1215/1264 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.array.find-index.js + [webpack.Progress] 67% building 1215/1265 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/index.js + [webpack.Progress] 67% building 1216/1265 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/index.js + [webpack.Progress] 67% building 1217/1265 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/index.js + [webpack.Progress] 67% building 1218/1265 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/index.js + [webpack.Progress] 67% building 1219/1265 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/index.js + [webpack.Progress] 67% building 1219/1266 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButton/index.js + [webpack.Progress] 67% building 1219/1267 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/index.js + [webpack.Progress] 67% building 1220/1267 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/index.js + [webpack.Progress] 67% building 1220/1268 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.scss + [webpack.Progress] 67% building 1221/1268 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Card/index.js + [webpack.Progress] 67% building 1221/1269 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.scss + [webpack.Progress] 67% building 1221/1270 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.scss + [webpack.Progress] 67% building 1222/1270 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/LoadingOverlay.scss + [webpack.Progress] 67% building 1222/1271 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.scss + [webpack.Progress] 67% building 1223/1271 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.scss + [webpack.Progress] 67% building 1223/1272 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1224/1272 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/ProfileCell.scss + [webpack.Progress] 67% building 1224/1273 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1225/1273 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1226/1273 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1227/1273 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1228/1273 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1229/1273 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 67% building 1230/1273 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 68% building 1231/1273 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 68% building 1232/1273 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/IconCell.scss + [webpack.Progress] 68% building 1232/1274 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.jsx + [webpack.Progress] 68% building 1233/1274 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.jsx + [webpack.Progress] 68% building 1234/1274 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.jsx + [webpack.Progress] 68% building 1235/1274 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/Table.jsx + [webpack.Progress] 68% building 1235/1275 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/convert.js + [webpack.Progress] 68% building 1236/1275 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/convert.js + [webpack.Progress] 68% building 1236/1276 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/convert.js + [webpack.Progress] 68% building 1237/1276 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/convert.js + [webpack.Progress] 68% building 1237/1277 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js + [webpack.Progress] 68% building 1237/1278 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2019.js + [webpack.Progress] 68% building 1238/1278 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2019.js + [webpack.Progress] 68% building 1239/1278 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2019.js + [webpack.Progress] 68% building 1240/1278 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2019.js + [webpack.Progress] 68% building 1240/1279 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1241/1279 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1242/1279 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1243/1279 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1244/1279 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1245/1279 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1246/1279 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/number-parse-int.js + [webpack.Progress] 68% building 1246/1280 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/blocks.js + [webpack.Progress] 68% building 1247/1280 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/blocks.js + [webpack.Progress] 68% building 1248/1280 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/blocks.js + [webpack.Progress] 68% building 1248/1281 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/types.js + [webpack.Progress] 68% building 1248/1282 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.regexp.constructor.js + [webpack.Progress] 68% building 1248/1283 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_basePick.js + [webpack.Progress] 68% building 1248/1284 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-regex/index.js + [webpack.Progress] 68% building 1248/1285 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableSortLabel.jsx + [webpack.Progress] 68% building 1248/1286 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableRow.jsx + [webpack.Progress] 68% building 1248/1287 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableHead.jsx + [webpack.Progress] 68% building 1248/1288 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_flatRest.js + [webpack.Progress] 68% building 1248/1289 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-function/index.js + [webpack.Progress] 68% building 1248/1290 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/diffie-hellman/browser.js + [webpack.Progress] 68% building 1248/1291 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-cipher/browser.js + [webpack.Progress] 67% building 1248/1292 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-copy-to-clipboard/lib/Component.js + [webpack.Progress] 68% building 1249/1292 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-copy-to-clipboard/lib/Component.js + [webpack.Progress] 68% building 1250/1292 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-copy-to-clipboard/lib/Component.js + [webpack.Progress] 68% building 1250/1293 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/index.js + [webpack.Progress] 67% building 1250/1294 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/index.js + [webpack.Progress] 67% building 1250/1295 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/helpers.js + [webpack.Progress] 67% building 1250/1296 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonGroup.js + [webpack.Progress] 67% building 1250/1297 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Button.js + [webpack.Progress] 67% building 1250/1298 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ElementChildren.js + [webpack.Progress] 67% building 1251/1298 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ElementChildren.js + [webpack.Progress] 67% building 1252/1298 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ElementChildren.js + [webpack.Progress] 67% building 1253/1298 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ElementChildren.js + [webpack.Progress] 67% building 1253/1299 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/polyfill.js + [webpack.Progress] 67% building 1254/1299 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/polyfill.js + [webpack.Progress] 67% building 1254/1300 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/Zoom/browserSupportsCssZoom.js + [webpack.Progress] 67% building 1254/1301 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/auto.js + [webpack.Progress] 67% building 1255/1301 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/auto.js + [webpack.Progress] 67% building 1256/1301 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/auto.js + [webpack.Progress] 67% building 1256/1302 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/telejson/node_modules/isobject/index.js + [webpack.Progress] 67% building 1256/1303 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.getownpropertydescriptors/polyfill.js + [webpack.Progress] 67% building 1256/1304 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padend/polyfill.js + [webpack.Progress] 67% building 1256/1305 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/index.js + [webpack.Progress] 67% building 1256/1306 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padstart/polyfill.js + [webpack.Progress] 67% building 1256/1307 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/polyfill.js + [webpack.Progress] 67% building 1256/1308 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/TrackedButton/TrackedButton.jsx + [webpack.Progress] 67% building 1257/1308 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/TrackedButton/TrackedButton.jsx + [webpack.Progress] 67% building 1257/1309 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastContext.js + [webpack.Progress] 67% building 1257/1310 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CloseButton.js + [webpack.Progress] 67% building 1258/1310 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CloseButton.js + [webpack.Progress] 67% building 1259/1310 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CloseButton.js + [webpack.Progress] 67% building 1259/1311 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/prettyIdentifier.js + [webpack.Progress] 67% building 1259/1312 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js + [webpack.Progress] 67% building 1259/1313 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/support/isBufferBrowser.js + [webpack.Progress] 67% building 1260/1313 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/support/isBufferBrowser.js + [webpack.Progress] 67% building 1260/1314 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Description.js + [webpack.Progress] 67% building 1260/1315 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/index.js + [webpack.Progress] 67% building 1261/1315 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/index.js + [webpack.Progress] 67% building 1262/1315 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/index.js + [webpack.Progress] 67% building 1263/1315 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/index.js + [webpack.Progress] 67% building 1263/1316 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/IconGallery.js + [webpack.Progress] 67% building 1264/1316 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/IconGallery.js + [webpack.Progress] 67% building 1264/1317 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ColorPalette.js + [webpack.Progress] 67% building 1265/1317 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ColorPalette.js + [webpack.Progress] 67% building 1266/1317 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ColorPalette.js + [webpack.Progress] 67% building 1266/1318 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/createWithBsPrefix.js + [webpack.Progress] 67% building 1266/1319 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/getTabTransitionComponent.js + [webpack.Progress] 67% building 1266/1320 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/createUtilityClasses.js + [webpack.Progress] 67% building 1266/1321 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1267/1321 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1268/1321 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1269/1321 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1270/1321 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1271/1321 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1272/1321 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1273/1321 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stable/stable.js + [webpack.Progress] 67% building 1273/1322 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/store2/dist/store2.js + [webpack.Progress] 67% building 1274/1322 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/store2/dist/store2.js + [webpack.Progress] 67% building 1275/1322 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/store2/dist/store2.js + [webpack.Progress] 67% building 1275/1323 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 67% building 1276/1323 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 67% building 1277/1323 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 67% building 1278/1323 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1279/1323 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1280/1323 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1281/1323 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1282/1323 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1283/1323 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1284/1323 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1285/1323 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1286/1323 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1287/1323 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1288/1323 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1289/1323 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1290/1323 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@fortawesome/free-brands-svg-icons/index.es.js + [webpack.Progress] 68% building 1290/1324 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/airbnb-js-shims/target/es2020.js + [webpack.Progress] 68% building 1290/1325 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/diffie-hellman/lib/primes.json + [webpack.Progress] 68% building 1290/1326 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1291/1326 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1292/1326 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1293/1326 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1294/1326 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1295/1326 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/addon.js + [webpack.Progress] 68% building 1295/1327 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/index.js + [webpack.Progress] 68% building 1296/1327 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/index.js + [webpack.Progress] 68% building 1297/1327 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/index.js + [webpack.Progress] 68% building 1297/1328 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/flatten.js + [webpack.Progress] 68% building 1297/1329 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setToString.js + [webpack.Progress] 68% building 1298/1329 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setToString.js + [webpack.Progress] 68% building 1299/1329 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setToString.js + [webpack.Progress] 68% building 1299/1330 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableSortLabel.scss + [webpack.Progress] 68% building 1300/1330 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_setToString.js + [webpack.Progress] 68% building 1300/1331 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableSortLabel.scss + [webpack.Progress] 68% building 1300/1332 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableRow.scss + [webpack.Progress] 68% building 1301/1332 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableSortLabel.scss + [webpack.Progress] 68% building 1301/1333 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableRow.scss + [webpack.Progress] 68% building 1301/1334 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/lib/encode.js + [webpack.Progress] 68% building 1301/1335 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/lib/decode.js + [webpack.Progress] 68% building 1301/1336 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/diffie-hellman/lib/generatePrime.js + [webpack.Progress] 68% building 1301/1337 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/diffie-hellman/lib/dh.js + [webpack.Progress] 68% building 1301/1338 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_overRest.js + [webpack.Progress] 68% building 1301/1339 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.jsx + [webpack.Progress] 68% building 1301/1340 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pills.jsx + [webpack.Progress] 68% building 1301/1341 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/escodegen/escodegen.js + [webpack.Progress] 68% building 1301/1342 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/utils.js + [webpack.Progress] 68% building 1301/1343 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButton/CheckboxButton.jsx + [webpack.Progress] 68% building 1301/1344 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/stylis/dist/stylis.browser.esm.js + [webpack.Progress] 68% building 1302/1344 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/stylis/dist/stylis.browser.esm.js + [webpack.Progress] 68% building 1302/1345 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/implementation.js + [webpack.Progress] 68% building 1303/1345 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/implementation.js + [webpack.Progress] 68% building 1304/1345 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.values/implementation.js + [webpack.Progress] 68% building 1304/1346 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Wrapper.js + [webpack.Progress] 68% building 1304/1347 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Image.js + [webpack.Progress] 68% building 1304/1348 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/IFrame.js + [webpack.Progress] 67% building 1304/1349 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Figspec.js + [webpack.Progress] 67% building 1304/1350 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Figma.js + [webpack.Progress] 68% building 1305/1350 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Figma.js + [webpack.Progress] 67% building 1305/1351 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavItem.js + [webpack.Progress] 67% building 1305/1352 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/shim.js + [webpack.Progress] 67% building 1305/1353 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavLink.js + [webpack.Progress] 67% building 1305/1354 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Nav.js + [webpack.Progress] 67% building 1305/1355 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hoist-non-react-statics/node_modules/react-is/index.js + [webpack.Progress] 67% building 1305/1356 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.getownpropertydescriptors/implementation.js + [webpack.Progress] 67% building 1305/1357 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padend/implementation.js + [webpack.Progress] 67% building 1305/1358 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/auto.js + [webpack.Progress] 67% building 1305/1359 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.fromentries/auto.js + [webpack.Progress] 67% building 1305/1360 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.padstart/implementation.js + [webpack.Progress] 67% building 1305/1361 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/implementation.js + [webpack.Progress] 67% building 1306/1361 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/implementation.js + [webpack.Progress] 67% building 1307/1361 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.entries/implementation.js + [webpack.Progress] 67% building 1307/1362 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ToastFade.js + [webpack.Progress] 67% building 1307/1363 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js + [webpack.Progress] 67% building 1308/1363 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js + [webpack.Progress] 67% building 1308/1364 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Typeset.js + [webpack.Progress] 67% building 1308/1365 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/IFrame.js + [webpack.Progress] 67% building 1309/1365 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/IFrame.js + [webpack.Progress] 67% building 1309/1366 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-des/modes.js + [webpack.Progress] 67% building 1309/1367 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1310/1367 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1311/1367 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1311/1368 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Fade.js + [webpack.Progress] 67% building 1312/1368 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Fade.js + [webpack.Progress] 67% building 1313/1368 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Fade.js + [webpack.Progress] 67% building 1314/1368 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Fade.js + [webpack.Progress] 67% building 1314/1369 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/BlockBackgroundStyles.js + [webpack.Progress] 67% building 1314/1370 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/html-tags/index.js + [webpack.Progress] 67% building 1314/1371 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Story.js + [webpack.Progress] 67% building 1315/1371 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Story.js + [webpack.Progress] 67% building 1316/1371 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Story.js + [webpack.Progress] 67% building 1316/1372 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Source.js + [webpack.Progress] 67% building 1317/1372 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Source.js + [webpack.Progress] 67% building 1318/1372 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Source.js + [webpack.Progress] 67% building 1318/1373 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1319/1373 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1320/1373 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1321/1373 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1322/1373 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1323/1373 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1324/1373 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/auto.js + [webpack.Progress] 67% building 1324/1374 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Preview.js + [webpack.Progress] 67% building 1325/1374 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Preview.js + [webpack.Progress] 67% building 1325/1375 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + [webpack.Progress] 67% building 1325/1376 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/utils/dist/emotion-utils.browser.esm.js + [webpack.Progress] 67% building 1326/1376 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/utils/dist/emotion-utils.browser.esm.js + [webpack.Progress] 67% building 1327/1376 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/utils/dist/emotion-utils.browser.esm.js + [webpack.Progress] 67% building 1327/1377 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/auto.js + [webpack.Progress] 67% building 1327/1378 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 67% building 1328/1378 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 67% building 1329/1378 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 67% building 1330/1378 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 67% building 1331/1378 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 67% building 1332/1378 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1333/1378 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1334/1378 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1335/1378 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1336/1378 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1337/1378 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1338/1378 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1339/1378 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1340/1378 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1340/1379 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js + [webpack.Progress] 68% building 1340/1380 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.jsx + [webpack.Progress] 68% building 1340/1381 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1340/1382 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/escodegen/package.json + [webpack.Progress] 68% building 1341/1382 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1342/1382 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1343/1382 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1344/1382 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1345/1382 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1346/1382 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/FormControlLabel/FormControlLabel.jsx + [webpack.Progress] 68% building 1346/1383 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/xml.json + [webpack.Progress] 68% building 1346/1384 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1347/1384 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1348/1384 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1349/1384 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1350/1384 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1351/1384 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/entities.json + [webpack.Progress] 68% building 1351/1385 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/overlayscrollbars/js/OverlayScrollbars.js + [webpack.Progress] 68% building 1352/1385 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/overlayscrollbars/js/OverlayScrollbars.js + [webpack.Progress] 68% building 1352/1386 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseFlatten.js + [webpack.Progress] 68% building 1352/1387 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseSetToString.js + [webpack.Progress] 68% building 1352/1388 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/Input.jsx + [webpack.Progress] 68% building 1353/1388 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/Input.jsx + [webpack.Progress] 68% building 1353/1389 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/hoc/withTrackedClick.jsx + [webpack.Progress] 68% building 1354/1389 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/hoc/withTrackedClick.jsx + [webpack.Progress] 68% building 1355/1389 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/hoc/withTrackedClick.jsx + [webpack.Progress] 68% building 1355/1390 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js + [webpack.Progress] 68% building 1355/1391 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_apply.js + [webpack.Progress] 68% building 1355/1392 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/lib/decode_codepoint.js + [webpack.Progress] 68% building 1356/1392 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/lib/decode_codepoint.js + [webpack.Progress] 68% building 1356/1393 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/html-tags/html-tags.json + [webpack.Progress] 68% building 1356/1394 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Tabs.js + [webpack.Progress] 68% building 1356/1395 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/ZoomButtons.js + [webpack.Progress] 68% building 1356/1396 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/Pan.js + [webpack.Progress] 68% building 1356/1397 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/LinkPanel.js + [webpack.Progress] 68% building 1356/1398 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/requirePromise.js + [webpack.Progress] 68% building 1356/1399 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardHeaderContext.js + [webpack.Progress] 68% building 1356/1400 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pills.scss + [webpack.Progress] 68% building 1357/1400 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardHeaderContext.js + [webpack.Progress] 68% building 1357/1401 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pills.scss + [webpack.Progress] 68% building 1357/1402 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateDataProperty.js + [webpack.Progress] 68% building 1357/1403 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/shim.js + [webpack.Progress] 68% building 1358/1403 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/shim.js + [webpack.Progress] 68% building 1359/1403 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/shim.js + [webpack.Progress] 68% building 1359/1404 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/auto.js + [webpack.Progress] 68% building 1359/1405 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.fromentries/shim.js + [webpack.Progress] 67% building 1359/1406 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/auto.js + [webpack.Progress] 67% building 1359/1407 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/auto.js + [webpack.Progress] 67% building 1359/1408 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.scss + [webpack.Progress] 67% building 1360/1408 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/auto.js + [webpack.Progress] 67% building 1360/1409 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.scss + [webpack.Progress] 67% building 1361/1409 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.scss + [webpack.Progress] 67% building 1361/1410 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToString.js + [webpack.Progress] 67% building 1362/1410 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToString.js + [webpack.Progress] 67% building 1362/1411 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarContext.js + [webpack.Progress] 67% building 1363/1411 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarContext.js + [webpack.Progress] 67% building 1363/1412 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/hooks/useZoom.js + [webpack.Progress] 67% building 1363/1413 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/legacy.json + [webpack.Progress] 67% building 1363/1414 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/polyfill.js + [webpack.Progress] 67% building 1364/1414 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/polyfill.js + [webpack.Progress] 67% building 1365/1414 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/polyfill.js + [webpack.Progress] 67% building 1365/1415 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-des/index.js + [webpack.Progress] 67% building 1366/1415 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-des/index.js + [webpack.Progress] 67% building 1367/1415 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/browserify-des/index.js + [webpack.Progress] 67% building 1367/1416 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ZoomContext.js + [webpack.Progress] 67% building 1367/1417 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/prism-light.js + [webpack.Progress] 67% building 1367/1418 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/EmptyBlock.js + [webpack.Progress] 67% building 1367/1419 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/TabPanel.js + [webpack.Progress] 67% building 1367/1420 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Tabs.js + [webpack.Progress] 67% building 1367/1421 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/TabContext.js + [webpack.Progress] 67% building 1367/1422 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/SelectableContext.js + [webpack.Progress] 67% building 1367/1423 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/NoopTransition.js + [webpack.Progress] 67% building 1367/1424 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/shim.js + [webpack.Progress] 67% building 1368/1424 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/shim.js + [webpack.Progress] 67% building 1369/1424 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/shim.js + [webpack.Progress] 67% building 1370/1424 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/shim.js + [webpack.Progress] 67% building 1371/1424 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/shim.js + [webpack.Progress] 67% building 1371/1425 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/copy-to-clipboard/index.js + [webpack.Progress] 67% building 1372/1425 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/copy-to-clipboard/index.js + [webpack.Progress] 67% building 1373/1425 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/copy-to-clipboard/index.js + [webpack.Progress] 67% building 1373/1426 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/shim.js + [webpack.Progress] 67% building 1373/1427 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1374/1427 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1375/1427 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1376/1427 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1377/1427 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1378/1427 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 67% building 1379/1427 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 68% building 1380/1427 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 68% building 1381/1427 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 68% building 1382/1427 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 68% building 1383/1427 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Button.js + [webpack.Progress] 68% building 1383/1428 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/decode.json + [webpack.Progress] 68% building 1384/1428 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/entities/maps/decode.json + [webpack.Progress] 68% building 1384/1429 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Toolbar.js + [webpack.Progress] 68% building 1385/1429 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/Toolbar.js + [webpack.Progress] 68% building 1385/1430 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_shortOut.js + [webpack.Progress] 68% building 1386/1430 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_shortOut.js + [webpack.Progress] 68% building 1386/1431 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/types.js + [webpack.Progress] 68% building 1386/1432 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useTimeout.js + [webpack.Progress] 68% building 1387/1432 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useTimeout.js + [webpack.Progress] 68% building 1388/1432 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useTimeout.js + [webpack.Progress] 68% building 1388/1433 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.scss + [webpack.Progress] 68% building 1389/1433 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useTimeout.js + [webpack.Progress] 68% building 1389/1434 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.scss + [webpack.Progress] 68% building 1390/1434 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.scss + [webpack.Progress] 68% building 1391/1434 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.scss + [webpack.Progress] 68% building 1391/1435 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/inspectValue.js + [webpack.Progress] 68% building 1391/1436 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/registerKnobs.js + [webpack.Progress] 68% building 1391/1437 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1392/1437 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1393/1437 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1394/1437 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1395/1437 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1396/1437 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1397/1437 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1398/1437 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1399/1437 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1400/1437 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1400/1438 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_control_label.scss + [webpack.Progress] 68% building 1401/1438 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/camelize.js + [webpack.Progress] 68% building 1401/1439 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_control_label.scss + [webpack.Progress] 68% building 1402/1439 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_control_label.scss + [webpack.Progress] 68% building 1403/1439 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/scss/forms/form_control_label.scss + [webpack.Progress] 68% building 1403/1440 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/shared.js + [webpack.Progress] 68% building 1403/1441 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_isFlattenable.js + [webpack.Progress] 68% building 1403/1442 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1404/1442 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1405/1442 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1406/1442 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1407/1442 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1408/1442 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/constant.js + [webpack.Progress] 68% building 1408/1443 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js + [webpack.Progress] 68% building 1408/1444 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/Input.scss + [webpack.Progress] 68% building 1409/1444 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js + [webpack.Progress] 68% building 1409/1445 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Input/Input.scss + [webpack.Progress] 68% building 1409/1446 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/storybook-addon-designs/esm/register/components/hooks/usePan.js + [webpack.Progress] 68% building 1409/1447 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/markdown-to-jsx/dist/index.module.js + [webpack.Progress] 68% building 1409/1448 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Type.js + [webpack.Progress] 68% building 1410/1448 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Type.js + [webpack.Progress] 68% building 1411/1448 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Type.js + [webpack.Progress] 68% building 1412/1448 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Type.js + [webpack.Progress] 68% building 1412/1449 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/shim.js + [webpack.Progress] 68% building 1412/1450 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.fromentries/polyfill.js + [webpack.Progress] 68% building 1412/1451 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/shim.js + [webpack.Progress] 68% building 1412/1452 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/shim.js + [webpack.Progress] 68% building 1413/1452 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/shim.js + [webpack.Progress] 68% building 1413/1453 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typescript.js + [webpack.Progress] 68% building 1413/1454 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tsx.js + [webpack.Progress] 68% building 1413/1455 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yaml.js + [webpack.Progress] 68% building 1413/1456 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markdown.js + [webpack.Progress] 68% building 1413/1457 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup.js + [webpack.Progress] 68% building 1413/1458 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/graphql.js + [webpack.Progress] 68% building 1413/1459 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json.js + [webpack.Progress] 68% building 1413/1460 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-extras.js + [webpack.Progress] 68% building 1413/1461 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css.js + [webpack.Progress] 67% building 1413/1462 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bash.js + [webpack.Progress] 67% building 1413/1463 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsx.js + [webpack.Progress] 67% building 1414/1463 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsx.js + [webpack.Progress] 67% building 1414/1464 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/polyfill.js + [webpack.Progress] 67% building 1414/1465 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/SameValue.js + [webpack.Progress] 67% building 1415/1465 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/SameValue.js + [webpack.Progress] 67% building 1415/1466 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsPropertyKey.js + [webpack.Progress] 67% building 1415/1467 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsExtensible.js + [webpack.Progress] 67% building 1415/1468 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.prototype.finally/implementation.js + [webpack.Progress] 67% building 1415/1469 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsDataDescriptor.js + [webpack.Progress] 67% building 1415/1470 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/interopRequireDefault.js + [webpack.Progress] 67% building 1416/1470 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/interopRequireDefault.js + [webpack.Progress] 67% building 1416/1471 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/ssr.js + [webpack.Progress] 67% building 1416/1472 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getInferredName.js + [webpack.Progress] 67% building 1417/1472 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getInferredName.js + [webpack.Progress] 67% building 1418/1472 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getInferredName.js + [webpack.Progress] 67% building 1418/1473 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/polyfill.js + [webpack.Progress] 67% building 1419/1473 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/polyfill.js + [webpack.Progress] 67% building 1420/1473 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/polyfill.js + [webpack.Progress] 67% building 1421/1473 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/polyfill.js + [webpack.Progress] 67% building 1421/1474 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types-extra/lib/all.js + [webpack.Progress] 67% building 1421/1475 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-element-cbed451f.browser.esm.js + [webpack.Progress] 67% building 1422/1475 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-element-cbed451f.browser.esm.js + [webpack.Progress] 67% building 1423/1475 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/dist/emotion-element-cbed451f.browser.esm.js + [webpack.Progress] 67% building 1423/1476 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/polyfill.js + [webpack.Progress] 67% building 1423/1477 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 67% building 1424/1477 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 67% building 1425/1477 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 67% building 1426/1477 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 67% building 1427/1477 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1428/1477 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1429/1477 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1430/1477 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1431/1477 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1432/1477 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1433/1477 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1434/1477 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/estraverse/estraverse.js + [webpack.Progress] 68% building 1434/1478 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/source-map.js + [webpack.Progress] 68% building 1435/1478 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/source-map.js + [webpack.Progress] 68% building 1436/1478 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/source-map.js + [webpack.Progress] 68% building 1437/1478 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/source-map.js + [webpack.Progress] 68% building 1437/1479 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/highlight.js + [webpack.Progress] 68% building 1438/1479 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/highlight.js + [webpack.Progress] 68% building 1439/1479 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/highlight.js + [webpack.Progress] 68% building 1439/1480 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js + [webpack.Progress] 68% building 1439/1481 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useWillUnmount.js + [webpack.Progress] 68% building 1440/1481 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useWillUnmount.js + [webpack.Progress] 68% building 1440/1482 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Nav.js + [webpack.Progress] 68% building 1440/1483 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/NavItem.js + [webpack.Progress] 68% building 1440/1484 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Anchor.js + [webpack.Progress] 68% building 1440/1485 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useMounted.js + [webpack.Progress] 68% building 1440/1486 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/FromPropertyDescriptor.js + [webpack.Progress] 68% building 1440/1487 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/DefineOwnProperty.js + [webpack.Progress] 68% building 1441/1487 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/DefineOwnProperty.js + [webpack.Progress] 68% building 1441/1488 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobManager.js + [webpack.Progress] 68% building 1442/1488 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobManager.js + [webpack.Progress] 68% building 1443/1488 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobManager.js + [webpack.Progress] 68% building 1443/1489 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableCell.jsx + [webpack.Progress] 68% building 1444/1489 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableCell.jsx + [webpack.Progress] 68% building 1444/1490 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/core.js + [webpack.Progress] 68% building 1444/1491 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/acornParser.js + [webpack.Progress] 68% building 1445/1491 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/acornParser.js + [webpack.Progress] 68% building 1445/1492 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js + [webpack.Progress] 68% building 1446/1492 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js + [webpack.Progress] 68% building 1447/1492 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js + [webpack.Progress] 68% building 1448/1492 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js + [webpack.Progress] 68% building 1449/1492 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js + [webpack.Progress] 68% building 1449/1493 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableBody.jsx + [webpack.Progress] 68% building 1450/1493 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableBody.jsx + [webpack.Progress] 68% building 1451/1493 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableBody.jsx + [webpack.Progress] 68% building 1451/1494 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/miller-rabin/lib/mr.js + [webpack.Progress] 68% building 1452/1494 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/miller-rabin/lib/mr.js + [webpack.Progress] 68% building 1452/1495 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/SSRProvider.js + [webpack.Progress] 68% building 1452/1496 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/jsx.js + [webpack.Progress] 68% building 1452/1497 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/bash.js + [webpack.Progress] 68% building 1452/1498 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/css.js + [webpack.Progress] 68% building 1452/1499 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/js-extras.js + [webpack.Progress] 68% building 1452/1500 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/json.js + [webpack.Progress] 68% building 1452/1501 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/graphql.js + [webpack.Progress] 68% building 1452/1502 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/markup.js + [webpack.Progress] 67% building 1452/1503 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/markdown.js + [webpack.Progress] 67% building 1452/1504 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/yaml.js + [webpack.Progress] 67% building 1452/1505 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/tsx.js + [webpack.Progress] 67% building 1452/1506 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/typescript.js + [webpack.Progress] 67% building 1452/1507 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 67% building 1453/1507 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 67% building 1454/1507 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 67% building 1455/1507 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 67% building 1456/1507 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 68% building 1457/1507 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 68% building 1458/1507 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js + [webpack.Progress] 68% building 1458/1508 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/react/esm/es2015/index.js + [webpack.Progress] 67% building 1458/1509 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/NoControlsWarning.js + [webpack.Progress] 67% building 1458/1510 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/TabbedArgsTable.js + [webpack.Progress] 67% building 1458/1511 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/Type.js + [webpack.Progress] 67% building 1459/1511 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/5/Type.js + [webpack.Progress] 67% building 1459/1512 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/object.fromentries/implementation.js + [webpack.Progress] 67% building 1459/1513 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/requirePromise.js + [webpack.Progress] 67% building 1459/1514 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1460/1514 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1461/1514 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/memoize/dist/emotion-memoize.browser.esm.js + [webpack.Progress] 67% building 1461/1515 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/implementation.js + [webpack.Progress] 67% building 1462/1515 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flat/implementation.js + [webpack.Progress] 67% building 1462/1516 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/assertRecord.js + [webpack.Progress] 67% building 1462/1517 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/polyfill.js + [webpack.Progress] 67% building 1462/1518 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/polyfill.js + [webpack.Progress] 67% building 1463/1518 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/polyfill.js + [webpack.Progress] 67% building 1463/1519 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js + [webpack.Progress] 67% building 1464/1519 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js + [webpack.Progress] 67% building 1464/1520 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 67% building 1465/1520 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 67% building 1466/1520 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 67% building 1467/1520 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 67% building 1468/1520 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 67% building 1469/1520 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1470/1520 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1471/1520 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1472/1520 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1473/1520 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1474/1520 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1475/1520 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1476/1520 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/polyfill.js + [webpack.Progress] 68% building 1476/1521 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgsTable.js + [webpack.Progress] 68% building 1477/1521 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgsTable.js + [webpack.Progress] 68% building 1478/1521 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgsTable.js + [webpack.Progress] 68% building 1478/1522 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/Type.js + [webpack.Progress] 68% building 1478/1523 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/SpeciesConstructor.js + [webpack.Progress] 68% building 1478/1524 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsCallable.js + [webpack.Progress] 68% building 1479/1524 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsCallable.js + [webpack.Progress] 68% building 1479/1525 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/lib/index.js + [webpack.Progress] 68% building 1479/1526 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js + [webpack.Progress] 68% building 1479/1527 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/implementation.js + [webpack.Progress] 68% building 1480/1527 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/implementation.js + [webpack.Progress] 68% building 1481/1527 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/implementation.js + [webpack.Progress] 68% building 1482/1527 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.flatmap/implementation.js + [webpack.Progress] 68% building 1482/1528 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/symbol.prototype.description/implementation.js + [webpack.Progress] 68% building 1482/1529 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useEventCallback.js + [webpack.Progress] 68% building 1483/1529 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useEventCallback.js + [webpack.Progress] 68% building 1484/1529 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useEventCallback.js + [webpack.Progress] 68% building 1484/1530 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/checkForListedLanguage.js + [webpack.Progress] 68% building 1484/1531 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToPropertyDescriptor.js + [webpack.Progress] 68% building 1484/1532 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsRegExp.js + [webpack.Progress] 68% building 1484/1533 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1485/1533 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1486/1533 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1487/1533 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1487/1534 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prop-types-extra/lib/utils/createChainableTypeChecker.js + [webpack.Progress] 68% building 1487/1535 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DataKey.js + [webpack.Progress] 68% building 1488/1535 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DataKey.js + [webpack.Progress] 68% building 1489/1535 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DataKey.js + [webpack.Progress] 68% building 1490/1535 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DataKey.js + [webpack.Progress] 68% building 1490/1536 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1491/1536 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1492/1536 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1493/1536 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1494/1536 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1495/1536 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1496/1536 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1497/1536 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1498/1536 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-generator.js + [webpack.Progress] 68% building 1498/1537 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/index.js + [webpack.Progress] 68% building 1499/1537 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/index.js + [webpack.Progress] 68% building 1500/1537 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/index.js + [webpack.Progress] 68% building 1500/1538 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableCell.scss + [webpack.Progress] 68% building 1501/1538 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Avatar/index.js + [webpack.Progress] 68% building 1501/1539 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Table/TableCell.scss + [webpack.Progress] 68% building 1501/1540 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/implementation.browser.js + [webpack.Progress] 68% building 1502/1540 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/implementation.browser.js + [webpack.Progress] 68% building 1503/1540 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/implementation.browser.js + [webpack.Progress] 68% building 1504/1540 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/globalthis/implementation.browser.js + [webpack.Progress] 68% building 1504/1541 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/toggle-selection/index.js + [webpack.Progress] 68% building 1505/1541 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/toggle-selection/index.js + [webpack.Progress] 68% building 1505/1542 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/javascript.js + [webpack.Progress] 68% building 1505/1543 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/refractor/lang/clike.js + [webpack.Progress] 68% building 1505/1544 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/converters.js + [webpack.Progress] 68% building 1505/1545 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobStore.js + [webpack.Progress] 68% building 1506/1545 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobStore.js + [webpack.Progress] 68% building 1507/1545 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobStore.js + [webpack.Progress] 68% building 1508/1545 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-knobs/dist/esm/KnobStore.js + [webpack.Progress] 68% building 1508/1546 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/AddEntriesFromIterable.js + [webpack.Progress] 68% building 1508/1547 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToPropertyKey.js + [webpack.Progress] 68% building 1508/1548 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js + [webpack.Progress] 68% building 1508/1549 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ArraySpeciesCreate.js + [webpack.Progress] 68% building 1508/1550 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/index.js + [webpack.Progress] 68% building 1508/1551 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Get.js + [webpack.Progress] 68% building 1508/1552 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/FlattenIntoArray.js + [webpack.Progress] 68% building 1509/1552 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/FlattenIntoArray.js + [webpack.Progress] 68% building 1509/1553 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/promise.allsettled/implementation.js + [webpack.Progress] 68% building 1509/1554 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/NavContext.js + [webpack.Progress] 68% building 1509/1555 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des.js + [webpack.Progress] 68% building 1510/1555 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des.js + [webpack.Progress] 68% building 1510/1556 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/regexp-matchall.js + [webpack.Progress] 68% building 1510/1557 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/implementation.js + [webpack.Progress] 68% building 1511/1557 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/implementation.js + [webpack.Progress] 68% building 1512/1557 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/implementation.js + [webpack.Progress] 68% building 1513/1557 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/implementation.js + [webpack.Progress] 68% building 1514/1557 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/implementation.js + [webpack.Progress] 68% building 1514/1558 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/SectionRow.js + [webpack.Progress] 68% building 1514/1559 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js + [webpack.Progress] 68% building 1514/1560 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsConstructor.js + [webpack.Progress] 68% building 1514/1561 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createDefaultValue.js + [webpack.Progress] 68% building 1514/1562 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js + [webpack.Progress] 68% building 1515/1562 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js + [webpack.Progress] 68% building 1516/1562 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js + [webpack.Progress] 68% building 1517/1562 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js + [webpack.Progress] 68% building 1517/1563 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/util/node_modules/inherits/inherits_browser.js + [webpack.Progress] 68% building 1517/1564 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getSymbolDescription.js + [webpack.Progress] 68% building 1517/1565 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsArray.js + [webpack.Progress] 68% building 1517/1566 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useCommittedRef.js + [webpack.Progress] 68% building 1518/1566 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useCommittedRef.js + [webpack.Progress] 68% building 1518/1567 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stylis/dist/stylis.mjs + [webpack.Progress] 68% building 1519/1567 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/stylis/dist/stylis.mjs + [webpack.Progress] 68% building 1519/1568 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js + [webpack.Progress] 68% building 1520/1568 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js + [webpack.Progress] 68% building 1520/1569 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToBoolean.js + [webpack.Progress] 68% building 1520/1570 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/create-element.js + [webpack.Progress] 68% building 1521/1570 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/create-element.js + [webpack.Progress] 68% building 1522/1570 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/create-element.js + [webpack.Progress] 68% building 1523/1570 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-syntax-highlighter/dist/cjs/create-element.js + [webpack.Progress] 68% building 1523/1571 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/prismjs/components/prism-core.js + [webpack.Progress] 68% building 1523/1572 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/objectSpread.js + [webpack.Progress] 68% building 1523/1573 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-node.js + [webpack.Progress] 68% building 1523/1574 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-consumer.js + [webpack.Progress] 68% building 1524/1574 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/source-map-consumer.js + [webpack.Progress] 68% building 1524/1575 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js + [webpack.Progress] 68% building 1525/1575 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js + [webpack.Progress] 68% building 1526/1575 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.js + [webpack.Progress] 68% building 1526/1576 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1527/1576 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1528/1576 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1529/1576 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1530/1576 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1531/1576 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64-vlq.js + [webpack.Progress] 68% building 1531/1577 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/mapping-list.js + [webpack.Progress] 68% building 1532/1577 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/mapping-list.js + [webpack.Progress] 68% building 1532/1578 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/array-set.js + [webpack.Progress] 68% building 1533/1578 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/array-set.js + [webpack.Progress] 68% building 1534/1578 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/array-set.js + [webpack.Progress] 68% building 1534/1579 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/util.js + [webpack.Progress] 68% building 1535/1579 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/util.js + [webpack.Progress] 68% building 1536/1579 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/util.js + [webpack.Progress] 68% building 1536/1580 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/SplitButton.js + [webpack.Progress] 68% building 1536/1581 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Spinner.js + [webpack.Progress] 68% building 1536/1582 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Row.js + [webpack.Progress] 68% building 1537/1582 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Row.js + [webpack.Progress] 68% building 1538/1582 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Row.js + [webpack.Progress] 68% building 1539/1582 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Row.js + [webpack.Progress] 68% building 1539/1583 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Ratio.js + [webpack.Progress] 68% building 1540/1583 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Ratio.js + [webpack.Progress] 68% building 1540/1584 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ProgressBar.js + [webpack.Progress] 68% building 1540/1585 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverBody.js + [webpack.Progress] 68% building 1541/1585 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverBody.js + [webpack.Progress] 68% building 1542/1585 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverBody.js + [webpack.Progress] 68% building 1543/1585 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverBody.js + [webpack.Progress] 68% building 1544/1585 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverBody.js + [webpack.Progress] 68% building 1544/1586 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/GetIntrinsic.js + [webpack.Progress] 68% building 1545/1586 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/GetIntrinsic.js + [webpack.Progress] 68% building 1546/1586 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/GetIntrinsic.js + [webpack.Progress] 68% building 1546/1587 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IteratorValue.js + [webpack.Progress] 68% building 1546/1588 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IteratorStep.js + [webpack.Progress] 68% building 1546/1589 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IteratorClose.js + [webpack.Progress] 68% building 1546/1590 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/GetIterator.js + [webpack.Progress] 68% building 1546/1591 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsInteger.js + [webpack.Progress] 68% building 1547/1591 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsInteger.js + [webpack.Progress] 68% building 1548/1591 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsInteger.js + [webpack.Progress] 68% building 1548/1592 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@react-aria/ssr/dist/module.js + [webpack.Progress] 68% building 1548/1593 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.define-property.js + [webpack.Progress] 68% building 1548/1594 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/useTracking.js + [webpack.Progress] 68% building 1549/1594 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/useTracking.js + [webpack.Progress] 68% building 1549/1595 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/TrackingPropType.js + [webpack.Progress] 68% building 1549/1596 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/LengthOfArrayLike.js + [webpack.Progress] 68% building 1550/1596 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/LengthOfArrayLike.js + [webpack.Progress] 68% building 1551/1596 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/LengthOfArrayLike.js + [webpack.Progress] 68% building 1552/1596 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/LengthOfArrayLike.js + [webpack.Progress] 68% building 1552/1597 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/PromiseResolve.js + [webpack.Progress] 68% building 1553/1597 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/PromiseResolve.js + [webpack.Progress] 68% building 1553/1598 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Call.js + [webpack.Progress] 68% building 1554/1598 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Call.js + [webpack.Progress] 68% building 1555/1598 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Call.js + [webpack.Progress] 68% building 1555/1599 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/GetMethod.js + [webpack.Progress] 68% building 1555/1600 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgControl.js + [webpack.Progress] 68% building 1556/1600 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgControl.js + [webpack.Progress] 68% building 1556/1601 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js + [webpack.Progress] 68% building 1557/1601 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js + [webpack.Progress] 68% building 1558/1601 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js + [webpack.Progress] 68% building 1559/1601 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js + [webpack.Progress] 68% building 1560/1601 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js + [webpack.Progress] 68% building 1560/1602 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateObject.js + [webpack.Progress] 68% building 1560/1603 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/utils.js + [webpack.Progress] 68% building 1560/1604 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/ede.js + [webpack.Progress] 68% building 1560/1605 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js + [webpack.Progress] 68% building 1560/1606 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-walk/dist/walk.mjs + [webpack.Progress] 68% building 1561/1606 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-walk/dist/walk.mjs + [webpack.Progress] 68% building 1562/1606 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-walk/dist/walk.mjs + [webpack.Progress] 68% building 1563/1606 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-walk/dist/walk.mjs + [webpack.Progress] 68% building 1563/1607 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/index.js + [webpack.Progress] 68% building 1563/1608 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/DefinePropertyOrThrow.js + [webpack.Progress] 68% building 1564/1608 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/DefinePropertyOrThrow.js + [webpack.Progress] 68% building 1564/1609 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgValue.js + [webpack.Progress] 68% building 1565/1609 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgValue.js + [webpack.Progress] 68% building 1565/1610 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgJsDoc.js + [webpack.Progress] 68% building 1565/1611 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/SpeciesConstructor.js + [webpack.Progress] 68% building 1565/1612 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Set.js + [webpack.Progress] 68% building 1566/1612 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Set.js + [webpack.Progress] 68% building 1566/1613 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn/dist/acorn.mjs + [webpack.Progress] 68% building 1566/1614 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/cbc.js + [webpack.Progress] 68% building 1567/1614 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/cbc.js + [webpack.Progress] 68% building 1567/1615 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/des.js + [webpack.Progress] 68% building 1567/1616 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/quick-sort.js + [webpack.Progress] 68% building 1567/1617 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/binary-search.js + [webpack.Progress] 68% building 1567/1618 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/des.js/lib/des/cipher.js + [webpack.Progress] 68% building 1567/1619 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/HasProperty.js + [webpack.Progress] 68% building 1568/1619 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/HasProperty.js + [webpack.Progress] 68% building 1568/1620 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hastscript/index.js + [webpack.Progress] 68% building 1568/1621 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/source-map/lib/base64.js + [webpack.Progress] 68% building 1568/1622 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/querySelectorAll.js + [webpack.Progress] 67% building 1568/1623 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-jsx/index.js + [webpack.Progress] 68% building 1569/1623 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-jsx/index.js + [webpack.Progress] 68% building 1570/1623 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-jsx/index.js + [webpack.Progress] 68% building 1571/1623 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-jsx/index.js + [webpack.Progress] 68% building 1571/1624 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/trackEventMethodDecorator.js + [webpack.Progress] 68% building 1571/1625 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventCallback.js + [webpack.Progress] 67% building 1571/1626 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/withTrackingComponentDecorator.js + [webpack.Progress] 68% building 1572/1626 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/withTrackingComponentDecorator.js + [webpack.Progress] 68% building 1573/1626 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/withTrackingComponentDecorator.js + [webpack.Progress] 68% building 1574/1626 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/withTrackingComponentDecorator.js + [webpack.Progress] 68% building 1574/1627 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/trackingHoC.js + [webpack.Progress] 68% building 1575/1627 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/trackingHoC.js + [webpack.Progress] 68% building 1575/1628 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsConstructor.js + [webpack.Progress] 68% building 1575/1629 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/types.js + [webpack.Progress] 67% building 1575/1630 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Dropdown.js + [webpack.Progress] 68% building 1576/1630 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Dropdown.js + [webpack.Progress] 67% building 1576/1631 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMergedRefs.js + [webpack.Progress] 67% building 1576/1632 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/index.js + [webpack.Progress] 67% building 1576/1633 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/escape-html/index.js + [webpack.Progress] 67% building 1577/1633 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/escape-html/index.js + [webpack.Progress] 67% building 1577/1634 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/index.js + [webpack.Progress] 67% building 1578/1634 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/index.js + [webpack.Progress] 67% building 1578/1635 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 67% building 1579/1635 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 67% building 1580/1635 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1581/1635 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1582/1635 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1583/1635 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1584/1635 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1585/1635 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1586/1635 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1587/1635 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1588/1635 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1589/1635 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js + [webpack.Progress] 68% building 1589/1636 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PopoverHeader.js + [webpack.Progress] 68% building 1589/1637 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Popover.js + [webpack.Progress] 68% building 1590/1637 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Popover.js + [webpack.Progress] 68% building 1591/1637 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Popover.js + [webpack.Progress] 68% building 1591/1638 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PlaceholderButton.js + [webpack.Progress] 68% building 1592/1638 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PlaceholderButton.js + [webpack.Progress] 68% building 1592/1639 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IteratorComplete.js + [webpack.Progress] 68% building 1592/1640 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IteratorNext.js + [webpack.Progress] 68% building 1592/1641 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/AdvanceStringIndex.js + [webpack.Progress] 68% building 1592/1642 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/getIteratorMethod.js + [webpack.Progress] 68% building 1592/1643 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/abs.js + [webpack.Progress] 68% building 1593/1643 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/abs.js + [webpack.Progress] 68% building 1594/1643 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/abs.js + [webpack.Progress] 68% building 1595/1643 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/abs.js + [webpack.Progress] 68% building 1595/1644 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/floor.js + [webpack.Progress] 68% building 1595/1645 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Placeholder.js + [webpack.Progress] 68% building 1595/1646 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/useTrackingImpl.js + [webpack.Progress] 68% building 1596/1646 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/useTrackingImpl.js + [webpack.Progress] 68% building 1596/1647 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1597/1647 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1598/1647 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1599/1647 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1600/1647 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1601/1647 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1602/1647 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1603/1647 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1604/1647 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/ReactTrackingContext.js + [webpack.Progress] 68% building 1604/1648 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/GetV.js + [webpack.Progress] 68% building 1604/1649 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Pagination.js + [webpack.Progress] 68% building 1604/1650 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isString.js + [webpack.Progress] 68% building 1605/1650 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/isString.js + [webpack.Progress] 68% building 1605/1651 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1606/1651 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1607/1651 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1608/1651 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1609/1651 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1610/1651 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1611/1651 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/PageItem.js + [webpack.Progress] 68% building 1611/1652 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OverlayTrigger.js + [webpack.Progress] 68% building 1612/1652 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OverlayTrigger.js + [webpack.Progress] 68% building 1612/1653 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Overlay.js + [webpack.Progress] 68% building 1613/1653 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Overlay.js + [webpack.Progress] 68% building 1614/1653 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Overlay.js + [webpack.Progress] 68% building 1615/1653 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Overlay.js + [webpack.Progress] 68% building 1615/1654 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useCallbackRef.js + [webpack.Progress] 68% building 1615/1655 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/ToPropertyDescriptor.js + [webpack.Progress] 68% building 1615/1656 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/SameValue.js + [webpack.Progress] 68% building 1616/1656 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/SameValue.js + [webpack.Progress] 68% building 1616/1657 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/uniq.js + [webpack.Progress] 68% building 1617/1657 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/uniq.js + [webpack.Progress] 68% building 1617/1658 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsPropertyKey.js + [webpack.Progress] 68% building 1617/1659 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsDataDescriptor.js + [webpack.Progress] 68% building 1617/1660 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/IsAccessorDescriptor.js + [webpack.Progress] 68% building 1617/1661 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/FromPropertyDescriptor.js + [webpack.Progress] 68% building 1617/1662 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isPropertyDescriptor.js + [webpack.Progress] 68% building 1617/1663 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useResizeObserver.js + [webpack.Progress] 68% building 1617/1664 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useImage.js + [webpack.Progress] 68% building 1617/1665 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/usePrevious.js + [webpack.Progress] 68% building 1617/1666 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMounted.js + [webpack.Progress] 68% building 1617/1667 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMergeStateFromProps.js + [webpack.Progress] 68% building 1617/1668 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMergeState.js + [webpack.Progress] 68% building 1617/1669 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useRafInterval.js + [webpack.Progress] 68% building 1617/1670 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useInterval.js + [webpack.Progress] 68% building 1617/1671 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hastscript/html.js + [webpack.Progress] 68% building 1617/1672 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useGlobalListener.js + [webpack.Progress] 67% building 1617/1673 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js + [webpack.Progress] 68% building 1618/1673 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js + [webpack.Progress] 68% building 1619/1673 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js + [webpack.Progress] 68% building 1620/1673 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js + [webpack.Progress] 68% building 1621/1673 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js + [webpack.Progress] 68% building 1621/1674 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useCommittedRef.js + [webpack.Progress] 68% building 1621/1675 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/index.js + [webpack.Progress] 68% building 1621/1676 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.function.bind.js + [webpack.Progress] 67% building 1621/1677 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/iterate-value/index.js + [webpack.Progress] 68% building 1622/1677 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/iterate-value/index.js + [webpack.Progress] 68% building 1623/1677 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/iterate-value/index.js + [webpack.Progress] 68% building 1623/1678 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/DefinePropertyOrThrow.js + [webpack.Progress] 67% building 1623/1679 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/InputGroupContext.js + [webpack.Progress] 67% building 1623/1680 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownToggle.js + [webpack.Progress] 68% building 1624/1680 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownToggle.js + [webpack.Progress] 67% building 1624/1681 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1625/1681 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1626/1681 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1627/1681 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1628/1681 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1629/1681 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1630/1681 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1631/1681 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1632/1681 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1633/1681 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1634/1681 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/index.js + [webpack.Progress] 68% building 1634/1682 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1635/1682 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1636/1682 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1637/1682 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1638/1682 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1639/1682 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1640/1682 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1641/1682 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1642/1682 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/parse-entities/decode-entity.browser.js + [webpack.Progress] 68% building 1642/1683 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownMenu.js + [webpack.Progress] 68% building 1643/1683 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownMenu.js + [webpack.Progress] 68% building 1643/1684 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownItem.js + [webpack.Progress] 68% building 1643/1685 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/usePlaceholder.js + [webpack.Progress] 68% building 1643/1686 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/acorn-jsx/xhtml.js + [webpack.Progress] 68% building 1643/1687 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownContext.js + [webpack.Progress] 68% building 1643/1688 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/Invoke.js + [webpack.Progress] 68% building 1643/1689 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CodePointAt.js + [webpack.Progress] 68% building 1643/1690 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/FigspecFrameViewer.js + [webpack.Progress] 68% building 1643/1691 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/FigspecFileViewer.js + [webpack.Progress] 68% building 1644/1691 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/FigspecFileViewer.js + [webpack.Progress] 68% building 1645/1691 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/FigspecFileViewer.js + [webpack.Progress] 68% building 1645/1692 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.define-properties.js + [webpack.Progress] 68% building 1646/1692 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.define-properties.js + [webpack.Progress] 68% building 1647/1692 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.object.define-properties.js + [webpack.Progress] 68% building 1647/1693 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/dispatchTrackingEvent.js + [webpack.Progress] 68% building 1648/1693 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/dispatchTrackingEvent.js + [webpack.Progress] 68% building 1649/1693 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/dispatchTrackingEvent.js + [webpack.Progress] 68% building 1650/1693 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/dispatchTrackingEvent.js + [webpack.Progress] 68% building 1651/1693 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/dispatchTrackingEvent.js + [webpack.Progress] 68% building 1651/1694 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-tracking/build/makeClassMemberDecorator.js + [webpack.Progress] 68% building 1651/1695 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.apply.js + [webpack.Progress] 68% building 1652/1695 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.apply.js + [webpack.Progress] 68% building 1652/1696 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/RegExpExec.js + [webpack.Progress] 68% building 1652/1697 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/OrdinaryObjectCreate.js + [webpack.Progress] 68% building 1652/1698 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@emotion/react/node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js + [webpack.Progress] 68% building 1652/1699 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1653/1699 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1654/1699 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1655/1699 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1656/1699 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1657/1699 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1658/1699 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1659/1699 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1660/1699 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1661/1699 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/CreateIterResultObject.js + [webpack.Progress] 68% building 1661/1700 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useOverlayOffset.js + [webpack.Progress] 68% building 1661/1701 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasBody.js + [webpack.Progress] 68% building 1662/1701 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasBody.js + [webpack.Progress] 68% building 1662/1702 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasTitle.js + [webpack.Progress] 68% building 1662/1703 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasHeader.js + [webpack.Progress] 68% building 1662/1704 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Offcanvas.js + [webpack.Progress] 68% building 1662/1705 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavDropdown.js + [webpack.Progress] 68% building 1662/1706 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2018/ToBoolean.js + [webpack.Progress] 68% building 1662/1707 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarBrand.js + [webpack.Progress] 68% building 1663/1707 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarBrand.js + [webpack.Progress] 68% building 1663/1708 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseUniq.js + [webpack.Progress] 68% building 1663/1709 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Navbar.js + [webpack.Progress] 68% building 1663/1710 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalTitle.js + [webpack.Progress] 68% building 1663/1711 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalFooter.js + [webpack.Progress] 68% building 1663/1712 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalDialog.js + [webpack.Progress] 68% building 1663/1713 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalBody.js + [webpack.Progress] 68% building 1663/1714 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useIsomorphicEffect.js + [webpack.Progress] 68% building 1663/1715 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Modal.js + [webpack.Progress] 68% building 1663/1716 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ListGroupItem.js + [webpack.Progress] 68% building 1663/1717 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ListGroup.js + [webpack.Progress] 68% building 1663/1718 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/InputGroup.js + [webpack.Progress] 68% building 1663/1719 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Figure.js + [webpack.Progress] 68% building 1663/1720 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Image.js + [webpack.Progress] 67% building 1663/1721 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Container.js + [webpack.Progress] 67% building 1663/1722 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormSelect.js + [webpack.Progress] 67% building 1664/1722 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormSelect.js + [webpack.Progress] 67% building 1664/1723 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormText.js + [webpack.Progress] 67% building 1665/1723 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormText.js + [webpack.Progress] 67% building 1665/1724 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hastscript/factory.js + [webpack.Progress] 67% building 1665/1725 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormLabel.js + [webpack.Progress] 67% building 1665/1726 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormGroup.js + [webpack.Progress] 67% building 1665/1727 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FloatingLabel.js + [webpack.Progress] 67% building 1666/1727 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FloatingLabel.js + [webpack.Progress] 67% building 1666/1728 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormFloating.js + [webpack.Progress] 67% building 1667/1728 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormFloating.js + [webpack.Progress] 67% building 1668/1728 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormFloating.js + [webpack.Progress] 67% building 1668/1729 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormCheck.js + [webpack.Progress] 67% building 1669/1729 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormCheck.js + [webpack.Progress] 67% building 1669/1730 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/shim.js + [webpack.Progress] 67% building 1670/1730 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/shim.js + [webpack.Progress] 67% building 1670/1731 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/polyfill.js + [webpack.Progress] 67% building 1670/1732 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/IsAccessorDescriptor.js + [webpack.Progress] 67% building 1670/1733 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/implementation.js + [webpack.Progress] 67% building 1671/1733 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/array.prototype.map/implementation.js + [webpack.Progress] 67% building 1671/1734 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormControl.js + [webpack.Progress] 67% building 1672/1734 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormControl.js + [webpack.Progress] 67% building 1673/1734 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormControl.js + [webpack.Progress] 67% building 1673/1735 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 67% building 1674/1735 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 67% building 1675/1735 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 67% building 1676/1735 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 67% building 1677/1735 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1678/1735 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1679/1735 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1680/1735 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1681/1735 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1682/1735 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1683/1735 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1684/1735 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1685/1735 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/useWrappedRefWithWarning.js + [webpack.Progress] 68% building 1685/1736 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/shim.js + [webpack.Progress] 68% building 1686/1736 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/shim.js + [webpack.Progress] 68% building 1687/1736 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/shim.js + [webpack.Progress] 68% building 1688/1736 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/shim.js + [webpack.Progress] 68% building 1689/1736 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/shim.js + [webpack.Progress] 68% building 1689/1737 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/polyfill.js + [webpack.Progress] 68% building 1690/1737 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/polyfill.js + [webpack.Progress] 68% building 1691/1737 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/polyfill.js + [webpack.Progress] 68% building 1692/1737 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/polyfill.js + [webpack.Progress] 68% building 1693/1737 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/polyfill.js + [webpack.Progress] 68% building 1693/1738 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/internal-slot/index.js + [webpack.Progress] 68% building 1694/1738 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/internal-slot/index.js + [webpack.Progress] 68% building 1695/1738 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/internal-slot/index.js + [webpack.Progress] 68% building 1695/1739 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Col.js + [webpack.Progress] 68% building 1696/1739 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Col.js + [webpack.Progress] 68% building 1696/1740 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js + [webpack.Progress] 68% building 1697/1740 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js + [webpack.Progress] 68% building 1698/1740 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js + [webpack.Progress] 68% building 1699/1740 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js + [webpack.Progress] 68% building 1699/1741 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/html.js + [webpack.Progress] 68% building 1699/1742 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/utils.js + [webpack.Progress] 68% building 1700/1742 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/utils.js + [webpack.Progress] 68% building 1700/1743 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1701/1743 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1702/1743 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1703/1743 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1704/1743 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1705/1743 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ViewerMixin.js + [webpack.Progress] 68% building 1705/1744 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/es.reflect.define-property.js + [webpack.Progress] 68% building 1705/1745 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ErrorMessage.js + [webpack.Progress] 68% building 1706/1745 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ErrorMessage.js + [webpack.Progress] 68% building 1707/1745 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/ErrorMessage.js + [webpack.Progress] 68% building 1707/1746 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isTrailingSurrogate.js + [webpack.Progress] 68% building 1707/1747 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isLeadingSurrogate.js + [webpack.Progress] 68% building 1708/1747 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/helpers/isLeadingSurrogate.js + [webpack.Progress] 68% building 1708/1748 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/character-entities-legacy/index.json + [webpack.Progress] 68% building 1709/1748 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/character-entities-legacy/index.json + [webpack.Progress] 68% building 1710/1748 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/character-entities-legacy/index.json + [webpack.Progress] 68% building 1710/1749 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/implementation.js + [webpack.Progress] 68% building 1711/1749 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/implementation.js + [webpack.Progress] 68% building 1712/1749 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/regexp.prototype.flags/implementation.js + [webpack.Progress] 68% building 1712/1750 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/divWithClassName.js + [webpack.Progress] 68% building 1712/1751 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/AbstractModalHeader.js + [webpack.Progress] 68% building 1712/1752 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/BootstrapModalManager.js + [webpack.Progress] 68% building 1712/1753 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalContext.js + [webpack.Progress] 68% building 1712/1754 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Dropdown.js + [webpack.Progress] 68% building 1712/1755 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasToggling.js + [webpack.Progress] 68% building 1713/1755 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/OffcanvasToggling.js + [webpack.Progress] 68% building 1713/1756 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_createSet.js + [webpack.Progress] 68% building 1713/1757 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarOffcanvas.js + [webpack.Progress] 68% building 1713/1758 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarToggle.js + [webpack.Progress] 68% building 1713/1759 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/NavbarCollapse.js + [webpack.Progress] 68% building 1713/1760 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayIncludesWith.js + [webpack.Progress] 68% building 1713/1761 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_arrayIncludes.js + [webpack.Progress] 68% building 1713/1762 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/character-reference-invalid/index.json + [webpack.Progress] 68% building 1713/1763 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ModalHeader.js + [webpack.Progress] 68% building 1713/1764 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormCheckInput.js + [webpack.Progress] 68% building 1713/1765 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FigureCaption.js + [webpack.Progress] 68% building 1713/1766 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FigureImage.js + [webpack.Progress] 68% building 1713/1767 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormContext.js + [webpack.Progress] 68% building 1714/1767 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormContext.js + [webpack.Progress] 68% building 1715/1767 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormContext.js + [webpack.Progress] 68% building 1715/1768 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/find.js + [webpack.Progress] 68% building 1716/1768 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/find.js + [webpack.Progress] 68% building 1717/1768 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/find.js + [webpack.Progress] 68% building 1717/1769 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormCheckLabel.js + [webpack.Progress] 68% building 1718/1769 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormCheckLabel.js + [webpack.Progress] 68% building 1718/1770 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Feedback.js + [webpack.Progress] 68% building 1718/1771 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1719/1771 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1720/1771 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1721/1771 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1722/1771 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1723/1771 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-abstract/2020/ToUint32.js + [webpack.Progress] 68% building 1723/1772 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1724/1772 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1725/1772 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1726/1772 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1726/1773 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deepmerge/dist/cjs.js + [webpack.Progress] 68% building 1727/1773 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/deepmerge/dist/cjs.js + [webpack.Progress] 68% building 1727/1774 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Overlay.js + [webpack.Progress] 68% building 1727/1775 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-alphanumerical/index.js + [webpack.Progress] 68% building 1727/1776 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-hexadecimal/index.js + [webpack.Progress] 68% building 1728/1776 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-hexadecimal/index.js + [webpack.Progress] 68% building 1729/1776 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-hexadecimal/index.js + [webpack.Progress] 68% building 1730/1776 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-hexadecimal/index.js + [webpack.Progress] 68% building 1731/1776 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-hexadecimal/index.js + [webpack.Progress] 68% building 1731/1777 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1732/1777 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1733/1777 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1734/1777 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1735/1777 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1736/1777 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1737/1777 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-decimal/index.js + [webpack.Progress] 68% building 1737/1778 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1738/1778 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1739/1778 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1740/1778 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1741/1778 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1742/1778 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1743/1778 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/normalize.js + [webpack.Progress] 68% building 1743/1779 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/Node.js + [webpack.Progress] 68% building 1743/1780 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/DistanceGuide.js + [webpack.Progress] 68% building 1743/1781 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/PositionedMixin.js + [webpack.Progress] 68% building 1744/1781 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/PositionedMixin.js + [webpack.Progress] 68% building 1745/1781 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/PositionedMixin.js + [webpack.Progress] 68% building 1745/1782 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/NodeSelectableMixin.js + [webpack.Progress] 68% building 1746/1782 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/NodeSelectableMixin.js + [webpack.Progress] 68% building 1746/1783 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/html.js + [webpack.Progress] 68% building 1746/1784 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/aria.js + [webpack.Progress] 68% building 1746/1785 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/xmlns.js + [webpack.Progress] 68% building 1746/1786 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/xml.js + [webpack.Progress] 68% building 1746/1787 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/xlink.js + [webpack.Progress] 68% building 1746/1788 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/merge.js + [webpack.Progress] 68% building 1746/1789 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-get-iterator/index.js + [webpack.Progress] 68% building 1747/1789 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-get-iterator/index.js + [webpack.Progress] 68% building 1747/1790 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/iterate-iterator/index.js + [webpack.Progress] 68% building 1748/1790 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/iterate-iterator/index.js + [webpack.Progress] 68% building 1748/1791 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Form.js + [webpack.Progress] 68% building 1748/1792 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/Footer/Footer.js + [webpack.Progress] 68% building 1748/1793 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/DropdownButton.js + [webpack.Progress] 68% building 1748/1794 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/InspectorView/InspectorView.js + [webpack.Progress] 68% building 1748/1795 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CarouselItem.js + [webpack.Progress] 68% building 1748/1796 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Carousel.js + [webpack.Progress] 68% building 1748/1797 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardGroup.js + [webpack.Progress] 68% building 1748/1798 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DropdownItem.js + [webpack.Progress] 68% building 1748/1799 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useIsomorphicEffect.js + [webpack.Progress] 68% building 1748/1800 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DropdownMenu.js + [webpack.Progress] 68% building 1748/1801 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DropdownToggle.js + [webpack.Progress] 68% building 1748/1802 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/noop.js + [webpack.Progress] 68% building 1748/1803 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/DropdownContext.js + [webpack.Progress] 68% building 1748/1804 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIndexOf.js + [webpack.Progress] 68% building 1748/1805 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardImg.js + [webpack.Progress] 68% building 1748/1806 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-element/lit-element.js + [webpack.Progress] 68% building 1748/1807 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Card.js + [webpack.Progress] 68% building 1748/1808 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1749/1808 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1750/1808 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1751/1808 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1752/1808 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1753/1808 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1754/1808 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1755/1808 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1756/1808 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1757/1808 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1758/1808 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/ButtonToolbar.js + [webpack.Progress] 68% building 1758/1809 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/info.js + [webpack.Progress] 68% building 1759/1809 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/info.js + [webpack.Progress] 68% building 1760/1809 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/info.js + [webpack.Progress] 68% building 1760/1810 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/defined-info.js + [webpack.Progress] 68% building 1761/1810 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/defined-info.js + [webpack.Progress] 68% building 1762/1810 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/defined-info.js + [webpack.Progress] 68% building 1762/1811 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButtonGroup/RadioButtonGroup.mdx + [webpack.Progress] 68% building 1762/1812 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/BreadcrumbItem.js + [webpack.Progress] 68% building 1763/1812 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/BreadcrumbItem.js + [webpack.Progress] 68% building 1764/1812 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/BreadcrumbItem.js + [webpack.Progress] 68% building 1764/1813 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx + [webpack.Progress] 68% building 1764/1814 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1765/1814 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1766/1814 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1767/1814 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1768/1814 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1769/1814 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1770/1814 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Breadcrumb.js + [webpack.Progress] 68% building 1770/1815 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Badge.js + [webpack.Progress] 68% building 1771/1815 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Badge.js + [webpack.Progress] 68% building 1771/1816 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/hasClass.js + [webpack.Progress] 68% building 1772/1816 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/hasClass.js + [webpack.Progress] 68% building 1772/1817 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Anchor.js + [webpack.Progress] 68% building 1772/1818 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/mergeOptionsWithPopperConfig.js + [webpack.Progress] 68% building 1773/1818 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/mergeOptionsWithPopperConfig.js + [webpack.Progress] 68% building 1774/1818 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/mergeOptionsWithPopperConfig.js + [webpack.Progress] 68% building 1774/1819 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/useWaitForDOMRef.js + [webpack.Progress] 68% building 1775/1819 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/useWaitForDOMRef.js + [webpack.Progress] 68% building 1776/1819 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/useWaitForDOMRef.js + [webpack.Progress] 68% building 1776/1820 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Modal.js + [webpack.Progress] 68% building 1777/1820 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Modal.js + [webpack.Progress] 68% building 1778/1820 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/Modal.js + [webpack.Progress] 68% building 1778/1821 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/useRootClose.js + [webpack.Progress] 68% building 1778/1822 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/directives/style-map.js + [webpack.Progress] 68% building 1778/1823 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/usePopper.js + [webpack.Progress] 68% building 1779/1823 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/usePopper.js + [webpack.Progress] 68% building 1780/1823 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/usePopper.js + [webpack.Progress] 68% building 1780/1824 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Alert.js + [webpack.Progress] 68% building 1781/1824 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Alert.js + [webpack.Progress] 68% building 1782/1824 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Alert.js +info => Manager built (22 s) + [webpack.Progress] 68% building 1783/1824 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Alert.js + [webpack.Progress] 68% building 1783/1825 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/sortProps.js + [webpack.Progress] 68% building 1783/1826 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js + [webpack.Progress] 68% building 1784/1826 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js + [webpack.Progress] 68% building 1785/1826 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js + [webpack.Progress] 68% building 1785/1827 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lit-html.js + [webpack.Progress] 68% building 1785/1828 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/TouchGestureMixin.js + [webpack.Progress] 68% building 1786/1828 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/TouchGestureMixin.js + [webpack.Progress] 68% building 1786/1829 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/types.js + [webpack.Progress] 68% building 1786/1830 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/create.js + [webpack.Progress] 68% building 1787/1830 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/create.js + [webpack.Progress] 68% building 1788/1830 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/create.js + [webpack.Progress] 68% building 1789/1830 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/create.js + [webpack.Progress] 68% building 1790/1830 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/create.js + [webpack.Progress] 68% building 1790/1831 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-array-method-boxes-properly/index.js + [webpack.Progress] 68% building 1791/1831 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-array-method-boxes-properly/index.js + [webpack.Progress] 68% building 1791/1832 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/Switch.js + [webpack.Progress] 68% building 1791/1833 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/shady-render.js + [webpack.Progress] 68% building 1791/1834 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-element/lib/css-tag.js + [webpack.Progress] 68% building 1791/1835 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-element/lib/decorators.js + [webpack.Progress] 68% building 1791/1836 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-element/lib/updating-element.js + [webpack.Progress] 68% building 1791/1837 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/Footer/utils.js + [webpack.Progress] 68% building 1791/1838 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useCallbackRef.js + [webpack.Progress] 68% building 1791/1839 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/scrollbarSize.js + [webpack.Progress] 68% building 1791/1840 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/InspectorView/utils.js + [webpack.Progress] 68% building 1791/1841 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CarouselCaption.js + [webpack.Progress] 68% building 1791/1842 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/Icons.js + [webpack.Progress] 68% building 1792/1842 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@figspec/components/esm/es2015/FigspecViewer/Icons.js + [webpack.Progress] 68% building 1792/1843 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/FormRange.js + [webpack.Progress] 68% building 1792/1844 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseFindIndex.js + [webpack.Progress] 68% building 1792/1845 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_strictIndexOf.js + [webpack.Progress] 68% building 1793/1845 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_strictIndexOf.js + [webpack.Progress] 68% building 1794/1845 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_strictIndexOf.js + [webpack.Progress] 68% building 1794/1846 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/comma-separated-tokens/index.js + [webpack.Progress] 68% building 1794/1847 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardHeader.js + [webpack.Progress] 68% building 1795/1847 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardHeader.js + [webpack.Progress] 68% building 1796/1847 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/esm/CardHeader.js + [webpack.Progress] 68% building 1796/1848 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1797/1848 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1798/1848 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1799/1848 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1800/1848 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1801/1848 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseIsNaN.js + [webpack.Progress] 68% building 1801/1849 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1802/1849 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1803/1849 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1804/1849 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1805/1849 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1806/1849 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1807/1849 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1808/1849 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1809/1849 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1810/1849 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/space-separated-tokens/index.js + [webpack.Progress] 68% building 1810/1850 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/index.js + [webpack.Progress] 68% building 1811/1850 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/index.js + [webpack.Progress] 68% building 1811/1851 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hast-util-parse-selector/index.js + [webpack.Progress] 68% building 1812/1851 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/hast-util-parse-selector/index.js + [webpack.Progress] 68% building 1812/1852 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/schema.js + [webpack.Progress] 68% building 1812/1853 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/case-insensitive-transform.js + [webpack.Progress] 68% building 1812/1854 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/default-template-processor.js + [webpack.Progress] 68% building 1812/1855 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template.js + [webpack.Progress] 68% building 1813/1855 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template.js + [webpack.Progress] 68% building 1814/1855 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template.js + [webpack.Progress] 68% building 1814/1856 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template-instance.js + [webpack.Progress] 68% building 1814/1857 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template-factory.js + [webpack.Progress] 68% building 1814/1858 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseForOwn.js + [webpack.Progress] 68% building 1814/1859 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/get-substitution.js + [webpack.Progress] 68% building 1814/1860 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.pattern-match.js + [webpack.Progress] 68% building 1814/1861 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.observable.js + [webpack.Progress] 68% building 1814/1862 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.dispose.js + [webpack.Progress] 68% building 1815/1862 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.dispose.js + [webpack.Progress] 68% building 1815/1863 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/addClass.js + [webpack.Progress] 68% building 1815/1864 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/ModalManager.js + [webpack.Progress] 68% building 1815/1865 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/render.js + [webpack.Progress] 68% building 1816/1865 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/render.js + [webpack.Progress] 68% building 1817/1865 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/render.js + [webpack.Progress] 68% building 1817/1866 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/parts.js + [webpack.Progress] 68% building 1818/1866 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/parts.js + [webpack.Progress] 68% building 1818/1867 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/part.js + [webpack.Progress] 68% building 1818/1868 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/popper.js + [webpack.Progress] 68% building 1818/1869 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/addEventListener.js + [webpack.Progress] 68% building 1818/1870 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/removeClass.js + [webpack.Progress] 68% building 1818/1871 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/dom.js + [webpack.Progress] 68% building 1818/1872 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-bootstrap/node_modules/dom-helpers/esm/querySelectorAll.js + [webpack.Progress] 68% building 1818/1873 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/modify-template.js + [webpack.Progress] 68% building 1818/1874 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/directive.js + [webpack.Progress] 68% building 1819/1874 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/directive.js + [webpack.Progress] 68% building 1819/1875 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lit-html/lib/template-result.js + [webpack.Progress] 68% building 1819/1876 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/Modal.mdx + [webpack.Progress] 68% building 1819/1877 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tabs.mdx + [webpack.Progress] 68% building 1820/1877 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tabs.mdx + [webpack.Progress] 68% building 1820/1878 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js + [webpack.Progress] 68% building 1821/1878 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js + [webpack.Progress] 68% building 1822/1878 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js + [webpack.Progress] 68% building 1823/1878 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js + [webpack.Progress] 68% building 1824/1878 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js + [webpack.Progress] 68% building 1824/1879 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1825/1879 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1826/1879 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1827/1879 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1828/1879 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1829/1879 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1830/1879 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1831/1879 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1832/1879 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1833/1879 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1834/1879 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1835/1879 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1836/1879 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1837/1879 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1838/1879 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1839/1879 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1840/1879 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1841/1879 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Pill/Pill.mdx + [webpack.Progress] 68% building 1841/1880 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.mdx + [webpack.Progress] 68% building 1842/1880 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.mdx + [webpack.Progress] 68% building 1843/1880 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.mdx + [webpack.Progress] 68% building 1844/1880 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.mdx + [webpack.Progress] 68% building 1844/1881 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButton/CheckboxButton.mdx + [webpack.Progress] 68% building 1844/1882 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/Typography/Typography.scss + [webpack.Progress] 68% building 1845/1882 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButton/CheckboxButton.mdx + [webpack.Progress] 68% building 1845/1883 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/stories/Typography/Typography.scss + [webpack.Progress] 68% building 1845/1884 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/index.js + [webpack.Progress] 68% building 1845/1885 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/modules/esnext.symbol.async-dispose.js + [webpack.Progress] 68% building 1845/1886 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/RadioButton/RadioButton.mdx + [webpack.Progress] 68% building 1845/1887 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/index.js + [webpack.Progress] 68% building 1845/1888 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/index.js + [webpack.Progress] 68% building 1846/1888 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/index.js + [webpack.Progress] 68% building 1846/1889 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/client-api/dist/esm/decorators.js + [webpack.Progress] 68% building 1846/1890 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.jsx + [webpack.Progress] 68% building 1847/1890 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.jsx + [webpack.Progress] 68% building 1847/1891 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/index.js + [webpack.Progress] 68% building 1847/1892 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-alphabetical/index.js + [webpack.Progress] 68% building 1847/1893 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/index.js + [webpack.Progress] 68% building 1847/1894 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-arguments/index.js + [webpack.Progress] 68% building 1847/1895 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-set/index.js + [webpack.Progress] 68% building 1847/1896 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/case-sensitive-transform.js + [webpack.Progress] 68% building 1848/1896 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/property-information/lib/util/case-sensitive-transform.js + [webpack.Progress] 68% building 1848/1897 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_baseFor.js + [webpack.Progress] 68% building 1848/1898 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/is-map/index.js + [webpack.Progress] 68% building 1848/1899 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/hooks/esm/useUpdateEffect.js + [webpack.Progress] 68% building 1848/1900 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/getScrollbarWidth.js + [webpack.Progress] 68% building 1849/1900 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/esm/getScrollbarWidth.js + [webpack.Progress] 68% building 1849/1901 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/canUseDOM.js + [webpack.Progress] 68% building 1849/1902 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.mdx + [webpack.Progress] 68% building 1849/1903 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/AsyncCreatableSelect.jsx + [webpack.Progress] 68% building 1850/1903 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/AsyncCreatableSelect.jsx + [webpack.Progress] 68% building 1850/1904 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.mdx + [webpack.Progress] 68% building 1851/1904 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.mdx + [webpack.Progress] 68% building 1852/1904 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.mdx + [webpack.Progress] 68% building 1853/1904 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--9-0!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@mdx-js/loader/index.js??ref--9-1!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.mdx + [webpack.Progress] 68% building 1853/1905 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/xtend/immutable.js + [webpack.Progress] 68% building 1854/1905 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/xtend/immutable.js + [webpack.Progress] 68% building 1855/1905 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/xtend/immutable.js + [webpack.Progress] 68% building 1856/1905 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/xtend/immutable.js + [webpack.Progress] 68% building 1857/1905 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/xtend/immutable.js + [webpack.Progress] 68% building 1857/1906 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/AsyncSelect.jsx + [webpack.Progress] 68% building 1857/1907 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/index.js + [webpack.Progress] 68% building 1858/1907 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/index.js + [webpack.Progress] 68% building 1859/1907 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/ProfileCell/index.js + [webpack.Progress] 68% building 1859/1908 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/LoadingOverlay/index.js + [webpack.Progress] 68% building 1859/1909 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/index.js + [webpack.Progress] 68% building 1860/1909 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/index.js + [webpack.Progress] 68% building 1861/1909 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/index.js + [webpack.Progress] 68% building 1862/1909 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/IconCell/index.js + [webpack.Progress] 68% building 1862/1910 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/ownerDocument.js + [webpack.Progress] 68% building 1863/1910 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/ownerDocument.js + [webpack.Progress] 68% building 1864/1910 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/ownerDocument.js + [webpack.Progress] 68% building 1864/1911 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/activeElement.js + [webpack.Progress] 68% building 1864/1912 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/es-get-iterator/node_modules/isarray/index.js + [webpack.Progress] 68% building 1864/1913 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1865/1913 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/contains.js + [webpack.Progress] 68% building 1865/1914 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/index.js + [webpack.Progress] 68% building 1866/1914 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/index.js + [webpack.Progress] 68% building 1866/1915 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useSafeState.js + [webpack.Progress] 68% building 1866/1916 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.jsx + [webpack.Progress] 68% building 1867/1916 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.jsx + [webpack.Progress] 68% building 1868/1916 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.jsx + [webpack.Progress] 68% building 1869/1916 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.jsx + [webpack.Progress] 68% building 1869/1917 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/listen.js + [webpack.Progress] 68% building 1869/1918 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/index.js + [webpack.Progress] 68% building 1870/1918 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/index.js + [webpack.Progress] 68% building 1870/1919 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.scss + [webpack.Progress] 68% building 1871/1919 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/index.js + [webpack.Progress] 68% building 1871/1920 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.scss + [webpack.Progress] 68% building 1872/1920 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.scss + [webpack.Progress] 68% building 1873/1920 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Select/Option.scss + [webpack.Progress] 68% building 1873/1921 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/popper-base.js + [webpack.Progress] 68% building 1873/1922 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/enums.js + [webpack.Progress] 68% building 1873/1923 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/arrow.js + [webpack.Progress] 68% building 1873/1924 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js + [webpack.Progress] 68% building 1873/1925 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js + [webpack.Progress] 68% building 1873/1926 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/offset.js + [webpack.Progress] 68% building 1873/1927 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/hide.js + [webpack.Progress] 68% building 1873/1928 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/flip.js + [webpack.Progress] 68% building 1873/1929 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/eventListeners.js + [webpack.Progress] 68% building 1873/1930 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/modifiers/computeStyles.js + [webpack.Progress] 68% building 1873/1931 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/dequal/dist/index.mjs + [webpack.Progress] 68% building 1873/1932 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js + [webpack.Progress] 68% building 1874/1932 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js + [webpack.Progress] 68% building 1875/1932 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js + [webpack.Progress] 68% building 1875/1933 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js + [webpack.Progress] 68% building 1876/1933 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js + [webpack.Progress] 68% building 1876/1934 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Wrapper.js + [webpack.Progress] 68% building 1876/1935 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Title.js + [webpack.Progress] 68% building 1877/1935 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Title.js + [webpack.Progress] 68% building 1877/1936 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/Modal.jsx + [webpack.Progress] 68% building 1877/1937 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Subtitle.js + [webpack.Progress] 68% building 1877/1938 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useWillUnmount.js + [webpack.Progress] 68% building 1877/1939 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/lodash/_createBaseFor.js + [webpack.Progress] 68% building 1877/1940 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Subheading.js + [webpack.Progress] 68% building 1877/1941 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Story.js + [webpack.Progress] 67% building 1877/1942 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js + [webpack.Progress] 68% building 1878/1942 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js + [webpack.Progress] 68% building 1879/1942 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js + [webpack.Progress] 68% building 1879/1943 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tabs.jsx + [webpack.Progress] 67% building 1879/1944 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/SourceContainer.js + [webpack.Progress] 68% building 1880/1944 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/SourceContainer.js + [webpack.Progress] 67% building 1880/1945 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Source.js + [webpack.Progress] 67% building 1880/1946 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Props.js + [webpack.Progress] 67% building 1880/1947 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Primary.js + [webpack.Progress] 67% building 1881/1947 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Primary.js + [webpack.Progress] 67% building 1881/1948 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.jsx + [webpack.Progress] 67% building 1881/1949 modules 68 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 67% building 1882/1949 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 67% building 1883/1949 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 67% building 1884/1949 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1885/1949 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1886/1949 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1887/1949 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1888/1949 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1889/1949 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1890/1949 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1891/1949 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1892/1949 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1893/1949 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1894/1949 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Styles/index.js + [webpack.Progress] 68% building 1894/1950 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalHeader.jsx + [webpack.Progress] 68% building 1895/1950 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalHeader.jsx + [webpack.Progress] 68% building 1895/1951 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalFooter.jsx + [webpack.Progress] 68% building 1895/1952 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.jsx + [webpack.Progress] 68% building 1896/1952 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.jsx + [webpack.Progress] 68% building 1897/1952 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.jsx + [webpack.Progress] 68% building 1898/1952 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.jsx + [webpack.Progress] 68% building 1898/1953 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1899/1953 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1900/1953 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1901/1953 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1902/1953 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1903/1953 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js + [webpack.Progress] 68% building 1903/1954 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1904/1954 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1905/1954 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1906/1954 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1907/1954 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1908/1954 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1909/1954 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1910/1954 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1911/1954 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1912/1954 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.jsx + [webpack.Progress] 68% building 1912/1955 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/createPopper.js + [webpack.Progress] 68% building 1912/1956 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Meta.js + [webpack.Progress] 68% building 1912/1957 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/css.js + [webpack.Progress] 68% building 1912/1958 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownMenu.jsx + [webpack.Progress] 68% building 1912/1959 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Heading.js + [webpack.Progress] 68% building 1912/1960 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsStory.js + [webpack.Progress] 68% building 1912/1961 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/index.js + [webpack.Progress] 68% building 1912/1962 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownItem.jsx + [webpack.Progress] 68% building 1912/1963 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContainer.js + [webpack.Progress] 68% building 1912/1964 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.jsx + [webpack.Progress] 68% building 1912/1965 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1913/1965 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1913/1966 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.scss + [webpack.Progress] 68% building 1914/1966 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js + [webpack.Progress] 68% building 1914/1967 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CheckboxButtonGroup/CheckboxButtonGroup.scss + [webpack.Progress] 68% building 1914/1968 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getBasePlacement.js + [webpack.Progress] 68% building 1914/1969 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/computeOffsets.js + [webpack.Progress] 68% building 1914/1970 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js + [webpack.Progress] 68% building 1914/1971 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/math.js + [webpack.Progress] 68% building 1914/1972 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getVariation.js + [webpack.Progress] 68% building 1914/1973 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js + [webpack.Progress] 68% building 1914/1974 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/detectOverflow.js + [webpack.Progress] 68% building 1914/1975 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js + [webpack.Progress] 68% building 1914/1976 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getWindow.js + [webpack.Progress] 68% building 1914/1977 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js + [webpack.Progress] 68% building 1914/1978 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js + [webpack.Progress] 68% building 1914/1979 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js + [webpack.Progress] 68% building 1915/1979 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js + [webpack.Progress] 68% building 1915/1980 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/removeEventListener.js + [webpack.Progress] 68% building 1915/1981 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.jsx + [webpack.Progress] 67% building 1915/1982 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js + [webpack.Progress] 68% building 1916/1982 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js + [webpack.Progress] 67% building 1916/1983 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js + [webpack.Progress] 68% building 1917/1983 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js + [webpack.Progress] 68% building 1918/1983 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js + [webpack.Progress] 68% building 1919/1983 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js + [webpack.Progress] 68% building 1920/1983 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js + [webpack.Progress] 68% building 1920/1984 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.jsx + [webpack.Progress] 68% building 1921/1984 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.jsx + [webpack.Progress] 68% building 1922/1984 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.jsx + [webpack.Progress] 68% building 1922/1985 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/regenerator/index.js + [webpack.Progress] 68% building 1923/1985 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/regenerator/index.js + [webpack.Progress] 68% building 1923/1986 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js + [webpack.Progress] 68% building 1923/1987 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js + [webpack.Progress] 68% building 1923/1988 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/within.js + [webpack.Progress] 68% building 1923/1989 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getAltAxis.js + [webpack.Progress] 67% building 1923/1990 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js + [webpack.Progress] 67% building 1923/1991 modules 68 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 67% building 1924/1991 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 68% building 1925/1991 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + [webpack.Progress] 67% building 1925/1992 modules 67 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1926/1992 modules 66 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1927/1992 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1928/1992 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1929/1992 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1930/1992 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1931/1992 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1932/1992 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1933/1992 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1934/1992 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1935/1992 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1936/1992 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1937/1992 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js + [webpack.Progress] 68% building 1937/1993 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/utils.js + [webpack.Progress] 68% building 1937/1994 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/Modal.scss + [webpack.Progress] 68% building 1938/1994 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/utils.js + [webpack.Progress] 68% building 1938/1995 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/Modal.scss + [webpack.Progress] 68% building 1938/1996 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/expandToHashMap.js + [webpack.Progress] 68% building 1939/1996 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/expandToHashMap.js + [webpack.Progress] 68% building 1940/1996 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/expandToHashMap.js + [webpack.Progress] 68% building 1940/1997 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js + [webpack.Progress] 68% building 1940/1998 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/contains.js + [webpack.Progress] 68% building 1940/1999 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js + [webpack.Progress] 68% building 1941/1999 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js + [webpack.Progress] 68% building 1941/2000 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/ArgsTable.js + [webpack.Progress] 68% building 1941/2001 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1942/2001 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1943/2001 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1944/2001 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1945/2001 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1946/2001 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1946/2002 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.scss + [webpack.Progress] 68% building 1947/2002 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + [webpack.Progress] 68% building 1947/2003 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.scss + [webpack.Progress] 68% building 1948/2003 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Form/Form.scss + [webpack.Progress] 68% building 1948/2004 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tab/index.js + [webpack.Progress] 68% building 1949/2004 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tab/index.js + [webpack.Progress] 68% building 1949/2005 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 68% building 1950/2005 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 68% building 1951/2005 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 68% building 1952/2005 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 68% building 1953/2005 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + [webpack.Progress] 68% building 1953/2006 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/rectToClientRect.js + [webpack.Progress] 68% building 1953/2007 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js + [webpack.Progress] 68% building 1953/2008 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 68% building 1954/2008 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 68% building 1955/2008 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + [webpack.Progress] 68% building 1955/2009 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js + [webpack.Progress] 68% building 1955/2010 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js + [webpack.Progress] 68% building 1955/2011 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Canvas.js + [webpack.Progress] 68% building 1955/2012 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/mergeByName.js + [webpack.Progress] 68% building 1955/2013 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/uniqueBy.js + [webpack.Progress] 68% building 1955/2014 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalHeader.scss + [webpack.Progress] 68% building 1956/2014 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/uniqueBy.js + [webpack.Progress] 68% building 1956/2015 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalHeader.scss + [webpack.Progress] 68% building 1956/2016 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalFooter.scss + [webpack.Progress] 68% building 1957/2016 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalHeader.scss + [webpack.Progress] 68% building 1957/2017 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalFooter.scss + [webpack.Progress] 68% building 1957/2018 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.scss + [webpack.Progress] 68% building 1958/2018 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalFooter.scss + [webpack.Progress] 68% building 1958/2019 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.scss + [webpack.Progress] 68% building 1959/2019 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Steps/Step.scss + [webpack.Progress] 68% building 1959/2020 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/validateModifiers.js + [webpack.Progress] 68% building 1959/2021 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/debounce.js + [webpack.Progress] 68% building 1959/2022 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/orderModifiers.js + [webpack.Progress] 68% building 1960/2022 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/orderModifiers.js + [webpack.Progress] 68% building 1961/2022 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/orderModifiers.js + [webpack.Progress] 68% building 1962/2022 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/orderModifiers.js + [webpack.Progress] 68% building 1962/2023 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1963/2023 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1964/2023 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1965/2023 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1966/2023 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1966/2024 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.scss + [webpack.Progress] 68% building 1967/2024 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + [webpack.Progress] 68% building 1967/2025 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.scss + [webpack.Progress] 68% building 1968/2025 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.scss + [webpack.Progress] 68% building 1969/2025 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.scss + [webpack.Progress] 68% building 1970/2025 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Modal/ModalBody.scss + [webpack.Progress] 68% building 1970/2026 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/getComputedStyle.js + [webpack.Progress] 68% building 1970/2027 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tabs.styles.js + [webpack.Progress] 68% building 1970/2028 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/isTransform.js + [webpack.Progress] 68% building 1970/2029 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/hyphenateStyle.js + [webpack.Progress] 68% building 1970/2030 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/constants.js + [webpack.Progress] 68% building 1970/2031 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/figma-logo.svg + [webpack.Progress] 68% building 1970/2032 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-docs/dist/esm/blocks/Anchor.js + [webpack.Progress] 68% building 1970/2033 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/ui-design-system.svg + [webpack.Progress] 68% building 1970/2034 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownItem.scss + [webpack.Progress] 68% building 1971/2034 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/file-loader/dist/cjs.js??ref--12!/Users/jasonbasuil/UserInterviews/ui-design-system/public/ui-design-system.svg + [webpack.Progress] 68% building 1971/2035 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownItem.scss + [webpack.Progress] 68% building 1971/2036 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1972/2036 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownItem.scss + [webpack.Progress] 68% building 1972/2037 modules 65 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1973/2037 modules 64 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1974/2037 modules 63 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1975/2037 modules 62 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1976/2037 modules 61 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1977/2037 modules 60 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1978/2037 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1979/2037 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1980/2037 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1981/2037 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1982/2037 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1983/2037 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1984/2037 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1985/2037 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Dropdown/DropdownToggle.scss + [webpack.Progress] 68% building 1985/2038 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js + [webpack.Progress] 68% building 1985/2039 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js + [webpack.Progress] 68% building 1985/2040 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 1986/2040 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 1987/2040 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 1988/2040 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 1988/2041 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.scss + [webpack.Progress] 68% building 1989/2041 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + [webpack.Progress] 68% building 1989/2042 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.scss + [webpack.Progress] 68% building 1990/2042 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.scss + [webpack.Progress] 68% building 1991/2042 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.scss + [webpack.Progress] 68% building 1992/2042 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardContainer/CardContainer.scss + [webpack.Progress] 68% building 1992/2043 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js + [webpack.Progress] 68% building 1992/2044 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + [webpack.Progress] 68% building 1993/2044 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + [webpack.Progress] 68% building 1994/2044 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + [webpack.Progress] 68% building 1995/2044 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + [webpack.Progress] 68% building 1995/2045 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/perform.js + [webpack.Progress] 68% building 1995/2046 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/new-promise-capability.js + [webpack.Progress] 68% building 1995/2047 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/host-report-errors.js + [webpack.Progress] 68% building 1995/2048 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/promise-resolve.js + [webpack.Progress] 68% building 1995/2049 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/microtask.js + [webpack.Progress] 68% building 1995/2050 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/style-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 1996/2050 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/microtask.js + [webpack.Progress] 68% building 1996/2051 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 1996/2052 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/native-promise-constructor.js + [webpack.Progress] 68% building 1996/2053 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/utils/format.js + [webpack.Progress] 68% building 1996/2054 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/object-to-string.js + [webpack.Progress] 68% building 1996/2055 modules 59 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 1997/2055 modules 58 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 1998/2055 modules 57 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 1999/2055 modules 56 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2000/2055 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2001/2055 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2002/2055 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2003/2055 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2004/2055 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2005/2055 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2006/2055 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2007/2055 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2008/2055 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2009/2055 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + [webpack.Progress] 68% building 2009/2056 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js + [webpack.Progress] 68% building 2009/2057 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js + [webpack.Progress] 68% building 2010/2057 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js + [webpack.Progress] 68% building 2011/2057 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js + [webpack.Progress] 68% building 2011/2058 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js + [webpack.Progress] 68% building 2012/2058 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js + [webpack.Progress] 68% building 2012/2059 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async-creatable/dist/react-select.esm.js + [webpack.Progress] 68% building 2012/2060 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/ownerWindow.js + [webpack.Progress] 68% building 2012/2061 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@restart/ui/node_modules/dom-helpers/esm/hyphenate.js + [webpack.Progress] 68% building 2012/2062 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/fast-deep-equal/index.js + [webpack.Progress] 68% building 2012/2063 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2013/2063 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2014/2063 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2015/2063 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2016/2063 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2017/2063 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2018/2063 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/async/dist/react-select.esm.js + [webpack.Progress] 68% building 2018/2064 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tab/Tab.jsx + [webpack.Progress] 68% building 2018/2065 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-webos-webkit.js + [webpack.Progress] 68% building 2019/2065 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-webos-webkit.js + [webpack.Progress] 68% building 2020/2065 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/core-js/internals/engine-is-webos-webkit.js + [webpack.Progress] 68% building 2020/2066 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-select/dist/useAsync-9deee0fa.esm.js + [webpack.Progress] 68% building 2020/2067 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/index.js + [webpack.Progress] 68% building 2020/2068 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/extract-source.js + [webpack.Progress] 68% building 2020/2069 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/index.js + [webpack.Progress] 68% building 2021/2069 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/index.js + [webpack.Progress] 68% building 2021/2070 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/index.js + [webpack.Progress] 68% building 2022/2070 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/index.js + [webpack.Progress] 68% building 2023/2070 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/index.js + [webpack.Progress] 68% building 2024/2070 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/index.js + [webpack.Progress] 68% building 2025/2070 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/index.js + [webpack.Progress] 68% building 2026/2070 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/jasonbasuil/UserInterviews/ui-design-system/src/Tabs/Tab/Tab.jsx + [webpack.Progress] 68% building 2027/2070 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2027/2071 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/action.js + [webpack.Progress] 68% building 2027/2072 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js + [webpack.Progress] 68% building 2027/2073 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js + [webpack.Progress] 68% building 2027/2074 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/decorateAction.js + [webpack.Progress] 68% building 2027/2075 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js + [webpack.Progress] 68% building 2027/2076 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/ActionDisplay.js + [webpack.Progress] 68% building 2027/2077 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js + [webpack.Progress] 68% building 2027/2078 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js + [webpack.Progress] 68% building 2027/2079 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/ActionsMap.js + [webpack.Progress] 68% building 2027/2080 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/DecoratorFunction.js + [webpack.Progress] 68% building 2027/2081 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/addon-actions/dist/esm/models/HandlerFunction.js + [webpack.Progress] 68% building 2027/2082 modules 55 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2028/2082 modules 54 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2029/2082 modules 53 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2030/2082 modules 52 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2031/2082 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2032/2082 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/extract-source.js + [webpack.Progress] 68% building 2032/2083 modules 51 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2033/2083 modules 50 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2034/2083 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2035/2083 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2036/2083 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2037/2083 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2038/2083 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2039/2083 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2040/2083 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/Modal.js + [webpack.Progress] 68% building 2040/2084 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/styled-components/dist/styled-components.browser.esm.js + [webpack.Progress] 68% building 2041/2084 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/styled-components/dist/styled-components.browser.esm.js + [webpack.Progress] 68% building 2042/2084 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2042/2085 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/@storybook/source-loader/dist/cjs/types.js + [webpack.Progress] 68% building 2042/2086 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/components/ModalPortal.js + [webpack.Progress] 68% building 2042/2087 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/v4.js + [webpack.Progress] 68% building 2043/2087 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/v4.js + [webpack.Progress] 68% building 2043/2088 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/ariaAppHider.js + [webpack.Progress] 68% building 2043/2089 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/safeHTMLElement.js + [webpack.Progress] 68% building 2044/2089 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/safeHTMLElement.js + [webpack.Progress] 68% building 2045/2089 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/safeHTMLElement.js + [webpack.Progress] 68% building 2046/2089 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/safeHTMLElement.js + [webpack.Progress] 68% building 2047/2089 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2047/2090 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/focusManager.js + [webpack.Progress] 68% building 2047/2091 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/scopeTab.js + [webpack.Progress] 68% building 2047/2092 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/classList.js + [webpack.Progress] 68% building 2047/2093 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/portalOpenInstances.js + [webpack.Progress] 68% building 2047/2094 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/bodyTrap.js + [webpack.Progress] 68% building 2047/2095 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/rng-browser.js + [webpack.Progress] 68% building 2047/2096 modules 49 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2048/2096 modules 48 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2049/2096 modules 47 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2050/2096 modules 46 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2051/2096 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2052/2096 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/uuid-browser/lib/bytesToUuid.js + [webpack.Progress] 68% building 2052/2097 modules 45 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-is/index.js + [webpack.Progress] 68% building 2053/2097 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-is/index.js + [webpack.Progress] 68% building 2054/2097 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-is/index.js + [webpack.Progress] 68% building 2055/2097 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2055/2098 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/shallowequal/index.js + [webpack.Progress] 68% building 2055/2099 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/tabbable.js + [webpack.Progress] 68% building 2056/2099 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-modal/lib/helpers/tabbable.js + [webpack.Progress] 68% building 2056/2100 modules 44 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-is/cjs/react-is.production.min.js + [webpack.Progress] 68% building 2057/2100 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/react-is/cjs/react-is.production.min.js + [webpack.Progress] 68% building 2058/2100 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2058/2101 modules 43 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/exenv/index.js + [webpack.Progress] 68% building 2059/2101 modules 42 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2060/2101 modules 41 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2061/2101 modules 40 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2062/2101 modules 39 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2063/2101 modules 38 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2064/2101 modules 37 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 68% building 2065/2101 modules 36 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2066/2101 modules 35 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2067/2101 modules 34 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2068/2101 modules 33 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2069/2101 modules 32 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2070/2101 modules 31 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2071/2101 modules 30 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2072/2101 modules 29 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2073/2101 modules 28 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2074/2101 modules 27 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2075/2101 modules 26 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2076/2101 modules 25 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2077/2101 modules 24 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2078/2101 modules 23 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2079/2101 modules 22 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2080/2101 modules 21 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2081/2101 modules 20 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2082/2101 modules 19 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2083/2101 modules 18 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2084/2101 modules 17 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2085/2101 modules 16 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2086/2101 modules 15 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2087/2101 modules 14 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2088/2101 modules 13 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2089/2101 modules 12 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2090/2101 modules 11 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2091/2101 modules 10 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2092/2101 modules 9 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2093/2101 modules 8 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2094/2101 modules 7 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2095/2101 modules 6 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2096/2101 modules 5 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2097/2101 modules 4 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2098/2101 modules 3 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2099/2101 modules 2 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 69% building 2100/2101 modules 1 active /Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/css-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/node_modules/sass-loader/dist/cjs.js!/Users/jasonbasuil/UserInterviews/ui-design-system/src/CardList/CardList.scss + [webpack.Progress] 70% building 2101/2101 modules 0 active + [webpack.Progress] 70% building 2101/2101 modules 0 active + [webpack.Progress] 70% finish module graph + [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin + [webpack.Progress] 70% finish module graph WasmFinalizeExportsPlugin + [webpack.Progress] 70% sealing + [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin + [webpack.Progress] 72% basic dependencies optimization + [webpack.Progress] 72% dependencies optimization + [webpack.Progress] 72% dependencies optimization SideEffectsFlagPlugin + [webpack.Progress] 72% dependencies optimization FlagDependencyUsagePlugin + [webpack.Progress] 73% advanced dependencies optimization + [webpack.Progress] 73% after dependencies optimization + [webpack.Progress] 71% chunk graph + [webpack.Progress] 71% after chunk graph + [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin + [webpack.Progress] 74% optimizing + [webpack.Progress] 74% basic module optimization + [webpack.Progress] 75% module optimization + [webpack.Progress] 75% advanced module optimization + [webpack.Progress] 76% after module optimization + [webpack.Progress] 76% basic chunk optimization + [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin + [webpack.Progress] 76% basic chunk optimization RemoveParentModulesPlugin + [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin + [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin + [webpack.Progress] 77% chunk optimization + [webpack.Progress] 77% advanced chunk optimization + [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin + [webpack.Progress] 77% advanced chunk optimization RuntimeChunkPlugin + [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin + [webpack.Progress] 77% after chunk optimization + [webpack.Progress] 78% module and chunk tree optimization + [webpack.Progress] 78% module and chunk tree optimization PersistentChildCompilerSingletonPlugin + [webpack.Progress] 78% after module and chunk tree optimization + [webpack.Progress] 79% basic chunk modules optimization + [webpack.Progress] 80% chunk modules optimization + [webpack.Progress] 80% chunk modules optimization ModuleConcatenationPlugin + [webpack.Progress] 80% advanced chunk modules optimization + [webpack.Progress] 81% after chunk modules optimization + [webpack.Progress] 81% module reviving + [webpack.Progress] 81% module reviving RecordIdsPlugin + [webpack.Progress] 82% module order optimization + [webpack.Progress] 82% module order optimization OccurrenceOrderModuleIdsPlugin + [webpack.Progress] 82% advanced module order optimization + [webpack.Progress] 83% before module ids + [webpack.Progress] 83% module ids + [webpack.Progress] 84% module id optimization + [webpack.Progress] 84% module id optimization + [webpack.Progress] 85% chunk reviving + [webpack.Progress] 85% chunk reviving RecordIdsPlugin + [webpack.Progress] 85% chunk order optimization + [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin + [webpack.Progress] 86% before chunk ids + [webpack.Progress] 86% chunk id optimization + [webpack.Progress] 86% chunk id optimization FlagIncludedChunksPlugin + [webpack.Progress] 87% after chunk id optimization + [webpack.Progress] 87% record modules + [webpack.Progress] 87% record modules RecordIdsPlugin + [webpack.Progress] 87% record chunks + [webpack.Progress] 87% record chunks RecordIdsPlugin + [webpack.Progress] 88% hashing + [webpack.Progress] 88% after hashing + [webpack.Progress] 89% record hash + [webpack.Progress] 89% module assets processing + [webpack.Progress] 90% chunk assets processing + [webpack.Progress] 90% additional chunk assets processing + [webpack.Progress] 91% recording + [webpack.Progress] 92% additional asset processing + [webpack.Progress] 92% additional asset processing PersistentChildCompilerSingletonPlugin + [webpack.Progress] 92% chunk asset optimization + [webpack.Progress] 92% chunk asset optimization TerserPlugin + [webpack.Progress] 93% after chunk asset optimization + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 0.2644ac28.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin main.9566b47f.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin runtime~main.4454362d.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin vendors~main.ea3b03c7.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 4.fb10b831.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 5.24d16558.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 6.750b57d6.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 7.1bd66a85.iframe.bundle.js generate SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin vendors~main.ea3b03c7.iframe.bundle.js attach SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 4.fb10b831.iframe.bundle.js attach SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 6.750b57d6.iframe.bundle.js attach SourceMap + [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin + [webpack.Progress] 93% asset optimization + [webpack.Progress] 94% after asset optimization + [webpack.Progress] 94% after seal + [webpack.Progress] 95% emitting + [webpack.Progress] 95% emitting HtmlWebpackPlugin + [webpack.Progress] 98% after emitting + [webpack.Progress] 98% after emitting SizeLimitsPlugin + [webpack.Progress] 100% + +info => Preview built (28 s) +WARN asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). +WARN This can impact web performance. +WARN Assets: +WARN static/media/github-logo.a8c48c59.svg (2.71 MiB) +WARN main.9566b47f.iframe.bundle.js (649 KiB) +WARN vendors~main.ea3b03c7.iframe.bundle.js (3.59 MiB) +WARN entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. +WARN Entrypoints: +WARN main (4.22 MiB) +WARN runtime~main.4454362d.iframe.bundle.js +WARN vendors~main.ea3b03c7.iframe.bundle.js +WARN main.9566b47f.iframe.bundle.js +WARN +info => Output directory: /var/folders/h8/8gtzxy5x1cb0w_3fbr6l5nyh0000gn/T/chromatic--99774-yrLSGvOWvEpe diff --git a/package.json b/package.json index 5a687a1f..884160d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.32.1", + "version": "1.32.2", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", @@ -10,15 +10,16 @@ }, "scripts": { "build": "NODE_ENV=production babel src --out-dir lib --copy-files", - "lint": "eslint . --ext .js,.jsx", - "storybook": "start-storybook -p 9009 -s public", "build-storybook": "build-storybook -s public", "build-storybook-docs": "build-storybook -s public --docs", + "chromatic": "npx chromatic", "deploy-storybook": "storybook-to-ghpages", + "lint": "eslint . --ext .js,.jsx", "prepublishOnly": "yarn build", "rs:link": "bin/link-rs", "rs:link:watch": "./node_modules/nodemon/bin/nodemon.js", "rs:unlink": "bin/unlink-rs", + "storybook": "start-storybook -p 9009 -s public", "test": "jest" }, "eslintConfig": { @@ -90,6 +91,7 @@ "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "babel-preset-react": "^6.24.1", "bootstrap": "5.0", + "chromatic": "^6.7.0", "classnames": "^2.2.5", "css-loader": "^3.4.2", "cypress": "9.3.1", @@ -138,7 +140,19 @@ "publishConfig": { "registry": "https://npm.pkg.github.com/" }, - "repository": "https://github.com/user-interviews/ui-design-system.git", - "author": "Dave Ferris ", - "license": "MIT" + "repository": { + "type": "git", + "url": "git+https://github.com/user-interviews/ui-design-system.git" + }, + "author": { + "name": "Dave Ferris", + "email": "dave@userinterviews.com" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/user-interviews/ui-design-system/issues" + }, + "readme": "ERROR: No README data found!", + "homepage": "https://github.com/user-interviews/ui-design-system#readme", + "_id": "@user-interviews/ui-design-system@1.32.0" } diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index e1616fb8..2e0ded41 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -1,6 +1,10 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Accordion Borderless 1`] = ` +======= exports[`Storyshots Components/Accordion Chevron Left 1`] = ` +>>>>>>> main
    +
    >>>>>> main >
    @@ -92,7 +145,11 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = `
    >>>>>> main >
    @@ -175,7 +274,11 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = `
    `; +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Accordion Chevron Left 1`] = ` +======= exports[`Storyshots Components/Accordion Default 1`] = ` +>>>>>>> main
    + + + + + Accordion Toggle #1 + + + ( + helper text + ) + +
    +
    + + 3 Items Selected + +======= > +>>>>>>> main
    @@ -302,6 +451,23 @@ exports[`Storyshots Components/Accordion Default 1`] = ` className="AccordionToggle__container--left" > + +<<<<<<< release/1.32.2 +======= @@ -364,6 +533,7 @@ exports[`Storyshots Components/Accordion Default 1`] = ` /> +>>>>>>> main
    @@ -392,7 +562,11 @@ exports[`Storyshots Components/Accordion Default 1`] = `
    `; +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Accordion Default 1`] = ` +======= exports[`Storyshots Components/Accordion Default Open 1`] = ` +>>>>>>> main
    >>>>>> main >
    • +<<<<<<< release/1.32.2 + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +======= I was opened by default! +>>>>>>> main
    @@ -603,7 +791,11 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
    `; +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Accordion Default Open 1`] = ` +======= exports[`Storyshots Components/Accordion Disabled 1`] = ` +>>>>>>> main
    `; +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Accordion In Card 1`] = ` +======= exports[`Storyshots Components/Accordion Separate 1`] = ` +>>>>>>> main
    -
    - +
    +
    +
      +
    • + Item 1 +
    • +
    • + Item 2 +
    • +
    • + Item 3 +
    • +
    +
    +
    +
    +
    + +
    +`; + +exports[`Storyshots Components/Accordion Separate 1`] = ` +
    +======= +
    +
    + +
    +
    +
      +
    • + I'm inside my own Accordion parent element +
    • +
    +
    +
    +
    +
    +
    +>>>>>>> main +
    +
    +
    +<<<<<<< release/1.32.2
    +`; + +exports[`Storyshots Components/Alert Announcement 1`] = ` +
    +
    >>>>>> main className="Alert Alert-announcement" >
    + Announcement message +======= > Announcement message
    @@ -1491,13 +1999,18 @@ exports[`Storyshots Components/Alert Success 1`] = ` className="Alert__message" > Success message +>>>>>>> main
    `; +<<<<<<< release/1.32.2 +exports[`Storyshots Components/Alert Error 1`] = ` +======= exports[`Storyshots Components/Alert Warning 1`] = ` +>>>>>>> main
    +<<<<<<< release/1.32.2 + Error title +======= Warning title +>>>>>>> main
    +<<<<<<< release/1.32.2 + Error message +
    +======= Warning message
    @@ -1626,27 +2148,1029 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` "transformOrigin": "0.5em 0.5em", } } - viewBox="0 0 512 512" - xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 512 512" + xmlns="http://www.w3.org/2000/svg" + > + + + + + + + +
    +
    +
    + Success title +
    +
    + Success message +
    +
    +
    + + Primary action + +>>>>>>> main +
    +
    +
    +`; + +exports[`Storyshots Components/Alert Info 1`] = ` +
    +
    +
    +<<<<<<< release/1.32.2 + + + +
    +
    +
    +
    + + + + +
    +
    +
    + Info title +
    +
    + Info message +
    +
    + +
    +
    +
    +
    +
    + + +
    +
    +
    +<<<<<<< release/1.32.2 + Info title +======= + Announcement title +>>>>>>> main +
    +
    +<<<<<<< release/1.32.2 + Info message +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Alert Success 1`] = ` +
    +
    +
    + + +======= + Announcement message +
    +
    + +
    +
    +
    +
    + Success title +
    +
    + Success message +
    +
    +
    +<<<<<<< release/1.32.2 +
    +`; + +exports[`Storyshots Components/Alert Warning 1`] = ` +
    +
    >>>>>> main + > +
    + +
    +
    +
    +<<<<<<< release/1.32.2 + Warning title +======= + Error title +>>>>>>> main +
    +
    +<<<<<<< release/1.32.2 + Warning message +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Alert With Call To Action 1`] = ` +
    +

    + Default CTA rendered by component +

    +======= + Error message +
    +
    + +
    + +
    +
    +>>>>>>> main +
    +
    + +
    +
    +
    +<<<<<<< release/1.32.2 + Success title +======= + Warning title +>>>>>>> main +
    +
    +<<<<<<< release/1.32.2 + Success message +======= + Warning message +>>>>>>> main +
    +
    + +
    + +
    +
    +<<<<<<< release/1.32.2 +
    + Custom CTA via + + message + + prop +

    +
    >>>>>> main + > +
    +<<<<<<< release/1.32.2 + + + + +======= + +>>>>>>> main +
    +
    +
    +<<<<<<< release/1.32.2 + Info title +======= + Connect to Google Calendar to create reminders automatically +>>>>>>> main +
    +
    +<<<<<<< release/1.32.2 + Info message +
    +
    +
    + + Primary action + +======= +
    + When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. +
    + +
    +
    +
    + +>>>>>>> main +
    +
    +

    + Custom CTA via + + action + + prop +

    +
    +
    + +======= + className="Alert__icon" + > + +>>>>>>> main +
    +
    +
    +
    + - + +
    - Success title + Announcement title
    - Success message + Announcement message
    - - Primary action - + Connect to Google Calendar to create reminders automatically +
    +
    + When you confirm a session we’ll automatically + add an event and reminders to your Google Calendar. +
    +
    +
    +
    +
    +`; + +exports[`Storyshots Components/Alert With Dismiss 1`] = ` +
    - Info title + Default title
    - Info message + Default message
    -
    -
    -
    - -
    +
    +`; + +exports[`Storyshots Components/Avatar Large 1`] = ` +
    +
    - Announcement title -
    -
    - Announcement message + + RR +
    >>>>>> main >
    >>>>>> main >
    @@ -145,11 +113,7 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = `
    >>>>>> main >
    @@ -274,11 +217,7 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = `
    `; -<<<<<<< release/1.32.2 exports[`Storyshots Components/Accordion Chevron Left 1`] = ` -======= -exports[`Storyshots Components/Accordion Default 1`] = ` ->>>>>>> main
    3 Items Selected -======= - > - - - - - Accordion Toggle #1 - - - ( - helper text - ) - -
    -
    - - 3 Items Selected - - - - ->>>>>>> main
    @@ -451,7 +323,6 @@ exports[`Storyshots Components/Accordion Default 1`] = ` className="AccordionToggle__container--left" > - -<<<<<<< release/1.32.2 -======= - - - ->>>>>>> main
    @@ -562,11 +392,7 @@ exports[`Storyshots Components/Accordion Default 1`] = `
    `; -<<<<<<< release/1.32.2 exports[`Storyshots Components/Accordion Default 1`] = ` -======= -exports[`Storyshots Components/Accordion Default Open 1`] = ` ->>>>>>> main
    >>>>>> main >
    • -<<<<<<< release/1.32.2 Item 1
    • @@ -779,9 +600,6 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
    • Item 3 -======= - I was opened by default! ->>>>>>> main
    @@ -791,11 +609,7 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
    `; -<<<<<<< release/1.32.2 exports[`Storyshots Components/Accordion Default Open 1`] = ` -======= -exports[`Storyshots Components/Accordion Disabled 1`] = ` ->>>>>>> main
    `; -<<<<<<< release/1.32.2 exports[`Storyshots Components/Accordion In Card 1`] = ` -======= -exports[`Storyshots Components/Accordion Separate 1`] = ` ->>>>>>> main
    -<<<<<<< release/1.32.2
    @@ -1408,7 +1124,6 @@ exports[`Storyshots Components/Accordion Separate 1`] = ` } } > -=======
    @@ -1488,7 +1203,6 @@ exports[`Storyshots Components/Accordion Separate 1`] = `

    ->>>>>>> main
    @@ -1509,11 +1223,7 @@ exports[`Storyshots Components/Accordion Separate 1`] = ` -<<<<<<< release/1.32.2 - Accordion Toggle #1 -======= Accordion Toggle #2 ->>>>>>> main
    -<<<<<<< release/1.32.2 -
    +
    +`; + +exports[`Storyshots Components/Alert Announcement 1`] = ` +
    - -
    -
    -
      -
    • - I'm inside my own Accordion parent element -
    • -
    -
    -
    -
    -
    -
    -`; - -exports[`Storyshots Components/Alert Announcement 1`] = ` -
    -
    -`; - -exports[`Storyshots Components/Alert Announcement 1`] = ` -
    -
    >>>>>> main - className="Alert Alert-announcement" - > -
    -
    - Announcement message -======= > Announcement message
    @@ -1999,18 +1611,13 @@ exports[`Storyshots Components/Alert Success 1`] = ` className="Alert__message" > Success message ->>>>>>> main
    `; -<<<<<<< release/1.32.2 -exports[`Storyshots Components/Alert Error 1`] = ` -======= exports[`Storyshots Components/Alert Warning 1`] = ` ->>>>>>> main
    -<<<<<<< release/1.32.2 - Error title -======= Warning title ->>>>>>> main
    -<<<<<<< release/1.32.2 - Error message -
    -======= Warning message
    @@ -2126,1133 +1724,80 @@ exports[`Storyshots Components/Alert With Call To Action 1`] = ` - - - - - - -
    -
    -
    - Success title -
    -
    - Success message -
    -
    -
    - - -`; - -exports[`Storyshots Components/Alert Info 1`] = ` -
    -
    -
    -<<<<<<< release/1.32.2 - - - -
    -
    -
    -
    - - - - -
    -
    -
    - Info title -
    -
    - Info message -
    -
    - -
    -
    -
    -
    -
    - - -
    -
    -
    -<<<<<<< release/1.32.2 - Info title -======= - Announcement title ->>>>>>> main -
    -
    -<<<<<<< release/1.32.2 - Info message -
    -
    -
    -
    -`; - -exports[`Storyshots Components/Alert Success 1`] = ` -
    -
    -
    - - -======= - Announcement message -
    -
    - -
    -
    -
    -
    - Success title -
    -
    - Success message -
    -
    -
    -<<<<<<< release/1.32.2 - -`; - -exports[`Storyshots Components/Alert Warning 1`] = ` -
    -
    >>>>>> main - > -
    - -
    -
    -
    -<<<<<<< release/1.32.2 - Warning title -======= - Error title ->>>>>>> main -
    -
    -<<<<<<< release/1.32.2 - Warning message -
    -
    -
    -
    -`; - -exports[`Storyshots Components/Alert With Call To Action 1`] = ` -
    -

    - Default CTA rendered by component -

    -======= - Error message -
    - - -
    - -
    - ->>>>>>> main -
    -
    - -
    -
    -
    -<<<<<<< release/1.32.2 - Success title -======= - Warning title ->>>>>>> main -
    -
    -<<<<<<< release/1.32.2 - Success message -======= - Warning message ->>>>>>> main -
    -
    - -
    - -
    -
    -<<<<<<< release/1.32.2 -
    - Custom CTA via - - message - - prop -

    -
    >>>>>> main - > -
    -<<<<<<< release/1.32.2 - - - - -======= - ->>>>>>> main -
    -
    -
    -<<<<<<< release/1.32.2 - Info title -======= - Connect to Google Calendar to create reminders automatically ->>>>>>> main -
    -
    -<<<<<<< release/1.32.2 - Info message -
    -
    -
    - - Primary action - -======= -
    - When you confirm a session we’ll automatically add an event and reminders to your Google Calendar. -
    - -
    -
    -
    - ->>>>>>> main -
    -
    -

    - Custom CTA via - - action - - prop -

    -
    -
    - -======= - className="Alert__icon" - > - ->>>>>>> main -
    -
    -
    -
    - + -
    -
    -
    - Announcement title -
    -
    - Announcement message -
    + +
    - Connect to Google Calendar to create reminders automatically + Success title
    - When you confirm a session we’ll automatically - add an event and reminders to your Google Calendar. + Success message
    - + Primary action +
    - -`; - -exports[`Storyshots Components/Alert With Dismiss 1`] = ` -
    - Default title + Info title
    - Default message + Info message
    +
    -
    -`; - -exports[`Storyshots Components/Avatar Large 1`] = ` -
    -
    +
    - +
    +
    + Announcement title +
    +
    + Announcement message
    >>>>>> main + className="Alert__action" >
    >>>>>> main > +
    +
    +`; + exports[`Storyshots Components/Form Default 1`] = `
    +### Unstyled Toggle +- Use the `unstyled` and `removeCaret` prop on `DropdownToggle` to remove default styling. + + + + + ## Formatting @@ -66,6 +73,7 @@ Avoid the Dropdown component if: ## Best practices + ### General The Dropdown component should: diff --git a/src/Dropdown/Dropdown.stories.jsx b/src/Dropdown/Dropdown.stories.jsx index 73af32a4..65632dbc 100644 --- a/src/Dropdown/Dropdown.stories.jsx +++ b/src/Dropdown/Dropdown.stories.jsx @@ -3,7 +3,8 @@ import React from 'react'; import { Dropdown, DropdownToggle, DropdownItem, DropdownMenu, } from 'src/Dropdown'; -import { faEllipsisV, faFileAlt } from '@fortawesome/pro-solid-svg-icons'; + +import { faEllipsisV, faFileAlt, faChevronDown } from '@fortawesome/pro-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import mdx from './Dropdown.mdx'; @@ -101,3 +102,33 @@ export const IconSwap = () => ( ); + +export const UnstyledToggle = () => ( + + +
    +
    +
    Team A
    +
    Organization
    +
    +
    + +
    +
    +
    + + Team A + Team B + Team C + +
    +); diff --git a/src/Dropdown/DropdownItem.scss b/src/Dropdown/DropdownItem.scss index 63fd5903..6e0efeea 100644 --- a/src/Dropdown/DropdownItem.scss +++ b/src/Dropdown/DropdownItem.scss @@ -5,7 +5,8 @@ color: $ux-gray-900; &:hover { - background-color: $ux-blue-100; + background-color: $ux-blue-200; + text-decoration: none; } &:focus { diff --git a/src/Dropdown/DropdownToggle.jsx b/src/Dropdown/DropdownToggle.jsx index 7d714dc2..691850ce 100644 --- a/src/Dropdown/DropdownToggle.jsx +++ b/src/Dropdown/DropdownToggle.jsx @@ -18,6 +18,7 @@ const DropdownToggle = ({ id, leadingIcon, removeCaret, + unstyled, ...props }) => ( { leadingIcon && ()} { children } - ); +); DropdownToggle.propTypes = { /** @@ -64,6 +69,10 @@ DropdownToggle.propTypes = { This allows you to use a different icon of your choice. */ removeCaret: PropTypes.bool, + /** + If true, it removes all styling from toggle button. Use for full custom DropdownToggle styling. + */ + unstyled: PropTypes.bool, }; DropdownToggle.defaultProps = { @@ -75,6 +84,7 @@ DropdownToggle.defaultProps = { id: undefined, leadingIcon: undefined, removeCaret: undefined, + unstyled: undefined, }; export default DropdownToggle; diff --git a/src/Dropdown/DropdownToggle.scss b/src/Dropdown/DropdownToggle.scss index 924f0120..1bc53b31 100644 --- a/src/Dropdown/DropdownToggle.scss +++ b/src/Dropdown/DropdownToggle.scss @@ -7,6 +7,10 @@ $warning: $ux-yellow-400; .DropdownToggle { @include font-type-30--bold; + &--unstyled { + all: unset; + } + i, svg { &.icon-left { margin-right: $ux-spacing-20; diff --git a/src/Select/styles.js b/src/Select/styles.js index d84c961b..ad8e46ce 100644 --- a/src/Select/styles.js +++ b/src/Select/styles.js @@ -91,7 +91,7 @@ const defaultStyles = ({ size }) => ({ }) => ({ ...styles, backgroundColor: isSelected ? systemColors.UX_BLUE_200 : styles.backgroundColor, - color: systemColors.UX_BLACK, + color: systemColors.UX_GRAY_900, fontWeight: fontWeights.light, fontSize: '0.875rem', cursor: 'pointer', From 52fb4835e727b849b1d5cbb657bfad9782ff4438 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Aug 2022 15:59:56 -0700 Subject: [PATCH 28/33] Merge release/1.34.0 into main branch (#719) * add disabled ToggleInput story (#713) * Accordion updates for better content flexibility and alignment with Card (#708) --- package.json | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 330 +++++++++------------ src/Accordion/Accordion.jsx | 13 +- src/Accordion/Accordion.mdx | 4 +- src/Accordion/Accordion.stories.jsx | 144 ++++----- src/Accordion/AccordionCollapse.jsx | 15 +- src/Accordion/AccordionCollapse.scss | 2 +- src/Accordion/AccordionItem.jsx | 12 +- src/Accordion/AccordionToggle.jsx | 35 +-- src/Accordion/AccordionToggle.scss | 23 +- src/ToggleInput/ToggleInput.jsx | 14 +- src/ToggleInput/ToggleInput.mdx | 6 + src/ToggleInput/ToggleInput.scss | 5 +- src/ToggleInput/ToggleInput.stories.jsx | 19 ++ 14 files changed, 303 insertions(+), 321 deletions(-) diff --git a/package.json b/package.json index dcb44947..96c13006 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.33.0", + "version": "1.34.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index f1c07dcb..38df7894 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -16,6 +16,7 @@ exports[`Storyshots Components/Accordion Borderless 1`] = ` >
    -
    -
    -
      -
    • - Item 1 -
    • -
    • - Item 2 -
    • -
    • - Item 3 -
    • -
    -
    -
    -
    -
    -
    +

    + This text is aligned with the content of other Card components +

    • Item 1 @@ -1113,6 +966,20 @@ exports[`Storyshots Components/Accordion In Card 1`] = `
    +
    +
    +
    +

    + Card title +

    +
    +
    `; @@ -1132,6 +999,7 @@ exports[`Storyshots Components/Accordion Separate 1`] = ` > ); @@ -107,27 +104,25 @@ AccordionToggle.propTypes = { Aligns the Chevron icon to the right (default) */ chevronRight: PropTypes.bool, - className: PropTypes.string, - /** - A unique key used to control this item's collapse/expand. - */ + /** + A unique key used to control this item's collapse/expand. + */ disabled: PropTypes.bool, eventKey: PropTypes.string.isRequired, helperText: PropTypes.string, - label: PropTypes.string, leadingIcon: PropTypes.object, title: PropTypes.string, + UNSAFE_className: PropTypes.string, }; AccordionToggle.defaultProps = { chevronLeft: false, chevronRight: true, - className: undefined, disabled: undefined, helperText: undefined, - label: undefined, leadingIcon: undefined, title: undefined, + UNSAFE_className: undefined, }; export default AccordionToggle; diff --git a/src/Accordion/AccordionToggle.scss b/src/Accordion/AccordionToggle.scss index ec3912d6..77f1f9c9 100644 --- a/src/Accordion/AccordionToggle.scss +++ b/src/Accordion/AccordionToggle.scss @@ -5,23 +5,21 @@ width: 100%; &__container { - display: flex; - justify-content: space-between; - - padding: 1rem; + display: grid; + grid-template-columns: auto 1.5rem; + grid-template-areas: 'content chevron-right'; + padding: 1rem 1.5rem; &--right { - display: flex; - align-items: center; - + grid-area: chevron-right; + .AccordionToggle__chevron-right { float: right; } } - &--left { - display: flex; - align-items: center; + &--content { + grid-area: content; } } @@ -74,11 +72,6 @@ @include font-type-30; } - &__label { - @include font-type-10--uppercase; - color: $ux-blue-600; - } - &--disabled { opacity: 0.5; } diff --git a/src/ToggleInput/ToggleInput.jsx b/src/ToggleInput/ToggleInput.jsx index c6e1f1ec..024d712d 100644 --- a/src/ToggleInput/ToggleInput.jsx +++ b/src/ToggleInput/ToggleInput.jsx @@ -1,4 +1,5 @@ import React from 'react'; +import classNames from 'classnames'; import PropTypes from 'prop-types'; import Toggle from 'react-toggle'; @@ -14,9 +15,18 @@ const ToggleInput = ({ labelText, name, onToggle, + // eslint-disable-next-line camelcase + UNSAFE_className, ...props }) => ( -
    `; -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Row 1`] = ` +exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Column Full Width 1`] = `
    @@ -5362,7 +5398,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Row 1`
    `; -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = ` +exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Row 1`] = `
     ( - use the knobs to try out different variations + helper text )
    @@ -5450,7 +5486,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = `
    `; -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default Row 1`] = ` +exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = `
     ( - helper text + use the knobs to try out different variations )
    @@ -5538,7 +5574,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default Row 1`]
    `; -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description 1`] = ` +exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Column 1`] = `
    `; +exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Row 1`] = ` +
    +
    + + Legend + +  ( + helper text + ) + + +
    + + + +
    +
    +
    +`; + exports[`Storyshots Components/Form Elements/Form Control Label Checkbox 1`] = `
    `; -exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = ` +exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Column Full Width 1`] = `
    @@ -6685,7 +6845,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] =
    `; -exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = ` +exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = `
     ( - use the knobs to try out different variations + helper text )
    @@ -6779,7 +6939,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = `
    `; -exports[`Storyshots Components/Form Elements/RadioButtonGroup Default Row 1`] = ` +exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = `
     ( - helper text + use the knobs to try out different variations )
    @@ -6873,7 +7033,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Default Row 1`] =
    `; -exports[`Storyshots Components/Form Elements/RadioButtonGroup Description 1`] = ` +exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Column 1`] = `
    `; +exports[`Storyshots Components/Form Elements/RadioButtonGroup Row 1`] = ` +
    +
    + + Legend + +  ( + helper text + ) + + +
    + + + +
    +
    +
    +`; + exports[`Storyshots Components/IconCell Default 1`] = `
    { const eventValue = parseInput(event.target.value); @@ -42,6 +43,7 @@ export default function CheckboxButtonGroup({ 'CheckboxButtonGroup--row': row, 'CheckboxButtonGroup--row--full-width': row && fullWidth, 'CheckboxButtonGroup--row--compact': row && !fullWidth, + 'CheckboxButtonGroup--column--full-width': column && fullWidth, })} id={id} > diff --git a/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx b/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx index 328d415b..4ff3f348 100644 --- a/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx +++ b/src/CheckboxButtonGroup/CheckboxButtonGroup.mdx @@ -1,6 +1,7 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; +import CheckboxButtonGroup from './CheckboxButtonGroup'; -# Checkbox Button Group +# CheckboxButtonGroup ## @@ -12,16 +13,10 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -### When to use -- Reason 1 -- Reason 2 - -### When to not use -- Reason 1 -- Reason 2 ## Props -- WIP + + ## Stories @@ -33,7 +28,13 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -### Bordered +### Row + + + + + +### Bordered Row - Multi-selection button. Only used in the context of Checkbox FormGroups. @@ -41,14 +42,26 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; -### Description +### Description Column - Multi-selection button. Includes helper text and/or a description in addition to the default label. + + + + +### Description Row + +### Bordered Column Full Width + + + + + ## Formatting ### States diff --git a/src/CheckboxButtonGroup/CheckboxButtonGroup.scss b/src/CheckboxButtonGroup/CheckboxButtonGroup.scss index e6828f2d..c22236fc 100644 --- a/src/CheckboxButtonGroup/CheckboxButtonGroup.scss +++ b/src/CheckboxButtonGroup/CheckboxButtonGroup.scss @@ -13,4 +13,8 @@ &--row { @include row-control-group; } + + &--column--full-width { + width: 100%; + } } diff --git a/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx b/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx index 84191ced..3301fe5d 100644 --- a/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx +++ b/src/CheckboxButtonGroup/CheckboxButtonGroup.stories.jsx @@ -105,7 +105,7 @@ export const Default = () => { ); }; -export const DefaultRow = () => ( +export const Row = () => ( ( ); -export const Description = () => ( +export const DescriptionColumn = () => ( ( ); + +export const BorderedColumnFullWidth = () => ( + + + This is where the description goes + + + This is where the description goes + + + This is where the description goes + + +); diff --git a/src/RadioButtonGroup/RadioButtonGroup.jsx b/src/RadioButtonGroup/RadioButtonGroup.jsx index f3bbc814..bb3c400b 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.jsx +++ b/src/RadioButtonGroup/RadioButtonGroup.jsx @@ -15,6 +15,7 @@ export default function RadioButtonGroup({ onChange, }) { const row = orientation === ORIENTATIONS.ROW; + const column = orientation === ORIENTATIONS.COLUMN; const handleChangeValue = (event) => { onChange(event.target.value); @@ -30,6 +31,7 @@ export default function RadioButtonGroup({ 'RadioButtonGroup--row': row, 'RadioButtonGroup--row--full-width': row && fullWidth, 'RadioButtonGroup--row--compact': row && !fullWidth, + 'RadioButtonGroup--column--full-width': column && fullWidth, }, )} name={name} diff --git a/src/RadioButtonGroup/RadioButtonGroup.mdx b/src/RadioButtonGroup/RadioButtonGroup.mdx index dd4e0926..3afa137d 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.mdx +++ b/src/RadioButtonGroup/RadioButtonGroup.mdx @@ -1,6 +1,7 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; +import RadioButtonGroup from './RadioButtonGroup'; -# Radio Button Group +# RadioButtonGroup ## @@ -8,13 +9,13 @@ import { ArgsTable, Story, Canvas } from '@storybook/addon-docs/blocks'; A collections of radio buttons describing a set of related options. Only one option selected at a time. -### When to use -- Reason 1 -- Reason 2 + + + -### When to not use -- Reason 1 -- Reason 2 +## Props + + ## Stories @@ -26,7 +27,13 @@ Single-selection button. -### Bordered +### Row + + + + + +### Bordered Row Single-selection button. Only used in the context of Radio FormGroups. @@ -34,7 +41,13 @@ Single-selection button. Only used in the context of Radio FormGroups. -### Description +### Description Column + + + + + +### Description Row Single-selection button. Includes helper text and/or a description in addition to the default label. @@ -42,6 +55,14 @@ Single-selection button. Includes helper text and/or a description in addition t +### Bordered Column Full Width + +Single-selection button. Includes helper text and/or a description in addition to the default label. + + + + + ## Formatting diff --git a/src/RadioButtonGroup/RadioButtonGroup.scss b/src/RadioButtonGroup/RadioButtonGroup.scss index 6f598043..f491b898 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.scss +++ b/src/RadioButtonGroup/RadioButtonGroup.scss @@ -5,4 +5,8 @@ &--row { @include row-control-group; } + + &--column--full-width { + width: 100%; + } } diff --git a/src/RadioButtonGroup/RadioButtonGroup.stories.jsx b/src/RadioButtonGroup/RadioButtonGroup.stories.jsx index 274ee48f..d0cb53ef 100644 --- a/src/RadioButtonGroup/RadioButtonGroup.stories.jsx +++ b/src/RadioButtonGroup/RadioButtonGroup.stories.jsx @@ -105,7 +105,7 @@ export const Default = () => { ); }; -export const DefaultRow = () => ( +export const Row = () => ( ( ); -export const Description = () => ( +export const DescriptionColumn = () => ( ( ); + +export const BorderedColumnFullWidth = () => ( + + + This is where the description goes + + + This is where the description goes + + + This is where the description goes + + +); From 05cae34bb59d26f74315c548d4c836296a237d49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 15:09:07 -0700 Subject: [PATCH 31/33] Merge release/1.34.3 into main branch (#740) * Added ability to pass a `trailingIcon` to `ProfileCell` (#733) --- package.json | 2 +- spec/__snapshots__/Storyshots.test.js.snap | 109 ++++++++++++++++++--- src/ProfileCell/ProfileCell.jsx | 14 ++- src/ProfileCell/ProfileCell.scss | 11 +++ src/ProfileCell/ProfileCell.stories.jsx | 13 ++- 5 files changed, 132 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index 0d4a2832..2ea1ffa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.34.2", + "version": "1.34.3", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index dd29b473..0f4880cf 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -8555,11 +8555,15 @@ exports[`Storyshots Components/Profile Cell Large 1`] = ` } } > -
    - Riley Researcher -
    +
    + Riley Researcher +
    +
    @@ -8615,11 +8619,15 @@ exports[`Storyshots Components/Profile Cell Small 1`] = ` } } > -
    - Riley Researcher -
    +
    + Riley Researcher +
    +
    @@ -8667,11 +8675,15 @@ exports[`Storyshots Components/Profile Cell With Image 1`] = ` } } > -
    - Riley Researcher -
    +
    + Riley Researcher +
    +
    @@ -8690,6 +8702,79 @@ exports[`Storyshots Components/Profile Cell With Image 1`] = `
    `; +exports[`Storyshots Components/Profile Cell With Trailing Icon 1`] = ` +
    +
    +
    +
    +
    + Riley Researcher +
    +
    +
    +
    +
    +
    + Riley Researcher +
    + +
    +
    + riley@userinterviews.com +
    +
    +
    +
    +`; + exports[`Storyshots Components/RadioButton Default 1`] = `
    -
    - {props.user.name} -
    +
    +
    + {props.user.name} +
    + {props.trailingIcon && ( + + )} +
    {props.subtitle || ' '}
    @@ -62,6 +68,7 @@ ProfileCell.propTypes = { maxWidth: PropTypes.string, showAlert: PropTypes.bool, subtitle: PropTypes.node, + trailingIcon: PropTypes.object, user: ProfileUser.isRequired, }; @@ -71,6 +78,7 @@ ProfileCell.defaultProps = { maxWidth: undefined, showAlert: false, subtitle: undefined, + trailingIcon: undefined, }; export default ProfileCell; diff --git a/src/ProfileCell/ProfileCell.scss b/src/ProfileCell/ProfileCell.scss index 971ad601..ec507c8b 100644 --- a/src/ProfileCell/ProfileCell.scss +++ b/src/ProfileCell/ProfileCell.scss @@ -13,6 +13,17 @@ white-space: nowrap; } + &__name__container { + display: flex; + flex-direction: row; + align-items: center; + } + + &__trailing_icon { + color: $ux-gray-800; + margin-left: 0.25rem; + } + &__name { @include font-type-30--bold; @include truncate; diff --git a/src/ProfileCell/ProfileCell.stories.jsx b/src/ProfileCell/ProfileCell.stories.jsx index 3ad49122..926a196c 100644 --- a/src/ProfileCell/ProfileCell.stories.jsx +++ b/src/ProfileCell/ProfileCell.stories.jsx @@ -2,7 +2,7 @@ import React from 'react'; import { withKnobs, text, number, boolean, } from '@storybook/addon-knobs'; - +import { faShieldCheck } from '@fortawesome/pro-solid-svg-icons'; import ProfileCell from 'src/ProfileCell'; import mdx from './ProfileCell.mdx'; @@ -71,3 +71,14 @@ export const WithImage = () => ( user={userWithImage} /> ); + +export const WithTrailingIcon = () => ( + +); From 268113bfc510fdaea4c77482a617b48e6d9be352 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Sep 2022 20:40:11 +0000 Subject: [PATCH 32/33] Prepare release 1.35.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2ea1ffa0..a1d63fdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "1.34.3", + "version": "1.35.0", "dependencies": { "react-bootstrap": "^2.0.2", "react-router-dom": "^5.2.0", From d34252659c9ec4392c16404496cf5c9a6224f888 Mon Sep 17 00:00:00 2001 From: Jason Basuil Date: Wed, 14 Sep 2022 13:42:48 -0700 Subject: [PATCH 33/33] update snapshots --- spec/__snapshots__/Storyshots.test.js.snap | 1437 +------------------- 1 file changed, 62 insertions(+), 1375 deletions(-) diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 30caaee7..ecb5e726 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -4480,188 +4480,13 @@ exports[`Storyshots Components/CardList Default 1`] = `
    -<<<<<<< release/1.35.0 -======= -

    - Large card with title -

    - - (helper text) - -
    -

    - And a subtitle -

    -
    - Use knobs to try out the different card sizes -
    - -
    -`; - -exports[`Storyshots Components/CardContainer Default 1`] = ` -
    -
    -
    -
    -

    - Card 1 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 2 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -

    - Card 3 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    -
    -`; - -exports[`Storyshots Components/CardList Default 1`] = ` -
    -
    -
    -
    -

    - Card 1 -

    -
    -

    - The fastest way to recruit research participants. Source from a pool of more than 850,000 participants to reach nearly any target audience. -

    -
      -
    • - 500,000+ sessions completed -
    • -
    • - $19 million+ incentives distributed -
    • -
    • - 3 hours median time to 1st matched participant -
    • -
    -
    -
    ->>>>>>> main

    -<<<<<<< release/1.35.0 Card 1 -======= - Card 2 ->>>>>>> main

    -<<<<<<< release/1.35.0 Card 2

    @@ -4720,8 +4544,6 @@ exports[`Storyshots Components/CardList Default 1`] = `

    -======= ->>>>>>> main Card 3

    @@ -5526,7 +5348,6 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Column type="checkbox" value="2" /> -<<<<<<< release/1.35.0 Label 2 This is where the description goes -======= - first choice ->>>>>>> main -
    - -
    -`; - -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Column Full Width 1`] = ` -
    -
    - - Legend - -  ( - helper text - ) - - -
    - - -
    @@ -5761,11 +5442,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Row 1` type="checkbox" value="1" /> -<<<<<<< release/1.35.0 - Value 1 -======= Label 1 ->>>>>>> main
    @@ -5817,11 +5486,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Bordered Row 1`
    `; -<<<<<<< release/1.35.0 -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Column 1`] = ` -======= exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = ` ->>>>>>> main
    >>>>>> main >
    -
    @@ -5991,11 +5574,7 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Default 1`] = `
    `; -<<<<<<< release/1.35.0 -exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Row 1`] = ` -======= exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Column 1`] = ` ->>>>>>> main
    ->>>>>>> main
    `; @@ -7154,139 +6716,6 @@ exports[`Storyshots Components/Form Elements/Form Group With Trailing Icon And B `; exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Column Full Width 1`] = ` -<<<<<<< release/1.35.0 -======= -
    -
    - - Legend - -  ( - helper text - ) - - -
    - - - -
    -
    -
    -`; - -exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = ` ->>>>>>> main
    Label 1 -<<<<<<< release/1.35.0 @@ -7346,8 +6774,6 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = className="FormControlLabel__children" > This is where the description goes -======= ->>>>>>> main
    @@ -7471,11 +6891,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = type="radio" value="1" /> -<<<<<<< release/1.35.0 Label 1 -======= - Value 1 ->>>>>>> main
    @@ -7531,11 +6939,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Row 1`] = `; -<<<<<<< release/1.35.0 exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = ` -======= -exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Column 1`] = ` ->>>>>>> main
    >>>>>> main > - -
    @@ -7708,11 +7033,7 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Column `; -<<<<<<< release/1.35.0 exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Column 1`] = ` -======= -exports[`Storyshots Components/Form Elements/RadioButtonGroup Description Row 1`] = ` ->>>>>>> main
    -======= ->>>>>>> main
    `; @@ -9521,7 +8825,6 @@ exports[`Storyshots Components/RadioButton With Description 1`] = ` -<<<<<<< release/1.35.0 This is where the description goes @@ -9529,92 +8832,6 @@ exports[`Storyshots Components/RadioButton With Description 1`] = ` `; exports[`Storyshots Components/Selects/Async Default 1`] = ` -======= -
    -
    - Riley Researcher -
    -
    -
    -
    - riley@userinterviews.com -
    -
    - +1 888 888 8888 -
    -
    - (-5:00) America/New York -
    -
    - - - -`; - -exports[`Storyshots Components/Profile Cell Small 1`] = ` -
    -
    -
    -
    -
    - - RR - -
    -
    -
    -
    -
    -
    - Riley Researcher -
    -
    -
    - riley@userinterviews.com -
    -
    -
    -
    -`; - -exports[`Storyshots Components/Profile Cell With Image 1`] = ` ->>>>>>> main
    >>>>>> main >
    >>>>>> main >
    -<<<<<<< release/1.35.0 Select...
    -======= - Riley Researcher -
    -
    - -
    -
    -
    - Riley Researcher -
    -
    ->>>>>>> main
    -<<<<<<< release/1.35.0 @@ -9755,16 +8934,6 @@ exports[`Storyshots Components/Profile Cell With Image 1`] = ` d="M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z" /> -======= -
    - riley@userinterviews.com -
    -
    - +1 888 888 8888 -
    -
    - (-5:00) America/New York ->>>>>>> main
    @@ -9772,11 +8941,7 @@ exports[`Storyshots Components/Profile Cell With Image 1`] = ` `; -<<<<<<< release/1.35.0 exports[`Storyshots Components/Selects/Async In Modal 1`] = ` -======= -exports[`Storyshots Components/Profile Cell With Trailing Icon 1`] = ` ->>>>>>> main
    >>>>>> main >
    >>>>>> main >
    -<<<<<<< release/1.35.0 -======= -
    -
    -
    -
    - Riley Researcher -
    - -
    ->>>>>>> main
    -<<<<<<< release/1.35.0 -======= - riley@userinterviews.com ->>>>>>> main
    @@ -10023,7 +9137,6 @@ exports[`Storyshots Components/Selects/Async Labeled 1`] = ` htmlFor="async-select" id="async-label" > -<<<<<<< release/1.35.0 A labeled select -
    - - -======= - - - Label 2 - - - This is where the description goes - - ->>>>>>> main + onMouseDown={[Function]} + onTouchEnd={[Function]} + > + + + + + `; @@ -10166,11 +9256,7 @@ exports[`Storyshots Components/Selects/AsyncCreatable Default 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    @@ -10202,27 +9284,16 @@ exports[`Storyshots Components/Selects/AsyncCreatable Default 1`] = ` > >>>>>> main autoCapitalize="none" autoComplete="off" autoCorrect="off" className="" disabled={false} -<<<<<<< release/1.35.0 id="react-select-2-input" -======= - id="react-select-3-input" ->>>>>>> main onBlur={[Function]} onChange={[Function]} onFocus={[Function]} @@ -10474,21 +9545,12 @@ exports[`Storyshots Components/Selects/Creatable Default 1`] = ` } >
    >>>>>> main onKeyDown={[Function]} > >>>>>> main />
    >>>>>> main > Select...
    @@ -10520,26 +9578,15 @@ exports[`Storyshots Components/Selects/Creatable Default 1`] = ` > >>>>>> main autoCapitalize="none" autoComplete="off" autoCorrect="off" className="" disabled={false} -<<<<<<< release/1.35.0 id="react-select-7-input" -======= - id="react-select-4-input" ->>>>>>> main onBlur={[Function]} onChange={[Function]} onFocus={[Function]} @@ -10607,7 +9654,6 @@ exports[`Storyshots Components/Selects/Creatable In Modal 1`] = ` } >
    >>>>>> main > - -
    -<<<<<<< release/1.35.0
    -
    >>>>>> main >

    @@ -10779,48 +9801,6 @@ exports[`Storyshots Components/Selects/Creatable In Modal 1`] = `

    -======= - className=" css-6j8wv5-Input" - data-value="" - > - ->>>>>>> main
    -<<<<<<< release/1.35.0 Cancel -======= - -
    ->>>>>>> main
    @@ -10878,21 +9842,13 @@ exports[`Storyshots Components/Selects/Single Custom Option With Checkbox 1`] = Custom option with checkbox
    >>>>>> main onKeyDown={[Function]} > >>>>>> main />
    Select... @@ -10933,53 +9888,6 @@ exports[`Storyshots Components/Selects/Single Custom Option With Checkbox 1`] = tabIndex={0} value="" /> -======= - id="react-select-5-placeholder" - > - Select... -
    -
    - -
    ->>>>>>> main
    >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-labelledby="select-label" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-16-input" -======= - id="react-select-12-input" - inputMode="none" - onBlur={[Function]} - onChange={[Function]} - onFocus={[Function]} - role="combobox" - tabIndex={0} - value="" - /> -
    -
    - - -
    - - - -`; - -exports[`Storyshots Components/Selects/Single Custom Option With Indeterminate Checkbox 1`] = ` -
    - -
    - - -
    -
    -
    - Select... -
    - >>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11235,11 +10034,7 @@ exports[`Storyshots Components/Selects/Single Custom Value Container 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-labelledby="select-label" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-17-input" -======= - id="react-select-14-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11337,11 +10120,7 @@ exports[`Storyshots Components/Selects/Single Default 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-label="Default select" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-9-input" -======= - id="react-select-6-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11491,11 +10258,7 @@ exports[`Storyshots Components/Selects/Single In Modal 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-labelledby="select-label" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-14-input" -======= - id="react-select-11-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11622,11 +10373,7 @@ exports[`Storyshots Components/Selects/Single Labeled 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-labelledby="select-label" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-12-input" -======= - id="react-select-9-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11724,11 +10459,7 @@ exports[`Storyshots Components/Selects/Single Loading 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-label="Loading select" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={true} -<<<<<<< release/1.35.0 id="react-select-11-input" -======= - id="react-select-8-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11833,11 +10552,7 @@ exports[`Storyshots Components/Selects/Single Multi Select 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    >>>>>> main aria-expanded={false} aria-haspopup={true} aria-labelledby="select-label" aria-readonly={true} className="css-mohuvp-dummyInput-DummyInput" disabled={false} -<<<<<<< release/1.35.0 id="react-select-13-input" -======= - id="react-select-10-input" ->>>>>>> main inputMode="none" onBlur={[Function]} onChange={[Function]} @@ -11935,11 +10638,7 @@ exports[`Storyshots Components/Selects/Single Searchable 1`] = ` > >>>>>> main />
    >>>>>> main > Select...
    @@ -11971,11 +10666,7 @@ exports[`Storyshots Components/Selects/Single Searchable 1`] = ` > >>>>>> main aria-expanded={false} aria-haspopup={true} aria-label="Searchable select" @@ -11984,11 +10675,7 @@ exports[`Storyshots Components/Selects/Single Searchable 1`] = ` autoCorrect="off" className="" disabled={false} -<<<<<<< release/1.35.0 id="react-select-10-input" -======= - id="react-select-7-input" ->>>>>>> main onBlur={[Function]} onChange={[Function]} onFocus={[Function]}