From f037e33e0998ceb0d47421c86e2aa5d012432053 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 08:57:47 -0700 Subject: [PATCH] Merge release/2.2.0 into main branch (#1014) * Update issue templates (#995) * Create -ui-design-system--pr.md (#996) * uses yalc for linking the DS to RS (#1000) * Bump @adobe/css-tools from 4.2.0 to 4.3.1 (#989) * upgrade storybook to 7.4.1 (#1005) * add TypeScript (#992) * Fixes up TS config (#993) * upgrade dependencies for semver (#1010) * adds necessary final step for unlinking rs (#1011) --- .babelrc | 3 +- .eslintrc | 29 +- .../-ui-design-system--issue.md | 35 + .../-ui-design-system--pr.md | 33 + .storybook/main.js | 8 +- README.md | 26 +- bin/link-rs | 16 +- bin/unlink-rs | 22 +- nodemon.json | 4 +- package.json | 61 +- spec/__snapshots__/Storyshots.test.js.snap | 37509 ++++------------ src/EmptyState/EmptyState.jsx | 83 - src/EmptyState/EmptyState.stories.jsx | 50 - src/EmptyState/EmptyState.stories.tsx | 48 + src/EmptyState/EmptyState.tsx | 57 + src/EmptyState/{index.js => index.ts} | 0 src/Layout/SidebarView/SidebarView.jsx | 1 + src/RichTextEditor/RichTextEditor.test.jsx | 2 +- .../RichTextEditor.test.jsx.snap | 2 +- src/Select/AsyncCreatableSelect.stories.jsx | 6 +- src/Select/CreatableSelect.stories.jsx | 12 +- src/Tabs/__snapshots__/Tabs.test.jsx.snap | 8 +- src/{index.js => index.ts} | 96 +- stories/Spacing/Spacing.stories.jsx | 20 +- tsconfig.json | 33 + yarn.lock | 7745 ++-- 26 files changed, 11772 insertions(+), 34137 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/-ui-design-system--issue.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/-ui-design-system--pr.md delete mode 100644 src/EmptyState/EmptyState.jsx delete mode 100644 src/EmptyState/EmptyState.stories.jsx create mode 100644 src/EmptyState/EmptyState.stories.tsx create mode 100644 src/EmptyState/EmptyState.tsx rename src/EmptyState/{index.js => index.ts} (100%) rename src/{index.js => index.ts} (53%) create mode 100644 tsconfig.json diff --git a/.babelrc b/.babelrc index 9cddf20e..0d927715 100644 --- a/.babelrc +++ b/.babelrc @@ -1,7 +1,8 @@ { "presets": [ "@babel/preset-env", - "@babel/preset-react" + "@babel/preset-react", + "@babel/preset-typescript" ], "plugins": [ "@babel/plugin-transform-runtime", diff --git a/.eslintrc b/.eslintrc index 7570f5b0..fd119440 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,5 +1,10 @@ { - "extends": "airbnb", + "extends": [ + "airbnb", + "plugin:@typescript-eslint/recommended", + "plugin:import/typescript" + ], + "parser": "@typescript-eslint/parser", "overrides": [ { "files": [ @@ -11,9 +16,9 @@ }, { "files": [ - "src/**/*.{js,jsx}", - "spec/**/*.{js,jsx}", - "stories/**/*.{js,jsx}" + "src/**/*.{js,jsx,ts,tsx}", + "spec/**/*.{js,jsx,ts,tsx}", + "stories/**/*.{js,jsx,ts,tsx}" ], "env": { "browser": true @@ -117,6 +122,7 @@ } }, "rules": { + "@typescript-eslint/explicit-function-return-type": "off", "class-methods-use-this": 0, "function-paren-newline": ["error", "consistent"], "func-names": ["error", "never"], @@ -141,9 +147,22 @@ "prefer-destructuring": "warn", "quotes": ["error", "single", { "allowTemplateLiterals" : true }], "radix": 0, + "react/jsx-filename-extension": ["error", { + "extensions": [".tsx", ".jsx"] + }], "react/jsx-fragments": 0, "symbol-description": 0, "template-curly-spacing": "off", - "indent": "off" + "indent": "off", + "import/extensions": [ + "error", + "ignorePackages", + { + "js": "never", + "jsx": "never", + "ts": "never", + "tsx": "never" + } + ] } } diff --git a/.github/ISSUE_TEMPLATE/-ui-design-system--issue.md b/.github/ISSUE_TEMPLATE/-ui-design-system--issue.md new file mode 100644 index 00000000..7c0db364 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/-ui-design-system--issue.md @@ -0,0 +1,35 @@ +--- +name: "'ui-design-system' issue" +about: Submit an issue for 'ui-design-system' +title: "[UIDS]" +labels: '' +assignees: '' + +--- + +--- +name: 'ui-design-system' issue +projects: "user-interviews/15" +about: An issue template for 'ui-design-system' +title: "[UIDS]" +assignees: '' + +--- + +## Description + +[Description of the problem / solution, screenshots, explanation of approach, links to docs, etc.] + +## User Stories + +- As a [persona], I want [feature/task] so that [benefit/reason]. + +## Acceptance Criteria + +- [Criteria 1] +- [Criteria 2] +- [Criteria 3] + +## Screenshots (if applicable) + +[Add screenshots, if relevant, to provide visual context.] diff --git a/.github/PULL_REQUEST_TEMPLATE/-ui-design-system--pr.md b/.github/PULL_REQUEST_TEMPLATE/-ui-design-system--pr.md new file mode 100644 index 00000000..20c3f4ef --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/-ui-design-system--pr.md @@ -0,0 +1,33 @@ +closes #[issue] + +### Context +Description of the problem / solution, screenshots, explanation of approach, links to docs, etc. + +Figma prototypes: + +[Chromatic link](https://github.com/user-interviews/ui-design-system#chromatic-visual-testing--live-feedback): + +### Reviewer Expectations +Primary Reviewer: + +Secondary Reviewer(s): + +CC: + + +### Checklist + +
+ Please review and check off the following items before moving the pull request from draft to ready for review: + +~~Strike through~~ any items that are not applicable to this pull request. + +- [ ] **Perform self review**: Perform a self-review of your pull request and point out concerns and/or questions to reviewers in the summary above or as GitHub comments. +- [ ] **Documentation**: Create or update Storybook documentation in the `.mdx` files for any componenents related to the PR. See [Storybook MDX docs](https://storybook.js.org/docs/react/writing-docs/mdx) +- [ ] **Tests**: Ensure that all tests are passing and that new tests have been added to cover any new functionality. + +**Frontend** +- [ ] **Accessibility**: Check that the application meets accessibility standards, such as proper semantic HTML, keyboard navigation, and screen reader compatibility. See [Accessibility Notion document](https://www.notion.so/user-interviews/Accessibility-3b755f2931ad43a79d40b215f09c8995) for more details. +- [ ] **Cross-browser compatibility**: Test the application in multiple browsers to ensure consistent behavior and appearance across different platforms. +- [ ] **Mobile responsiveness**: Confirm that the application looks and functions well on various screen sizes and devices, adjusting layout and functionality as needed. +
diff --git a/.storybook/main.js b/.storybook/main.js index 211d9f1d..76303bda 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -25,9 +25,12 @@ const config = { stories: [ '../stories/Intro.stories.mdx', '../src/**/*.stories.@(js|mdx)', + '../src/**/*.stories.@(ts|mdx)', '../src/**/*.stories.js[x]', + '../src/**/*.stories.ts[x]', '../stories/**/*.stories.mdx', - '../stories/**/*.stories.js[x]' + '../stories/**/*.stories.js[x]', + '../stories/**/*.stories.ts[x]' ], features: { storyStoreV7: false, @@ -36,6 +39,9 @@ const config = { name: '@storybook/react-webpack5', options: { fastRefresh: true }, }, + typescript: { + check: true, + }, }; export default config; diff --git a/README.md b/README.md index 952d9d3c..d78deba9 100644 --- a/README.md +++ b/README.md @@ -163,25 +163,23 @@ If you are not able to or choose not to use the github actions described above, ## Developing against the Rails Server repo ### Starting up development -1. run these commands inside the root of the DS repo: + +1. Add `RAILS_SERVER_PATH` to a `.env` of this application + *this will be the path to rails-server in your local machine* +1. Run these commands inside the root of the DS repo: + ````bash - yarn rs:link && yarn rs:link:watch + yarn rs:link + # or using nodemon + yarn rs:link:watch ```` + 💡 at this point you should see a nodemon process running -2. run these commands inside the root of the RS repo: -````bash - bin/link-ds -```` ### Wrapping up development -1. run these commands inside the root of the RS repo: -````bash - bin/unlink-ds -```` -2. run these commands inside the root of the DS repo: + +1. Run these commands inside the root of the DS repo: + ````bash yarn rs:unlink ```` - -#### 🤔 Snags -- you'll have to manually refresh your browser tab, after the automatic refresh, to see your expected changes. diff --git a/bin/link-rs b/bin/link-rs index c4d9a69c..5bd55789 100755 --- a/bin/link-rs +++ b/bin/link-rs @@ -1,7 +1,13 @@ #!/bin/bash -yarn link -cd node_modules/react -yarn link -cd ../../node_modules/react-dom -yarn link +source ./.env + +if [ -z ${RAILS_SERVER_PATH+x} ]; then + printf "Set RAILS_SERVER_PATH in your .env to link the DS to the RS\n" + exit 1 +fi + +yarn build +yalc publish +cd $RAILS_SERVER_PATH +yalc link @user-interviews/ui-design-system diff --git a/bin/unlink-rs b/bin/unlink-rs index c0ecd443..8279d9f9 100755 --- a/bin/unlink-rs +++ b/bin/unlink-rs @@ -1,17 +1,13 @@ #!/bin/bash -unlink() -{ - local package_name="${2:-$1}" +source ./.env - output=$(eval "yarn unlink $1") +if [ -z ${RAILS_SERVER_PATH+x} ]; then + printf "Set RAILS_SERVER_PATH in your .env to link the DS to the RS\n" + exit 1 +fi - echo "$output" - echo "== $package_name unlinked ==" -} - -unlink '' 'DS package' -unlink 'react' -unlink 'react-dom' - -yarn install --force +cd $RAILS_SERVER_PATH +yalc remove @user-interviews/ui-design-system +yalc installations clean @user-interviews/ui-design-system +yarn --check-files diff --git a/nodemon.json b/nodemon.json index 928f7ae4..b6796232 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,6 +1,6 @@ { - "exec": "yarn build", - "ext": "js,json,jsx,scss", + "exec": "bin/link-rs", + "ext": "js,json,jsx,ts,tsx,scss", "verbose": true, "watch": [ "scss", diff --git a/package.json b/package.json index db570972..c070353c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@user-interviews/ui-design-system", - "version": "2.1.1", + "version": "2.2.0", "dependencies": { "@tiptap/core": "^2.0.3", "@tiptap/extension-bold": "^2.0.3", @@ -18,6 +18,8 @@ "@tiptap/extension-text": "^2.0.3", "@tiptap/pm": "^2.0.3", "@tiptap/react": "^2.0.3", + "@typescript-eslint/eslint-plugin": "^2", + "@typescript-eslint/parser": "^2", "react-bootstrap": "^2.5.0", "react-currency-input-field": "^3.6.10", "react-loading-skeleton": "^3.1.0", @@ -29,14 +31,15 @@ "uuid": "^7.0.2" }, "scripts": { - "build": "NODE_ENV=production babel src --out-dir lib --copy-files", + "build": "NODE_ENV=production babel src --out-dir lib --copy-files --extensions '.js,.jsx,.ts,.tsx' && tsc", "build-storybook": "storybook build -s public", "build-storybook-docs": "storybook build -s public --docs", + "build-ts": "tsc", "chromatic": "npx chromatic", "lint": "eslint . --ext .js,.jsx", "prepublishOnly": "yarn build", "rs:link": "bin/link-rs", - "rs:link:watch": "./node_modules/nodemon/bin/nodemon.js", + "rs:link:watch": "nodemon", "rs:unlink": "bin/unlink-rs", "storybook": "storybook dev -p 9009 -s public", "test": "jest" @@ -77,9 +80,11 @@ "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-proposal-object-rest-spread": "^7.8.3", + "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.21.0", "@babel/plugin-transform-runtime": "^7.12.1", "@babel/preset-env": "^7.8.4", + "@babel/preset-typescript": "^7.22.5", "@babel/runtime": "^7.12.5", "@fortawesome/fontawesome-svg-core": "^1.2.28", "@fortawesome/free-brands-svg-icons": "^5.15.3", @@ -87,24 +92,26 @@ "@fortawesome/pro-solid-svg-icons": "^6.4.0", "@fortawesome/react-fontawesome": "^0.2.0", "@popperjs/core": "^2.5.3", - "@storybook/addon-a11y": "7.0.8", - "@storybook/addon-actions": "7.0.8", - "@storybook/addon-backgrounds": "7.0.8", - "@storybook/addon-controls": "^7.0.8", - "@storybook/addon-docs": "7.0.8", - "@storybook/addon-jest": "7.0.8", + "@storybook/addon-a11y": "7.4.1", + "@storybook/addon-actions": "7.4.1", + "@storybook/addon-backgrounds": "7.4.1", + "@storybook/addon-controls": "^7.4.1", + "@storybook/addon-docs": "7.4.1", + "@storybook/addon-jest": "7.4.1", "@storybook/addon-knobs": "7.0.2", - "@storybook/addon-links": "7.0.8", - "@storybook/addon-mdx-gfm": "7.0.8", - "@storybook/addon-storyshots": "7.0.8", - "@storybook/addon-storysource": "7.0.8", - "@storybook/addons": "7.0.8", - "@storybook/react": "7.0.8", - "@storybook/react-webpack5": "7.0.8", + "@storybook/addon-links": "7.4.1", + "@storybook/addon-mdx-gfm": "7.4.1", + "@storybook/addon-storyshots": "7.4.1", + "@storybook/addon-storysource": "7.4.1", + "@storybook/addons": "7.4.1", + "@storybook/react": "7.4.1", + "@storybook/react-webpack5": "7.4.1", "@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", + "@types/react": "16.14.0", + "@types/react-dom": "^16.0.0", "babel-eslint": "^10.0.3", "babel-jest": "^27.4.6", "babel-loader": "^8.0.6", @@ -114,11 +121,10 @@ "bootstrap": "5.1", "chromatic": "^6.7.0", "classnames": "^2.2.5", - "css-loader": "^3.4.2", - "eslint": "^6.8.0", + "css-loader": "^4.3.0", + "eslint": "^7.32.0", "eslint-config-airbnb": "^18.0.1", "eslint-config-react-app": "^5.2.1", - "eslint-import-resolver-webpack": "^0.11.1", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-flowtype": "^4.7.0", "eslint-plugin-import": "^2.20.1", @@ -129,7 +135,7 @@ "jest": "^27.4.6", "jest-css-modules-transform": "^4.3.0", "node-sass": "^8.0.0", - "nodemon": "^2.0.15", + "nodemon": "^3.0.1", "prop-types": "^15.6.1", "react": "^18.0.2", "react-copy-to-clipboard": "^5.0.2", @@ -139,13 +145,21 @@ "react-test-renderer": "^18.0.2", "react-tracking": "8.1.0", "sass-loader": "^10.4.1", - "storybook": "7.0.8", + "storybook": "7.4.1", "storybook-addon-designs": "6.3.1", "style-loader": "^1.1.3", "styled-components": "^5.3.3", - "webpack": "^5.80.0" + "typescript": "^4.9.5", + "webpack": "^5.80.0", + "yalc": "^1.0.0-pre.53" }, "resolutions": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "istanbul-lib-instrument": "^6.0.0", + "jackspeak": "2.1.1", + "make-dir": "4.0.0", + "normalize-package-data": "^3.0.0", + "semver": "^7.5.3", "styled-components": "^5" }, "description": "UI Storybook design system", @@ -157,7 +171,8 @@ "node": ">= 16 < 19", "yarn": "^ 1.22" }, - "main": "lib/index.js", + "main": "lib/index", + "types": "lib/index", "publishConfig": { "registry": "https://npm.pkg.github.com/" }, diff --git a/spec/__snapshots__/Storyshots.test.js.snap b/spec/__snapshots__/Storyshots.test.js.snap index 57b2a038..1bf77090 100644 --- a/spec/__snapshots__/Storyshots.test.js.snap +++ b/spec/__snapshots__/Storyshots.test.js.snap @@ -34,11 +34,7 @@ exports[`Storyshots Components/Accordion Borderless 1`] = ` xmlns="http://www.w3.org/2000/svg" > >>>>>> main fill="currentColor" style={Object {}} /> @@ -59,7 +55,6 @@ exports[`Storyshots Components/Accordion Borderless 1`] = `
- -
-<<<<<<< release/2.1.1 -
`; -exports[`Storyshots Components/Accordion Chevron Left 1`] = ` +exports[`Storyshots Components/Accordion Chevron Lateral 1`] = `
>>>>>> main >
@@ -347,7 +285,7 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = ` className="AccordionItem accordion-item" >
+
+ ->>>>>>> main -<<<<<<< release/2.1.1 -======= - - Accordion Toggle - - - ( - helper text - ) - ->>>>>>> main
@@ -430,11 +360,7 @@ exports[`Storyshots Components/Accordion Chevron Left 1`] = ` `; -<<<<<<< release/2.1.1 exports[`Storyshots Components/Accordion Chevron Left 1`] = ` -======= -exports[`Storyshots Components/Accordion Default 1`] = ` ->>>>>>> main
@@ -454,7 +380,6 @@ exports[`Storyshots Components/Accordion Default 1`] = ` className="AccordionToggle__container--content" > - Accordion Toggle @@ -504,42 +411,6 @@ exports[`Storyshots Components/Accordion Default 1`] = ` ( helper text ) -======= - > - Accordion Toggle - - - ( - helper text - ) - -
-
- - ->>>>>>> main
@@ -563,10 +434,6 @@ exports[`Storyshots Components/Accordion Default 1`] = ` -<<<<<<< release/2.1.1 - - -=======
-
- - - -
`; -exports[`Storyshots Components/Accordion Default Open 1`] = ` +exports[`Storyshots Components/Accordion Chevron Left Lateral 1`] = `
->>>>>>> main
-<<<<<<< release/2.1.1 -======= +
+ +
+
+
    +
  • + Item 1 +
  • +
  • + Item 2 +
  • +
  • + Item 3 +
  • +
+
+
+
+
+
-<<<<<<< release/2.1.1 `; -exports[`Storyshots Components/Accordion Default 1`] = ` +exports[`Storyshots Components/Accordion Collapsed Text 1`] = `
-======= ->>>>>>> main
@@ -818,35 +682,98 @@ exports[`Storyshots Components/Accordion Default 1`] = ` className="AccordionToggle__container--content" > + Accordion Toggle + + + This shows only when collapsed + + + + ( + helper text + ) + +
+
+ +
+
+ +
+
+
    +
  • + Item 1 +
  • +
  • + Item 2 +
  • +
  • + Item 3 +
  • +
+
+
+ +
+
>>>>>> main >
  • -<<<<<<< release/2.1.1 Item 1
  • @@ -911,9 +825,6 @@ exports[`Storyshots Components/Accordion Default 1`] = `
  • Item 3 -======= - I was opened by default! ->>>>>>> main
@@ -922,7 +833,7 @@ exports[`Storyshots Components/Accordion Default 1`] = `
`; -exports[`Storyshots Components/Accordion Disabled 1`] = ` +exports[`Storyshots Components/Accordion Default 1`] = `
@@ -930,13 +841,8 @@ exports[`Storyshots Components/Accordion Disabled 1`] = ` className="AccordionItem accordion-item" >
- -`; - -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Accordion Default Open 1`] = ` -
@@ -1145,118 +1029,113 @@ exports[`Storyshots Components/Accordion Default Open 1`] = `
-======= -exports[`Storyshots Components/Accordion In Card 1`] = ` -Array [ -
+
+ +`; + +exports[`Storyshots Components/Accordion Default Open 1`] = ` +
+
-
- + + + + + Accordion Toggle + + + ( + helper text + ) + +
-
-

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

-
    -
  • - Item 1 -
  • -
  • - Item 2 -
  • -
  • - Item 3 -
  • -
-
+ +
-
- , -
, -
+
-

- Card title -

->>>>>>> main +
    +
  • + Item 1 +
  • +
  • + Item 2 +
  • +
  • + Item 3 +
  • +
+
- , -] -`; - -exports[`Storyshots Components/Accordion Separate 1`] = ` -Array [ +
-======= - className="Accordion accordion" - > -
- -
-
-
    -
  • - I'm inside my own Accordion parent element -
  • -
-
-
-
- , -
, -
-
- -
-
-
    -
  • - I'm inside my own Accordion parent element -
  • -
-
-
-
-
, -] -`; - -exports[`Storyshots Components/Alert Error 1`] = ` -
-
- -
-
-
- Error title ->>>>>>> main
,
, @@ -1728,7 +1406,6 @@ exports[`Storyshots Components/Alert Error 1`] = ` className="Card" >

- Error message -

-
-
-`; - -exports[`Storyshots Components/Alert Feature 1`] = ` -
-
- -
-
-
- New feature alert! -
-
- Some context around new feature if needed. -
-
-
-`; - -exports[`Storyshots Components/Alert Info 1`] = ` -
-
- - -
-<<<<<<< release/2.1.1
@@ -2235,16 +1777,6 @@ exports[`Storyshots Components/Alert Info 1`] = `
-======= -
- Info title -
-
->>>>>>> main Info message
@@ -2286,11 +1818,7 @@ exports[`Storyshots Components/Alert Success 1`] = ` transform="translate(0, 0) scale(1.5, 1.5) rotate(0 0 0)" > >>>>>> main fill="currentColor" style={Object {}} transform="translate(-256 -256)" @@ -2307,43 +1835,25 @@ exports[`Storyshots Components/Alert Success 1`] = ` role="img" style={ Object { -<<<<<<< release/2.1.1 "transformOrigin": "0.4375em 0.5em", } } viewBox="0 0 448 512" -======= - "transformOrigin": "0.5em 0.5em", - } - } - viewBox="0 0 512 512" ->>>>>>> main xmlns="http://www.w3.org/2000/svg" > >>>>>> main > >>>>>> main /> @@ -2377,55 +1887,32 @@ exports[`Storyshots Components/Alert Warning 1`] = ` >
-<<<<<<< release/2.1.1 -
-
- - Primary action - -======= ->>>>>>> main
-
- 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 - -
-
-
+ + LinkedIn + , + " ", +
-
+ + LinkedIn + , + " ", +
+ + + LinkedIn + ,
, +
-
+ + Twitter + , + " ", +
-
+ + Twitter + , + " ", +
-
+ + Twitter + , + " ", +
-
+ + + Twitter + , +] `; -exports[`Storyshots Components/Avatar Small 1`] = ` -
-
- -
-
-
- - 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`] = ` -Array [ - , " ", , - " ", - , -
, + " ", , - " ", - , - " ", , - " ", - , -] -`; - -exports[`Storyshots Components/Button Danger 1`] = ` -Array [ - , - " ", -
+ +`; + +exports[`Storyshots Components/Card Loading Paragraph Count 1`] = ` +
+ - - Edit - - , - " ", - , - " ", - , -] -`; - -exports[`Storyshots Components/Card Default 1`] = ` ->>>>>>> main -
- - - ‌ - -
-
-
-
- - - ‌ - -
- - ‌ - -
- - ‌ - -
-
-
-
-`; - -exports[`Storyshots Components/Card Loading Paragraph Count 1`] = ` -
-

- Default card title -

- - (helper text) - -
-

- Subtitle -

-
- Use knobs to try out the different card sizes -
- -`; - -exports[`Storyshots Components/Card Loading Custom 1`] = ` -
>>>>>> main -> - - - ‌ - -
-
-
-
- - - ‌ - -
-======= - > - - ‌ - -
-
-
- - - ‌ - -
- - ‌ - -
- - ‌ - -
-
-
- - - ‌ - -
- - ‌ - -
- - ‌ - -
-
-
-`; - -exports[`Storyshots Components/Card Loading Default 1`] = ` -
- - - ‌ - -
-
-
-
- ->>>>>>> main - - ‌ - -
- - ‌ - -
-<<<<<<< release/2.1.1 -
-
-======= - - ‌ - -
- -
- -`; - -exports[`Storyshots Components/Card Loading Paragraph Count 1`] = ` -
- - ‌

->>>>>>> main
@@ -8235,8 +5389,6 @@ exports[`Storyshots Components/Card Loading Paragraph Count 1`] = ` "width": "100%", } } -<<<<<<< release/2.1.1 -======= > ‌ @@ -8285,7 +5437,6 @@ exports[`Storyshots Components/Card Loading Paragraph Count 1`] = ` "width": "100%", } } ->>>>>>> main > ‌ @@ -8498,11 +5649,7 @@ exports[`Storyshots Components/Copy To Clipboard Button Default 1`] = ` xmlns="http://www.w3.org/2000/svg" > >>>>>> main + d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z" fill="currentColor" style={Object {}} /> @@ -8542,19 +5689,11 @@ exports[`Storyshots Components/Copy To Clipboard Button Secondary 1`] = ` focusable="false" role="img" style={Object {}} -<<<<<<< release/2.1.1 - viewBox="0 0 512 512" - xmlns="http://www.w3.org/2000/svg" - > - >>>>>> main + d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z" fill="currentColor" style={Object {}} /> @@ -8602,19 +5741,11 @@ exports[`Storyshots Components/Copy To Clipboard Default 1`] = ` focusable="false" role="img" style={Object {}} -<<<<<<< release/2.1.1 - viewBox="0 0 512 512" - xmlns="http://www.w3.org/2000/svg" - > - >>>>>> main + d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z" fill="currentColor" style={Object {}} /> @@ -8649,18 +5780,12 @@ Array [ > - -
- -
-
-

- Proin elementum vitae nibh nec tincidunt. Donec vel placerat mi, vitae malesuada odio. Sed varius libero sed erat faucibus ultrices. Suspendisse potenti. Mauris sit amet sollicitudin urna. Donec porttitor, est quis aliquet condimentum, nisi felis porta odio, eu luctus dui ex id nisi. Curabitur ultrices enim in dolor laoreet porta. Proin vehicula at nisl a maximus. Sed lorem enim, elementum in arcu eu, lacinia consequat arcu. Pellentesque non nibh viverra, imperdiet purus at, finibus turpis. Sed mattis erat a risus dignissim, eu ultrices est rhoncus. Fusce nec feugiat tortor. Quisque tincidunt nulla urna, ut egestas massa congue a. Quisque metus felis, auctor sit amet posuere eu, aliquam blandit libero. Mauris sodales, velit sit amet egestas aliquet, ipsum arcu porta lacus, vitae mattis felis elit in metus. Nulla ligula ligula, laoreet in dictum sit amet, pretium ac est. -

-
-
-
- -
-
-

- Proin elementum vitae nibh nec tincidunt. Donec vel placerat mi, vitae malesuada odio. Sed varius libero sed erat faucibus ultrices. Suspendisse potenti. Mauris sit amet sollicitudin urna. Donec porttitor, est quis aliquet condimentum, nisi felis porta odio, eu luctus dui ex id nisi. Curabitur ultrices enim in dolor laoreet porta. Proin vehicula at nisl a maximus. Sed lorem enim, elementum in arcu eu, lacinia consequat arcu. Pellentesque non nibh viverra, imperdiet purus at, finibus turpis. Sed mattis erat a risus dignissim, eu ultrices est rhoncus. Fusce nec feugiat tortor. Quisque tincidunt nulla urna, ut egestas massa congue a. Quisque metus felis, auctor sit amet posuere eu, aliquam blandit libero. Mauris sodales, velit sit amet egestas aliquet, ipsum arcu porta lacus, vitae mattis felis elit in metus. Nulla ligula ligula, laoreet in dictum sit amet, pretium ac est. -

-
-
-
-
- - -
-
-
, -] -`; - -exports[`Storyshots Components/Dropdown Default 1`] = ` -Array [ -
- -
, -
, -
>>>>>> main >
-<<<<<<< release/2.1.1 `; exports[`Storyshots Components/Dropdown Sizes 1`] = ` @@ -9715,162 +6592,6 @@ exports[`Storyshots Components/EmptyState Full Width 1`] = ` >
- -
, -
, -
- -
, -] -`; - -exports[`Storyshots Components/Dropdown Unstyled Toggle 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Dropdown With Divider 1`] = ` -
- -
-`; - -exports[`Storyshots Components/EmptyState Default 1`] = ` -
-
>>>>>> main >

-<<<<<<< release/2.1.1 Launch your first project to start conducting research! Source from a pool of 2.4 million participants to reach nearly any target audience.

-======= - Launch your first project to start conducting research! -

->>>>>>> main -
-
-`; - -<<<<<<< release/2.1.1 -exports[`Storyshots Components/EmptyState Margin Top 1`] = ` -======= -exports[`Storyshots Components/EmptyState Full Width 1`] = ` ->>>>>>> main -
-
>>>>>> main - > -

-<<<<<<< release/2.1.1 - No segments created -======= - You have no projects ->>>>>>> main -

-

-<<<<<<< release/2.1.1 - Add a new participant segment above -

-======= - Launch your first project to start conducting research! Source from a pool of 2.4 million participants to reach nearly any target audience. -

-
-
- -
-
->>>>>>> main
`; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/EmptyState Primary Action 1`] = ` -======= exports[`Storyshots Components/EmptyState Margin Top 1`] = ` ->>>>>>> main
@@ -10032,11 +6664,7 @@ exports[`Storyshots Components/EmptyState Margin Top 1`] = ` } } > -<<<<<<< release/2.1.1 - You have no projects -======= No segments created ->>>>>>> main

-<<<<<<< release/2.1.1 -======= Add a new participant segment above

@@ -10079,7 +6705,6 @@ exports[`Storyshots Components/EmptyState Primary Action 1`] = ` } } > ->>>>>>> main Launch your first project to start conducting research! Source from a pool of 2.4 million participants to reach nearly any target audience.

- >>>>>> main fill="currentColor" style={Object {}} /> @@ -10156,8 +6773,6 @@ exports[`Storyshots Components/Form Default 1`] = ` type="text" value="" /> -<<<<<<< release/2.1.1 -=======
->>>>>>> main
- -
-
-
-
-
-
-
>>>>>> main > - first choice - - - @@ -10842,10 +7345,6 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Row value="1" /> Label 1 -<<<<<<< release/2.1.1 - @@ -10908,7 +7407,6 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Row Label 3 >>>>>> main >  ( helper text @@ -10921,11 +7419,6 @@ exports[`Storyshots Components/Form Elements/CheckboxButtonGroup Description Row This is where the description goes -<<<<<<< release/2.1.1 -
@@ -11213,202 +7659,10 @@ exports[`Storyshots Components/Form Elements/Form Group Required 1`] = ` type="text" value="" /> ->>>>>>> main - -`; - -<<<<<<< release/2.1.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/Form Control Label Checkbox With Children 1`] = ` - -`; - -exports[`Storyshots Components/Form Elements/Form Control Label Radio 1`] = ` - -`; - -exports[`Storyshots Components/Form Elements/Form Control Label Radio With Children 1`] = ` - + `; -exports[`Storyshots Components/Form Elements/Form Group Default 1`] = ` -
>>>>>> main >
-<<<<<<< release/2.1.1 -
-`; - -exports[`Storyshots Components/Form Elements/Form Group Required 1`] = ` -
- -
- -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Errors 1`] = ` -
- -
- -
-
-
    -
  1. -
    - Sorry, we’re not able to accept this type of input. For more information, click - - here - -
    -
  2. -
-
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Helper Text 1`] = ` -
- -
- -
-
- test helper text -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Label Tooltip 1`] = ` -
- -
- -=======
@@ -11933,38 +8009,24 @@ exports[`Storyshots Components/Form Elements/Form Group With Radio Button Group Value 3 ->>>>>>> main
`; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Form Elements/Form Group With Leading And Trailing Icons 1`] = ` -
>>>>>> main >
-<<<<<<< release/2.1.1 -======= ->>>>>>> main
-<<<<<<< release/2.1.1 -
>>>>>> main onChange={[Function]} placeholder="Placeholder text" type="text" value="" /> -<<<<<<< release/2.1.1 -
- -
-=======
->>>>>>> main
-<<<<<<< release/2.1.1 - with leading and trailing icons -======= with trailing icon and button ->>>>>>> main
`; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Form Elements/Form Group With Leading Icon 1`] = ` -
>>>>>> main >
-<<<<<<< release/2.1.1 -
- -
- -
-
- with leading icon -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Radio Button Group 1`] = ` -
 ( -<<<<<<< release/2.1.1 - with some helper text -======= use the knobs to try out different variations ->>>>>>> main ) @@ -12530,24 +8481,11 @@ exports[`Storyshots Components/Form Elements/RadioButtonGroup Default 1`] = ` name="" > - - -
- -`; - -exports[`Storyshots Components/Form Elements/Form Group With Trailing Icon 1`] = ` -
- -
- -
- -
-
-
- with trailing icon -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Trailing Icon And Button 1`] = ` -
- -
- - -
-
- with trailing icon and button -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Trailing Icon And Button With Submit 1`] = ` -
- -
- - -
-
- with trailing icon and button with submit -
-
-`; - -exports[`Storyshots Components/Form Elements/Form Group With Trailing Icon And Button With Submit And Label 1`] = ` -
- -
- - -
-
- with trailing icon and button with submit and label -
-
-`; - -exports[`Storyshots Components/Form Elements/RadioButtonGroup Bordered Column Full Width 1`] = ` -
- - Legend - -  ( - helper text - ) - - -
- -
`; -exports[`Storyshots Components/IconButton Common Actions 1`] = ` -Array [ - , - , -
+
- - - , - , - , - , - , - , - , -] -`; - -exports[`Storyshots Components/IconButton Sizes 1`] = ` -Array [ - , - , -] -`; - -exports[`Storyshots Components/IconCell Default 1`] = ` -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-`; - -exports[`Storyshots Components/LoadingOverlay Default 1`] = ` -
- -
-`; - -exports[`Storyshots Components/LoadingSkeleton Circle 1`] = ` - - - ‌ - -
-
-`; - -exports[`Storyshots Components/LoadingSkeleton Default 1`] = ` - - - ‌ - -
-
-`; - -exports[`Storyshots Components/LoadingSkeleton Height And Width 1`] = ` - - - ‌ - -
-
-`; - -exports[`Storyshots Components/LoadingSkeleton Multi Line 1`] = ` - - - ‌ - -
- - ‌ - -
- - ‌ - -
-
-`; - -exports[`Storyshots Components/Modal Danger Modal 1`] = ` -
-
+ Cancel + + +
+
+
+`; + +exports[`Storyshots Components/Modal Large Modal 1`] = ` +
+
->>>>>>> main

- - Danger modal + Large modal

`; -exports[`Storyshots Components/Modal Default 1`] = ` +exports[`Storyshots Components/Modal Medium Modal 1`] = `

- Default modal + Medium modal

- Confirm + Invite
`; -exports[`Storyshots Components/Modal Medium Modal 1`] = ` +exports[`Storyshots Components/Modal Warning Modal 1`] = `
-
-
-

- Medium modal -

-
-
-
-

- Some content goes here. -

-
-
- - -
-
-
-`; - -exports[`Storyshots Components/Modal Transactional Modal 1`] = ` -
-
-
-
-

- Transactional modal -

-
-
-
-

- The user needs to take action here. -

-
- -
-
-
- - -
-
-
-`; - -exports[`Storyshots Components/Modal Warning Modal 1`] = ` -
-
- Danger modal - -
- - -======= - viewBox="0 0 576 512" - xmlns="http://www.w3.org/2000/svg" - > - - Warning modal
@@ -16218,17 +10417,17 @@ exports[`Storyshots Components/Pill With Close 1`] = ` > ->>>>>>> main `; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Modal Default 1`] = ` -
-
-
-
-

- Default modal -

-
-
-
-

- Some content goes here. -

-
-
- - -======= exports[`Storyshots Components/Selects/Creatable In Modal 1`] = `
->>>>>>> main
`; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Modal Large Modal 1`] = ` -
-
-
-
-

- Large modal -

-
-
-
-

- Some content goes here. -

-
-
- - -
-======= exports[`Storyshots Components/Selects/Single Grouped Options 1`] = `
->>>>>>> main
`; -<<<<<<< release/2.1.1 -exports[`Storyshots Components/Modal Medium Modal 1`] = ` +exports[`Storyshots Components/Steps Varying Content Length 1`] = `
-
-
-

- Medium modal -

-
-
-

- Some content goes here. -

+ + 1 +
-
- - -
+ + Create + + a profile and browse studies that interest you. + +
-
-`; - -exports[`Storyshots Components/Modal Transactional Modal 1`] = ` -
-
-
-

- Transactional modal -

-
-
-

- The user needs to take action here. -

-
- -
+ 2 +
-
- - -
+ + Lorem + + ipsum dolor sit amet, consectetur adipiscing elit. Vivamus posuere vestibulum velit, interdum lacinia quam tincidunt eget. Fusce sagittis luctus massa, vitae posuere odio imperdiet ac. Nam sem leo, blandit a orci vel, lacinia volutpat libero. Etiam maximus nulla sed eleifend molestie. Aliquam et posuere justo, id suscipit mauris. Sed luctus tortor nec accumsan commodo. Nunc in lacus pretium, condimentum lorem sit amet, hendrerit arcu. Quisque gravida ullamcorper magna, at hendrerit purus viverra vel. Donec tempor purus dui, nec pulvinar est vestibulum a. Nam condimentum facilisis orci, nec elementum justo semper sit amet. + +
-
-`; - -exports[`Storyshots Components/Modal Warning Modal 1`] = ` -
-
-
-

- - Warning modal -

-
-
-

- Are you sure you want to do this? -

+ + 3 +
-
- - -
+ + Confirm + + your time slot, participate, and get paid! + +
-
-`; - -exports[`Storyshots Components/Modal With Subtitle Modal 1`] = ` -
-
-
-

- With subtitle modal -

-

- A subtitle to provide more information -

-
-
-

- Some content goes here. -

+ + 4 +
-
- - -
+ + Something + + else... + +
`; -exports[`Storyshots Components/MoneyInput Default 1`] = ` -
- - -
-

- Value: - 1250.99 -

-
-`; - -exports[`Storyshots Components/Pill Default 1`] = ` -
-

- Test Pill -

- - Text - -

- Colors -

- - blue - - - orange - - - yellow - - - red - - - green - - - gray - - - silver - -
-`; - -exports[`Storyshots Components/Pill Statuses 1`] = ` -
- - Informational - - - Informational - - - Partially complete - - - Incomplete - - - Attention - - - Active - - - Inactive - -
-`; - -exports[`Storyshots Components/Pill With Close 1`] = ` - - Text - - -`; - -exports[`Storyshots Components/Pill With Container 1`] = ` -
- + Status + + + Email + + + First name + + + Last name + + + Phone number + + + Date added + + + Last invited + + + Last applied + + + + - - 1-on-1 Interview - - - - Online - - - - $120 choice of dozens of digital gift cards - - - - 1 hour - -
-`; - -exports[`Storyshots Components/Pill With Leading Icon 1`] = ` - - - Text - -`; - -exports[`Storyshots Components/Pill With Link 1`] = ` - - - Visit our site - - -`; - -exports[`Storyshots Components/Popover Card Popover 1`] = ` - -`; - -exports[`Storyshots Components/Popover Default 1`] = ` - -`; - -exports[`Storyshots Components/Popover Placement 1`] = ` - -`; - -exports[`Storyshots Components/Popper Dark 1`] = ` -Array [ -

- reference element -

, -
- Dark Popper -
, -] -`; - -exports[`Storyshots Components/Popper Default 1`] = ` -Array [ -

- reference element -

, -
- Default Popper -
, -] -`; - -exports[`Storyshots Components/Profile Cell Large 1`] = ` -
-
-
-
- - RR - -
-
-
-
-
-
+ - Riley Researcher -
-
-
-
- riley@userinterviews.com -
-
- +1 888 888 8888 -
-
- (-5:00) America/New York -
-
-
-
-`; - -exports[`Storyshots Components/Profile Cell Loading 1`] = ` -Array [ -
-
+ + +18888888888 + + + 01/22/2021 + + + 3 days ago + + + 1 day ago + + + - - ‌ + New -
-
-
-
+ + Approved + + + basel123@userinterviews.com + + + Basel + + + Fakhoury + + + +467234460393409 + + + 04/08/2020 + + + - + + + - + + + - + + Paid + + + bob456@userinterviews.com + + + Bob + + + Saris + + + + 01/26/2020 + + + 2 days ago + + + - + + + + + + Confirmed + + + dennis789@userinterviews.com + + + Dennis + + + Meng + + + + 12/21/2020 + + + 6 days ago + + + 5 days ago + + + + - ‌ - -
- - ‌ + New -
-
-
-
, -
, -
-
+ + Confirmed + + + erin007@userinterviews.com + + + Erin + + + May + + + +1499090234 + + + 09/21/2020 + + + - + + + 23 days ago + + + - - ‌ + New -
-
-
-
+ + Qualified + + + jh247@userinterviews.com + + + John-Henry + + + Forster + + + +1888938488 + + + 03/14/2021 + + + - + + + - + + + - - ‌ + New -
+ + + Approved + + + jason909085119@userinterviews.com + + + Jason + + + Basuil + + + + 01/01/2021 + + + - + + + - + + + + - ‌ + New -
-
-
-
, -] -`; - -exports[`Storyshots Components/Profile Cell Small 1`] = ` -
-
-
+ + Qualified + + + rachel777@userinterviews.com + + + Rachel + + + Rapollo + + + +40988881822329308 + + + 07/21/2019 + + + - + + + - + + + -
- RR + New -
-
-
-
-
-
+ - Riley Researcher -
-
-
- riley@userinterviews.com -
-
-
-`; - -exports[`Storyshots Components/Profile Cell With Image 1`] = ` -
-
-
-
+ - Riley Researcher -
-
-
-
-
-
+ - Riley Researcher -
-
-
-
- riley@userinterviews.com -
-
- +1 888 888 8888 -
-
- (-5:00) America/New York -
-
-
-
-`; - -exports[`Storyshots Components/Profile Cell With Trailing Icon 1`] = ` -
-
-
-
+ - Riley Researcher -
-
-
-
-
-
+ - Riley Researcher -
- -
-
+ + 1 day ago + + + 2 days ago + + + - riley@userinterviews.com -
-
-
-`; - -exports[`Storyshots Components/RadioButton Default 1`] = ` - -`; - -exports[`Storyshots Components/RadioButton With Description 1`] = ` - + + + New + + + + Approved + + + faus555@userinterviews.com + + + Faustino + + + Gaitan + + + +90918394789 + + + 06/13/2019 + + + - + + + - + + + + `; -exports[`Storyshots Components/RichTextEditor ARIA Attributes 1`] = ` +exports[`Storyshots Components/Table Loading Custom Columns 1`] = ` Array [ - - ‌ + + ‌ + +
-
-
, - - ‌ + + ‌ + +
-
-
, -] -`; - -exports[`Storyshots Components/RichTextEditor Available Actions 1`] = ` -Array [ - - ‌ + + ‌ + +
-
-
, - - ‌ + + ‌ + +
-
-
, -] -`; - -exports[`Storyshots Components/RichTextEditor Character Limit 1`] = ` -Array [ - - ‌ + + ‌ + +
-
-
, - , +
- ‌ + + ‌ + +
-
- , -] -`; - -exports[`Storyshots Components/RichTextEditor Default 1`] = ` -Array [ - - ‌ + + ‌ + +
-
-
, - + + ‌ + +
+
+ - ‌ + + ‌ + +
-
-
, -] -`; - -exports[`Storyshots Components/RichTextEditor Error 1`] = ` -Array [ - + + ‌ + +
+
+
, +
+ + ‌ + +
+
+ - ‌ + + ‌ + +
-
- , - + + ‌ + +
+
+ - ‌ + + ‌ + +
-
-
, -] -`; - -exports[`Storyshots Components/RichTextEditor One Line 1`] = ` -Array [ - + + ‌ + +
+
+
, +
+ + ‌ + +
+
+ - ‌ + + ‌ + +
-
- , - + + ‌ + +
+
+ - ‌ + + ‌ + +
-
-
, + + + ‌ + +
+
+
, ] `; -exports[`Storyshots Components/Selects/Async Default 1`] = ` -
- +exports[`Storyshots Components/Table Loading Default 1`] = ` +Array [
+ aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
-
- -
-
-
+
+ + + - - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Async In Modal 1`] = ` - -`; - -exports[`Storyshots Components/Selects/AsyncCreatable Default 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
-
- -
-
-
+
+ + + - - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/AsyncCreatable In Modal 1`] = ` -
+ ‌ + +
+ + + + ‌ + +
+
+
,
-
-
-

- In Modal AsyncCreatable select -

-
-
-
+
+ + -
- -
- - -
-
-
- Select... -
-
- -
-
-
- - -
-
-
-
- Select menu is able to overflow the Modal container -
-
-
-
+
+ + - - -
-
-
-`; - -exports[`Storyshots Components/Selects/Creatable Default 1`] = ` -
- + ‌ + +
+ + + + ‌ + +
+
+ + + ‌ + +
+
+ + + ‌ + +
+
+
,
+ aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
-
- -
-
-
+
+ + + - - -
-
-
- -`; - -exports[`Storyshots Components/Selects/Creatable In Modal 1`] = ` - -`; - -exports[`Storyshots Components/Selects/Single Custom Option With Checkbox 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Single Custom Option With Description 1`] = ` -
- + ‌ + +
+ + + + ‌ + +
+
+
,
- -
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
- -`; - -exports[`Storyshots Components/Selects/Single Custom Option With Indeterminate Checkbox 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Single Custom Value Container 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
- - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Single Default 1`] = ` -
- + ‌ + +
+ +
,
+ aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
- -`; - -exports[`Storyshots Components/Selects/Single Grouped Options 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Single In Modal 1`] = ` - -`; - -exports[`Storyshots Components/Selects/Single Loading 1`] = ` -
- + ‌ + +
+ + + + ‌ + +
+
+
,
- -
-
-
- Select... -
- -
-
+
+ + + - - -
-
-
- -`; - -exports[`Storyshots Components/Selects/Single Multiple Select 1`] = ` -
- -
+ ‌ + +
+ + aria-busy={true} + aria-live="polite" + > + + ‌ + +
+
-
-
-
- Select... -
- -
-
- - -
-
-
-
-`; - -exports[`Storyshots Components/Selects/Single Searchable 1`] = ` -
- -
- + ‌ + +
+ -
-
-
- Select... -
-
- -
-
-
- - -
-
-
-
-`; - -exports[`Storyshots Components/Steps Default 1`] = ` -
-
-
- 1 + ‌ -
+
+ - - Create - - a profile and browse studies that interest you. + ‌ +
-
-
-
- - 2 - -
- - Confirm - - your time slot, participate, and get paid! + ‌ +
-
+
,
-
- - 3 - -
- - Something - - else... + ‌ +
-
- -`; - -exports[`Storyshots Components/Steps Varying Content Length 1`] = ` -
-
-
- - 1 - -
- - Create - - a profile and browse studies that interest you. + ‌ +
-
-
-
- - 2 - -
- - Lorem - - ipsum dolor sit amet, consectetur adipiscing elit. Vivamus posuere vestibulum velit, interdum lacinia quam tincidunt eget. Fusce sagittis luctus massa, vitae posuere odio imperdiet ac. Nam sem leo, blandit a orci vel, lacinia volutpat libero. Etiam maximus nulla sed eleifend molestie. Aliquam et posuere justo, id suscipit mauris. Sed luctus tortor nec accumsan commodo. Nunc in lacus pretium, condimentum lorem sit amet, hendrerit arcu. Quisque gravida ullamcorper magna, at hendrerit purus viverra vel. Donec tempor purus dui, nec pulvinar est vestibulum a. Nam condimentum facilisis orci, nec elementum justo semper sit amet. + ‌ +
-
-
-
- 3 + ‌ -
+
+ - - Confirm - - your time slot, participate, and get paid! + ‌ +
-
-
-
- 4 + ‌ -
+
+ - - Something - - else... + ‌ +
-
-
+ , +] `; -exports[`Storyshots Components/Table Default 1`] = ` +exports[`Storyshots Components/Table Table No Hover State 1`] = ` @@ -21708,7 +14880,7 @@ exports[`Storyshots Components/Table Default 1`] = ` className="TableBody" > + + + + + + + + + +
`; -exports[`Storyshots Components/Table Loading Custom Columns 1`] = ` -Array [ +exports[`Storyshots Components/Table Table On Card 1`] = ` +
- - - ‌ - -
-
- +
+
+

+ Manage a set of templates that can be applied to a project’s automated emails. +

+
+ - - ‌ - -
- - - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- , -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -] -`; - -exports[`Storyshots Components/Table Loading Default 1`] = ` -Array [ -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -] -`; - -exports[`Storyshots Components/Table Table No Hover State 1`] = ` -
- - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- - Status - -======= -exports[`Storyshots Components/Steps Varying Content Length 1`] = ` -
-
-
- - 1 - -
- - - - Create - - a profile and browse studies that interest you. - - -
-
-
- - 2 - -
- - - - Lorem - - ipsum dolor sit amet, consectetur adipiscing elit. Vivamus posuere vestibulum velit, interdum lacinia quam tincidunt eget. Fusce sagittis luctus massa, vitae posuere odio imperdiet ac. Nam sem leo, blandit a orci vel, lacinia volutpat libero. Etiam maximus nulla sed eleifend molestie. Aliquam et posuere justo, id suscipit mauris. Sed luctus tortor nec accumsan commodo. Nunc in lacus pretium, condimentum lorem sit amet, hendrerit arcu. Quisque gravida ullamcorper magna, at hendrerit purus viverra vel. Donec tempor purus dui, nec pulvinar est vestibulum a. Nam condimentum facilisis orci, nec elementum justo semper sit amet. - - -
-
-
- - 3 - -
- - - - Confirm - - your time slot, participate, and get paid! - - -
-
-
- - 4 - -
- - - - Something - - else... - - -
-
-`; - -exports[`Storyshots Components/Table Default 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Status - - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - Approved - - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- - New - - - Approved - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - Paid - - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - Confirmed - - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - New - - - Confirmed - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - New - - - Qualified - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - New - - - Approved - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - New - - - Qualified - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - New - - - Approved - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- - New - - - Approved - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-`; - -exports[`Storyshots Components/Table Loading Custom Columns 1`] = ` -Array [ -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -] -`; - -exports[`Storyshots Components/Table Loading Default 1`] = ` -Array [ -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
- - - ‌ - -
-
-
, -] -`; - -exports[`Storyshots Components/Table Table No Hover State 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Status - - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - Approved - - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- - New - - - Approved - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - Paid - - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - Confirmed - - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - New - - - Confirmed - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - New - - - Qualified - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - New - - - Approved - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - New - - - Qualified - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - New - - - Approved - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- - New - - - Approved - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-`; - -exports[`Storyshots Components/Table Table On Card 1`] = ` -
-
-

- Email Template Sets -

-
-
-

- Manage a set of templates that can be applied to a project’s automated emails. -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-
-`; - -exports[`Storyshots Components/Table Table On Card No Padding 1`] = ` -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-
-`; - -exports[`Storyshots Components/Table Table With Cell Right Alignment 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- First name - - Last name - - Incentives earned - - Unsubscribed -
- Anna - - Boston - - 0 - - False -
- Carly - - Dixon - - 1 - - True -
- Erin - - Fitzgerald - - 10 - - True -
- Gregg - - Harris - - 20 - - True -
- Izzie - - Jackson - - 100 - - False -
-`; - -exports[`Storyshots Components/Table Table With Compact Option 1`] = ` -
- -

- Compact -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- - New - - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - New - - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - New - - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - New - - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - New - - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - New - - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- - New - - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-`; - -exports[`Storyshots Components/Table Table With Fixed Column Widths 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - (with a max-width) - - Riley - (with a min-width) - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - (with a max-width) - - Basel - (with a min-width) - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - (with a max-width) - - Bob - (with a min-width) - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - (with a max-width) - - Dennis - (with a min-width) - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - (with a max-width) - - Erin - (with a min-width) - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - (with a max-width) - - John-Henry - (with a min-width) - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - (with a max-width) - - Jason - (with a min-width) - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - (with a max-width) - - Rachel - (with a min-width) - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - (with a max-width) - - JoJo - (with a min-width) - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- faus555@userinterviews.com - (with a max-width) - - Faustino - (with a min-width) - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Footer 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Participant - - Incentive - - Processing fee - - Recruit fee - - Amount -
- Anna - - $50.00 - - $0.00 - - $0.00 - - $50.00 -
- Carly - - $25.00 - - $0.00 - - $0.00 - - $25.00 -
- Erin - - $100.00 - - $0.00 - - $0.00 - - $100.00 -
- Gregg - - $250.00 - - $0.00 - - $0.00 - - $250.00 -
- Izzie - - $180.00 - - $0.00 - - $0.00 - - $180.00 -
- Anna - - $50.00 - - $0.00 - - $0.00 - - $50.00 -
- Carly - - $25.00 - - $0.00 - - $0.00 - - $25.00 -
- Erin - - $100.00 - - $0.00 - - $0.00 - - $100.00 -
- Gregg - - $250.00 - - $0.00 - - $0.00 - - $250.00 -
- Total - - $1030.00 - - $0.00 - - $0.00 - - $1030.00 -
-`; - -exports[`Storyshots Components/Table Table With Multiple Action Column 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied - - Edit -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago - - -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago - - -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago - - -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago - - -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Multiple Select 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sticky Columns And Header 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - Email - - - - - First name - - Last name - - Phone number - - Date added - - Last invited - - Action -
- - - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - -
- - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - -
- - - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - -
- - - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - -
- - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - -
- - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - -
- - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - -
- - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - -
- - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - -
- - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Multiple Sticky Columns And Header 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - - - - Last name - - Phone number - - Date added - - Last invited - - Last applied - - Date - - Boolean - - Decimal - - Pick any - - Action -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago - - 03/25/2021 - - True - - - - - - - - -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - - - 03/25/2021 - - True - - - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - - - 03/25/2021 - - True - - - - - - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago - - 03/25/2021 - - True - - - - - - - - -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago - - 03/25/2021 - - True - - - - - - - - -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - - - 03/25/2021 - - True - - - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - - - 03/25/2021 - - True - - - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - - - 03/25/2021 - - True - - - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago - - 03/25/2021 - - True - - - - - - - - -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - - - 03/25/2021 - - True - - - - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Single Action Column 1`] = ` - - - - - - - - - - -<<<<<<< release/2.1.1 -======= - ->>>>>>> main - - - - >>>>>> main - > - - - - - - - - -<<<<<<< release/2.1.1 - - -======= ->>>>>>> main - -======= - - - - ->>>>>>> main - - - - - - - - -<<<<<<< release/2.1.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -======= ->>>>>>> main - -======= - - - - ->>>>>>> main - - - - -======= - /> ->>>>>>> main - - - - - - -
->>>>>>> main - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied - - Edit -
- - Approved - >>>>>> main - > - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
-<<<<<<< release/2.1.1 - - New - -
-<<<<<<< release/2.1.1 - Approved - -======= ->>>>>>> main - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - Paid - - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - Confirmed - - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - New - - - Confirmed - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - New - - - Qualified - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - New - - - Approved - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - New - - - Qualified - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - New - - - Approved - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
-<<<<<<< release/2.1.1 - - New - -
-<<<<<<< release/2.1.1 - Approved -======= - bob456@userinterviews.com ->>>>>>> main - -<<<<<<< release/2.1.1 - faus555@userinterviews.com -======= - Bob ->>>>>>> main - -<<<<<<< release/2.1.1 - Faustino -======= - Saris ->>>>>>> main - - Gaitan - -<<<<<<< release/2.1.1 - +90918394789 -======= - 01/26/2020 ->>>>>>> main - -<<<<<<< release/2.1.1 - 06/13/2019 -======= - 2 days ago ->>>>>>> main - - - - -<<<<<<< release/2.1.1 - - -
-`; - -exports[`Storyshots Components/Table Table On Card 1`] = ` -
-
-

- Email Template Sets -

-
-
-

- Manage a set of templates that can be applied to a project’s automated emails. -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-
-`; - -exports[`Storyshots Components/Table Table On Card No Padding 1`] = ` -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-
-`; - -exports[`Storyshots Components/Table Table With Cell Right Alignment 1`] = ` - - - - - - - - - - - -======= - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- First name - - Last name - - Incentives earned - - Unsubscribed -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago - - -
- erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago - - -
- jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - - - -
- jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - - - -
- rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - - - -
- jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago - - -
- faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - - - -
-`; - -exports[`Storyshots Components/Table Table With Sorting 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- First name - - Last name - - Incentives earned - - - - - Unsubscribed - - - -
- Anna - - Boston - - 0 - - False -
- Carly - - Dixon - - 1 - - True -
- Erin - - Fitzgerald - - 10 - - True -
- Gregg - - Harris - - 20 - - True -
- Izzie - - Jackson - - 100 - - False -
-`; - -exports[`Storyshots Components/Table Table With Sticky Column And Header 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ->>>>>>> main - - - - - - - -======= - 09/21/2020 - ->>>>>>> main - - - - - -<<<<<<< release/2.1.1 - - -======= ->>>>>>> main - - - - - - - - - - - - - - -======= - 03/14/2021 - ->>>>>>> main - - - - - - - -
- Email - - - - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied - - Date - - Boolean - - Decimal - - Pick any - - Incentives earned -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago - - 03/25/2021 - - True - - - - - - - - 5 -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - - - 03/25/2021 - - True - - - - - - - - 5 -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - - - 03/25/2021 - - True - - - - - - - - 5 -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago - - 03/25/2021 - - True - - - - - - - - 5 -
- erin007@userinterviews.com - -<<<<<<< release/2.1.1 - Anna -======= - Erin ->>>>>>> main - -<<<<<<< release/2.1.1 - Boston - - 0 -======= - May - - +1499090234 ->>>>>>> main - -<<<<<<< release/2.1.1 - False -
-<<<<<<< release/2.1.1 - Carly -======= - - ->>>>>>> main - -<<<<<<< release/2.1.1 - Dixon - - 1 -======= - 23 days ago - - 03/25/2021 ->>>>>>> main - - True -
-<<<<<<< release/2.1.1 - Erin -======= - - ->>>>>>> main - -<<<<<<< release/2.1.1 - Fitzgerald -======= - - ->>>>>>> main - -<<<<<<< release/2.1.1 - 10 - - True -======= - 5 ->>>>>>> main -
- Gregg -======= - className="TableCell TableCell--sticky-column TableCell--sticky-column--left" - style={ - Object { - "left": "0px", - } - } - > - jh247@userinterviews.com - - John-Henry ->>>>>>> main - -<<<<<<< release/2.1.1 - Harris - - 20 -======= - Forster - - +1888938488 ->>>>>>> main - -<<<<<<< release/2.1.1 - True -
-<<<<<<< release/2.1.1 - Izzie -======= - - ->>>>>>> main - -<<<<<<< release/2.1.1 - Jackson - - 100 -======= - - - - 03/25/2021 ->>>>>>> main - -<<<<<<< release/2.1.1 - False -
-`; - -exports[`Storyshots Components/Table Table With Compact Option 1`] = ` -
- -

- Compact -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- - New - - - basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- - bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- - dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- - New - - - erin007@userinterviews.com - - Erin - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- - New - - - jh247@userinterviews.com - - John-Henry - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- - New - - - jason909085119@userinterviews.com - - Jason - - Basuil - - - 01/01/2021 - - - - - - -
- - New - - - rachel777@userinterviews.com - - Rachel - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- - New - - - jojo330@userinterviews.com - - JoJo - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - - 2 days ago -
- - New - - - faus555@userinterviews.com - - Faustino - - Gaitan - - +90918394789 - - 06/13/2019 - - - - - - -
-
-`; - -exports[`Storyshots Components/Table Table With Fixed Column Widths 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - 2 days ago - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- riley@userinterviews.com - (with a max-width) - - Riley - (with a min-width) - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago -
- basel123@userinterviews.com - (with a max-width) - - Basel - (with a min-width) - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - -
- bob456@userinterviews.com - (with a max-width) - - Bob - (with a min-width) - - Saris - - - 01/26/2020 - - 2 days ago - - - -
- dennis789@userinterviews.com - (with a max-width) - - Dennis - (with a min-width) - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago -
- erin007@userinterviews.com - (with a max-width) - - Erin - (with a min-width) - - May - - +1499090234 - - 09/21/2020 - - - - - 23 days ago -
- jh247@userinterviews.com - (with a max-width) - - John-Henry - (with a min-width) - - Forster - - +1888938488 - - 03/14/2021 - - - - - - -
- jason909085119@userinterviews.com - (with a max-width) - - Jason - (with a min-width) - - Basuil - - - 01/01/2021 - - - - - - -
- rachel777@userinterviews.com - (with a max-width) - - Rachel - (with a min-width) - - Rapollo - - +40988881822329308 - - 07/21/2019 - - - - - - -
- jojo330@userinterviews.com - (with a max-width) - - JoJo - (with a min-width) - - Lee - - +1898374888 - - 09/17/2020 - - 1 day ago - + + Email + + First name + + Last name + + Phone number + + Date added + + Last invited + + Last applied +
+ riley@userinterviews.com + + Riley + + Researcher + + +18888888888 + + 01/22/2021 + + 3 days ago + + 1 day ago +
+ basel123@userinterviews.com + + Basel + + Fakhoury + + +467234460393409 + + 04/08/2020 + + - + + - +
+ bob456@userinterviews.com + + Bob + + Saris + + + 01/26/2020 + + 2 days ago + + - +
+ dennis789@userinterviews.com + + Dennis + + Meng + + + 12/21/2020 + + 6 days ago + + 5 days ago +
+ erin007@userinterviews.com + + Erin + + May + + +1499090234 + + 09/21/2020 + + - + + 23 days ago +
+ jh247@userinterviews.com + + John-Henry + + Forster + + +1888938488 + + 03/14/2021 + + - + + - +
+ jason909085119@userinterviews.com + + Jason + + Basuil + + + 01/01/2021 + + - + + - +
+ rachel777@userinterviews.com + + Rachel + + Rapollo + + +40988881822329308 + + 07/21/2019 + + - + + - +
+ jojo330@userinterviews.com + + JoJo + + Lee + + +1898374888 + + 09/17/2020 + + 1 day ago + + 2 days ago +
+ faus555@userinterviews.com + + Faustino + + Gaitan + + +90918394789 + + 06/13/2019 + + - + + - +
+ + +`; + +exports[`Storyshots Components/Table Table On Card No Padding 1`] = ` +
+
+ - - - - - - - + + + + + + + + + - - - - - -
- faus555@userinterviews.com - (with a max-width) - - Faustino - (with a min-width) - - Gaitan - - +90918394789 - - 06/13/2019 - - - - + + Email + + First name + + Last name + + Phone number + + Date added + + Last invited + + Last applied +
+
+ riley@userinterviews.com + + Riley + + Researcher + + +18888888888 + + 01/22/2021 + + 3 days ago + + 1 day ago +
+ basel123@userinterviews.com + + Basel + + Fakhoury + + +467234460393409 + + 04/08/2020 + + - + + - +
+ bob456@userinterviews.com + + Bob + + Saris + + + 01/26/2020 + + 2 days ago + + - +
+ dennis789@userinterviews.com + + Dennis + + Meng + + + 12/21/2020 + + 6 days ago + + 5 days ago +
+ erin007@userinterviews.com + + Erin + + May + + +1499090234 + + 09/21/2020 + + - + + 23 days ago +
+ jh247@userinterviews.com + + John-Henry + + Forster + + +1888938488 + + 03/14/2021 + + - + + - +
+ jason909085119@userinterviews.com + + Jason + + Basuil + + + 01/01/2021 + + - + + - +
+ rachel777@userinterviews.com + + Rachel + + Rapollo + + +40988881822329308 + + 07/21/2019 + + - + + - +
+ jojo330@userinterviews.com + + JoJo + + Lee + + +1898374888 + + 09/17/2020 + + 1 day ago + + 2 days ago +
+ faus555@userinterviews.com + + Faustino + + Gaitan + + +90918394789 + + 06/13/2019 + + - + + - +
+
+
`; -exports[`Storyshots Components/Table Table With Footer 1`] = ` +exports[`Storyshots Components/Table Table With Cell Right Alignment 1`] = ` @@ -37731,208 +16571,60 @@ exports[`Storyshots Components/Table Table With Footer 1`] = ` className="TableRow" > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + > + - Anna - - - Carly - - - Erin - - - Gregg - - - +`; + +exports[`Storyshots Components/Table Table With Compact Option 1`] = ` +
+
+

+ Compact +

+
- Participant - - Incentive + First name - Processing fee + Last name - Recruit fee + Incentives earned - Amount + Unsubscribed
- Anna - - $50.00 - - $0.00 - - $0.00 - - $50.00 -
- Carly - - $25.00 - - $0.00 - - $0.00 - - $25.00 -
- Erin - - $100.00 - - $0.00 - - $0.00 - - $100.00 -
- Gregg - - $250.00 - - $0.00 - - $0.00 - - $250.00 -
- Izzie -
- $180.00 + Anna - $0.00 + Boston - $0.00 + 0 - $180.00 + False
- $50.00 + Carly - $0.00 + Dixon - $0.00 + 1 - $50.00 + True
- $25.00 + Erin - $0.00 + Fitzgerald - $0.00 + 10 - $25.00 + True
- $100.00 + Gregg - $0.00 + Harris - $0.00 + 20 - $100.00 + True
- $250.00 + Izzie - $0.00 + Jackson - $0.00 + 100 - $250.00 + False
+ - - + + + + + + + + + + - $1030.00 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - $0.00 - - + + + + + + + + - $0.00 - - + + + + + + + + - $1030.00 - - - -
- Total - + + Email + + First name + + Last name + + Phone number + + Date added + + Last invited + + Last applied +
+ + riley@userinterviews.com + + Riley + + Researcher + + +18888888888 + + 01/22/2021 + + 3 days ago + + 1 day ago +
+ + New + + + basel123@userinterviews.com + + Basel + + Fakhoury + + +467234460393409 + + 04/08/2020 + + - + + - +
+ + bob456@userinterviews.com + + Bob + + Saris + + + 01/26/2020 + + 2 days ago + + - +
+ + dennis789@userinterviews.com + + Dennis + + Meng + + + 12/21/2020 + + 6 days ago + + 5 days ago +
+ + New + + + erin007@userinterviews.com + + Erin + + May + + +1499090234 + + 09/21/2020 + + - + + 23 days ago +
+ + New + + + jh247@userinterviews.com + + John-Henry + + Forster + + +1888938488 + + 03/14/2021 + + - + + - +
+ + New + + + jason909085119@userinterviews.com + + Jason + + Basuil + + + 01/01/2021 + + - + + - +
+ + New + + + + rachel777@userinterviews.com + + Rachel + + Rapollo + + +40988881822329308 + + 07/21/2019 + + - + + - +
+ + New + + + + jojo330@userinterviews.com + + JoJo + + Lee + + +1898374888 + + 09/17/2020 + + 1 day ago + + 2 days ago +
+
+ + New + + + faus555@userinterviews.com + + Faustino + + Gaitan + + +90918394789 + + 06/13/2019 + + - + + - +
+ `; -exports[`Storyshots Components/Table Table With Multiple Action Column 1`] = ` +exports[`Storyshots Components/Table Table With Fixed Column Widths 1`] = ` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + /> - - - -
- Last invited - - Last applied - - Edit -
- riley@userinterviews.com - - Riley - - Researcher - - +18888888888 - - 01/22/2021 - - 3 days ago - - 1 day ago - - -
- basel123@userinterviews.com - - Basel - - Fakhoury - - +467234460393409 - - 04/08/2020 - - - - - - - - -
- bob456@userinterviews.com - - Bob - - Saris - - - 01/26/2020 - - 2 days ago - - - - - -
- dennis789@userinterviews.com - - Dennis - - Meng - - - 12/21/2020 - - 6 days ago - - 5 days ago - + - - + Last applied +
- erin007@userinterviews.com - - Erin + riley@userinterviews.com + (with a max-width) - May + Riley + (with a min-width) - +1499090234 + Researcher - 09/21/2020 + +18888888888 - - + 01/22/2021 - 23 days ago + 3 days ago - + 1 day ago
- jh247@userinterviews.com + basel123@userinterviews.com + (with a max-width) - John-Henry + Basel + (with a min-width) - Forster + Fakhoury - +1888938488 + +467234460393409 - 03/14/2021 + 04/08/2020 - - -
- jason909085119@userinterviews.com + bob456@userinterviews.com + (with a max-width) - Jason + Bob + (with a min-width) - Basuil + Saris - 01/01/2021 + 01/26/2020 - - + 2 days ago - - -
- rachel777@userinterviews.com - - Rachel + dennis789@userinterviews.com + (with a max-width) - Rapollo + Dennis + (with a min-width) - +40988881822329308 + Meng - 07/21/2019 - - - + 12/21/2020 - - + 6 days ago - + 5 days ago
- jojo330@userinterviews.com - - JoJo + erin007@userinterviews.com + (with a max-width) - Lee + Erin + (with a min-width) - +1898374888 + May - 09/17/2020 + +1499090234 - 1 day ago + 09/21/2020 - 2 days ago + - - + 23 days ago
- faus555@userinterviews.com + jh247@userinterviews.com + (with a max-width) - Faustino + John-Henry + (with a min-width) - Gaitan + Forster - +90918394789 + +1888938488 - 06/13/2019 + 03/14/2021 - - -
-`; - -exports[`Storyshots Components/Table Table With Multiple Select 1`] = ` - - - - - - - - - - - - - - - + /> - - - + +
- - - Email - - First name - - Last name - - Phone number - - Date added - - Last invited - - Last applied -
- - - riley@userinterviews.com + jason909085119@userinterviews.com + (with a max-width) - Riley + Jason + (with a min-width) - Researcher + Basuil - +18888888888 - - 01/22/2021 + 01/01/2021 - 3 days ago + - - 1 day ago + -
- - - basel123@userinterviews.com + rachel777@userinterviews.com + (with a max-width) - Basel + Rachel + (with a min-width) - Fakhoury + Rapollo - +467234460393409 + +40988881822329308 - 04/08/2020 + 07/21/2019
- + jojo330@userinterviews.com + (with a max-width) - bob456@userinterviews.com + JoJo + (with a min-width) - Bob + Lee - Saris + +1898374888 - 01/26/2020 + 09/17/2020 - 2 days ago + 1 day ago - - + 2 days ago
- + faus555@userinterviews.com + (with a max-width) - dennis789@userinterviews.com + Faustino + (with a min-width) - Dennis + Gaitan - Meng + +90918394789 - 12/21/2020 + 06/13/2019 - 6 days ago + - - 5 days ago + -
+`; + +exports[`Storyshots Components/Table Table With Footer 1`] = ` + + - + Participant + + + + + + + + + + + - - + + - + + - - + + - + + - - + + + + + + + + + + +
- - + Incentive + + Processing fee + + Recruit fee + + Amount +
- erin007@userinterviews.com + Anna - Erin + $50.00 - May + $0.00 - +1499090234 + $0.00 - 09/21/2020 + $50.00
- - + Carly - 23 days ago + $25.00
- + $0.00 - jh247@userinterviews.com + $0.00 - John-Henry + $25.00
- Forster + Erin - +1888938488 + $100.00 - 03/14/2021 + $0.00 - - + $0.00 - - + $100.00
- + Gregg - jason909085119@userinterviews.com + $250.00 - Jason + $0.00 - Basuil + $0.00 - 01/01/2021 + $250.00
- - + Izzie - - + $180.00
- + $0.00 - rachel777@userinterviews.com + $0.00 - Rachel + $180.00
- Rapollo + Anna - +40988881822329308 + $50.00 - 07/21/2019 + $0.00 - - + $0.00 - - + $50.00
- - - jojo330@userinterviews.com + Carly - JoJo + $25.00 - Lee + $0.00 - +1898374888 + $0.00 - 09/17/2020 + $25.00
- 1 day ago + Erin - 2 days ago + $100.00
- + $0.00 - faus555@userinterviews.com + $0.00 - Faustino + $100.00
- Gaitan + Gregg - +90918394789 + $250.00 - 06/13/2019 + $0.00 - - + $0.00 - - + $250.00
+ Total + + $1030.00 + + $0.00 + + $0.00 + + $1030.00 +
`; -exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sticky Columns And Header 1`] = ` +exports[`Storyshots Components/Table Table With Multiple Action Column 1`] = ` @@ -39630,105 +18381,52 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti className="TableRow" > - + @@ -39736,31 +18434,11 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti className="TableBody" > - - @@ -39795,12 +18473,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti 3 days ago + - @@ -39893,12 +18553,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + - @@ -39989,12 +18631,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti 2 days ago + - @@ -40085,12 +18709,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti 6 days ago + - @@ -40183,12 +18789,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + - @@ -40281,12 +18869,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + - @@ -40377,12 +18947,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + - @@ -40475,12 +19027,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + - @@ -40573,12 +19107,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti 1 day ago + - @@ -40671,12 +19187,14 @@ exports[`Storyshots Components/Table Table With Multiple Select And Multiple Sti - + + -
-
- Tab Content One -
-
-
+
+ + -
- - - switch-check - - - -
-
+
+ + - - - - -`; - -exports[`Storyshots Components/Tooltip Gray Icon 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip Green Icon 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip Light 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip With Header 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip With Hover 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip With Html 1`] = ` -
- -
-`; - -exports[`Storyshots Components/Tooltip With Tracking 1`] = ` -
-
+ - - - - + > + faus555@userinterviews.com + + + + + + + + + + +
- - - Email - - - + Email First name Last name Phone number Date added Last invited - Action + Last applied + + Edit
- - + riley@userinterviews.com + 1 day ago +
- - basel123@userinterviews.com + - +
- - bob456@userinterviews.com + - +
- - dennis789@userinterviews.com + 5 days ago +
- - erin007@userinterviews.com + 23 days ago +
- - jh247@userinterviews.com + - +
- - jason909085119@userinterviews.com + - +
- - rachel777@userinterviews.com + - +
- - jojo330@userinterviews.com + 2 days ago +
- - faus555@userinterviews.com + - + - -
  • - -
  • -
  • - -
  • -
  • - -
  • - -
    -
    -
    - Tab Content One -
    -
    -
    -
    - Tab Content Two -
    -
    -
    -
    - Tab Content Three -
    -
    -
    -
    - Tab Content Four -
    -
    -
    - - -`; - -exports[`Storyshots Components/Tabs Uncontrolled 1`] = ` -
    - -
      -
    • - -
    • -
    • - -
    • -
    • -
    • -
    • - -
    • -
    -
    +
    -
    - Tab Content Two -
    - -
    +
    -
    - Tab Content Three -
    - -
    +
    + -
    - Tab Content Four -
    - - - - -`; - -exports[`Storyshots Components/Text Alignment 1`] = ` -Array [ -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -] -`; - -exports[`Storyshots Components/Text Default 1`] = ` -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    -`; - -exports[`Storyshots Components/Text Sizes 1`] = ` -Array [ -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -] -`; - -exports[`Storyshots Components/Text Weight 1`] = ` -Array [ -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -

    - Source from a pool of more than 2.1 million participants to reach nearly any target audience. -

    , -] -`; - -exports[`Storyshots Components/Toast Default 1`] = ` -Array [ -
    , -
    -

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

    - -
    , -] -`; - -exports[`Storyshots Components/Toast Manual Dismiss Toast 1`] = ` -Array [ -
    , -
    -

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

    - -
    , -] -`; - -exports[`Storyshots Components/Toast Toast Custom Message 1`] = ` -Array [ -
    , -
    -

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

    - -
    , -] -`; - -exports[`Storyshots Components/Toast Toast With Action 1`] = ` -Array [ -
    , -
    -

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

    - -
    , -] -`; - -exports[`Storyshots Components/ToggleInput Checked 1`] = ` -
    - - - switch-check - - - - -
    +
    - + + - - -
    - -
    - - Label - - -`; - -exports[`Storyshots Components/ToggleInput Default 1`] = ` -
    - - - switch-x - - - - - -
    - -
    - - Label - - -`; - -exports[`Storyshots Components/ToggleInput Disabled 1`] = ` -
    - - - switch-check - - - - -
    +
    - - - switch-x - - - - - -
    - -
    - - Label - - -`; - -exports[`Storyshots Components/ToggleInput Label Left 1`] = ` -
    - - - switch-check - - - - -
    +
    - + + - + + + - - -
    - -
    - -`; - -exports[`Storyshots Components/Tooltip Default 1`] = ` -
    -
    + Faustino + + Gaitan + + +90918394789 + + 06/13/2019 + + - + + - + + +
    `; -exports[`Storyshots Foundations/Color Palette Blue 1`] = ` -
    -
    -

    -

    - UX_BLUE_100 -
    -
    - #F1F5FE -
    -

    -
    -
    -

    -

    - UX_BLUE_200 -
    -
    - #BDD1FB -
    -

    -
    -
    -

    -

    - UX_BLUE_300 -
    -
    - #A6C0F5 -
    -

    -
    -
    -

    -

    - UX_BLUE_400 -
    -
    - #7497DF -
    -

    -
    -
    + First name + + + Last name + + + Incentives earned + + + + + + Unsubscribed + + + + + + + -

    -

    - UX_BLUE_500 -
    -
    - #3F6DCA -
    -

    -
    -
    -

    + Anna + + + Boston + + + 0 + + + False + + + -

    - UX_BLUE_600 -
    -
    - #2854AF -
    -

    -
    -
    -

    + Carly + + + Dixon + + + 1 + + + True + + + -

    - UX_BLUE_700 -
    -
    - #143C8D -
    -

    -
    -
    -

    + Erin + + + Fitzgerald + + + 10 + + + True + + + -

    - UX_BLUE_800 -
    -
    - #0B2D72 -
    -

    -
    -
    -

    + Gregg + + + Harris + + + 20 + + + True + + + -

    - UX_BLUE_900 -
    -
    - #031D52 -
    -

    -
    -
    + + Izzie + + + Jackson + + + 100 + + + False + + + + `; -exports[`Storyshots Foundations/Color Palette Emerald 1`] = ` -
    -
    -

    -

    - UX_EMERALD_100 -
    -
    - #BFDDD5 -
    -

    -
    -
    -

    -

    - UX_EMERALD_200 -
    -
    - #91CABB -
    -

    -
    -
    -

    -

    - UX_EMERALD_300 -
    -
    - #65B8A2 -
    -

    -
    -
    + Email + + + + + + First name + + + Last name + + + Phone number + + + Date added + + + Last invited + + + Last applied + + + Date + + + Boolean + + + Decimal + + + Pick any + + + Incentives earned + + + + -

    -

    - UX_EMERALD_400 -
    -
    - #3EA388 -
    -

    -
    -
    -

    + riley@userinterviews.com + + + Riley + + + Researcher + + + +18888888888 + + + 01/22/2021 + + + 3 days ago + + + 1 day ago + + + 03/25/2021 + + + True + + + - + + + - + + + 5 + + + -

    - UX_EMERALD_500 -
    -
    - #158D71 -
    -

    -
    -
    -

    -

    - UX_EMERALD_600 -
    -
    - #177863 -
    -

    -
    -
    -

    + basel123@userinterviews.com + + + Basel + + + Fakhoury + + + +467234460393409 + + + 04/08/2020 + + + - + + + - + + + 03/25/2021 + + + True + + + - + + + - + + + 5 + + + + + bob456@userinterviews.com + + + Bob + + + Saris + + + + 01/26/2020 + + + 2 days ago + + + - + + + 03/25/2021 + + + True + + + - + + + - + + + 5 + + + -

    - UX_EMERALD_700 -
    -
    - #156152 -
    -

    -
    -
    -

    + dennis789@userinterviews.com + + + Dennis + + + Meng + + + + 12/21/2020 + + + 6 days ago + + + 5 days ago + + + 03/25/2021 + + + True + + + - + + + - + + + 5 + + + -

    - UX_EMERALD_800 -
    -
    - #0D4A3E -
    -

    -
    -
    -

    + erin007@userinterviews.com + + + Erin + + + May + + + +1499090234 + + + 09/21/2020 + + + - + + + 23 days ago + + + 03/25/2021 + + + True + + + - + + + - + + + 5 + + + -

    - UX_EMERALD_900 -
    -
    - #073B31 -
    -

    -
    -
    -`; - -======= + + jh247@userinterviews.com + + + John-Henry + + + Forster + + + +1888938488 + + + 03/14/2021 + + + - + + + - + + + 03/25/2021 + + True