├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── config.yml ├── dependabot.yml ├── stale.yml └── workflows │ └── npm-publish.yml ├── .gitignore ├── .jest └── register-context.js ├── .prettierignore ├── .prettierrc.json ├── .snyk ├── .storybook ├── babel.config.js ├── main.js ├── middleware.js ├── preview-head.html ├── preview.js └── webpack.config.js ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Procfile ├── README.md ├── RELEASENOTES.md ├── SECURITY.md ├── app.js ├── app.json ├── assets ├── images │ ├── global-header │ │ └── logo.svg │ └── illustrations │ │ ├── empty-state-no-access.svg │ │ ├── empty-state-no-results.svg │ │ └── empty-state-not-available-in-lightning.svg └── styles │ ├── override.css │ └── table.css ├── babel.config.js ├── components ├── README.md ├── SLDSSettings.js ├── accordion.d.ts ├── accordion │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base-open.jsx │ │ └── base.jsx │ ├── __tests__ │ │ └── accordion.browser-test.jsx │ ├── component.json │ ├── index.jsx │ ├── panel.d.ts │ └── panel.jsx ├── alert.d.ts ├── alert │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── close-alert.jsx │ │ ├── custom-class-name.jsx │ │ ├── custom-style.jsx │ │ ├── dismissable.jsx │ │ ├── error.jsx │ │ ├── info.jsx │ │ ├── offline.jsx │ │ └── warning.jsx │ ├── __tests__ │ │ └── alert.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── container.d.ts │ ├── container.jsx │ └── index.jsx ├── app-launcher.d.ts ├── app-launcher │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ ├── app-launcher.browser-test.jsx │ │ ├── expandable-section.browser-test.jsx │ │ ├── link.browser-test.jsx │ │ └── tile.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── expandable-section.d.ts │ ├── expandable-section.jsx │ ├── index.jsx │ ├── link.d.ts │ ├── link.jsx │ ├── section.d.ts │ ├── section.jsx │ ├── tile.d.ts │ └── tile.jsx ├── avatar.d.ts ├── avatar │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ ├── site-stories.js │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── avatar.jpg │ │ ├── base.jsx │ │ ├── entity-icon.jsx │ │ ├── entity-initials.jsx │ │ ├── inverse-user-initials.jsx │ │ ├── user-icon.jsx │ │ └── user-initials.jsx │ ├── __tests__ │ │ └── avatar.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── badge.d.ts ├── badge │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── color-variants.jsx │ │ ├── default.jsx │ │ └── with-icon.jsx │ ├── component.json │ └── index.jsx ├── brand-band.d.ts ├── brand-band │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── background-cover.jsx │ │ ├── default.jsx │ │ ├── group-image.jsx │ │ ├── large.jsx │ │ ├── no-image.jsx │ │ ├── small.jsx │ │ └── user-image.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── bread-crumb │ └── index.jsx ├── breadcrumb.d.ts ├── breadcrumb │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base-with-overflow-menu.jsx │ │ ├── base.jsx │ │ └── one-item.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── builder-header.d.ts ├── builder-header │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── after-successful-save.jsx │ │ ├── base-with-page-type-editable.jsx │ │ ├── base-with-toolbar.jsx │ │ ├── base-with-utilities.jsx │ │ ├── base.jsx │ │ ├── custom-icon.jsx │ │ ├── failed-save.jsx │ │ └── successful-save.jsx │ ├── __tests__ │ │ └── builder-header.browser-test.jsx │ ├── component.json │ ├── index.jsx │ ├── misc.d.ts │ ├── misc.jsx │ ├── nav-dropdown.jsx │ ├── nav-link.d.ts │ ├── nav-link.jsx │ ├── nav.d.ts │ ├── nav.jsx │ ├── toolbar.d.ts │ ├── toolbar.jsx │ ├── utilities.d.ts │ └── utilities.jsx ├── button-group.d.ts ├── button-group │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── checkbox-error.jsx │ │ ├── checkbox.jsx │ │ ├── icon-group.jsx │ │ ├── list-variant.jsx │ │ └── more-icon.jsx │ ├── __tests__ │ │ └── button-group.browser-test.jsx │ ├── component.json │ └── index.jsx ├── button-stateful.d.ts ├── button-stateful │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── icon-text.jsx │ │ └── icon.jsx │ ├── __tests__ │ │ └── button-stateful.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── button.d.ts ├── button │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base-neutral.jsx │ │ ├── brand-disabled-destructive-inverse.jsx │ │ └── button-icons.jsx │ ├── __tests__ │ │ └── button.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── card.d.ts ├── card │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── related-list-with-table.jsx │ ├── __tests__ │ │ └── card.browser-test.jsx │ ├── component.json │ ├── empty.d.ts │ ├── empty.jsx │ ├── filter.d.ts │ ├── filter.jsx │ ├── index.jsx │ └── private │ │ ├── body.d.ts │ │ ├── body.jsx │ │ ├── footer.d.ts │ │ ├── footer.jsx │ │ ├── header.d.ts │ │ └── header.jsx ├── carousel.d.ts ├── carousel │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default-with-autoplay.jsx │ │ ├── default-with-navigation.jsx │ │ ├── default.jsx │ │ ├── five-items.jsx │ │ ├── three-items-controlled.jsx │ │ ├── three-items.jsx │ │ └── with-custom-items.jsx │ ├── __tests__ │ │ └── carousel.browser-test.jsx │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── auto-play-button.d.ts │ │ ├── auto-play-button.jsx │ │ ├── carousel-indicators.d.ts │ │ ├── carousel-indicators.jsx │ │ ├── carousel-item.d.ts │ │ ├── carousel-item.jsx │ │ ├── previous-next-carousel-navigator.d.ts │ │ └── previous-next-carousel-navigator.jsx ├── checkbox.d.ts ├── checkbox │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── error.jsx │ │ ├── grouped-with-tristate.jsx │ │ ├── snapshot-base.jsx │ │ ├── snapshot-toggle.jsx │ │ └── toggle.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── color-picker.d.ts ├── color-picker │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── color-picker.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── custom-color-form.jsx │ │ ├── custom-color.jsx │ │ ├── hsv-color.jsx │ │ ├── swatch-option.jsx │ │ ├── swatch-picker.jsx │ │ ├── swatch.d.ts │ │ └── swatch.jsx ├── combobox │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base-custom-menu-item-disabled.jsx │ │ ├── base-custom-menu-item.jsx │ │ ├── base-inherit-menu-width-RTL.jsx │ │ ├── base-inherit-menu-width.jsx │ │ ├── base-inline-help-tooltip.jsx │ │ ├── base-menu-item-disabled-tooltip-open.jsx │ │ ├── base-menu-item-disabled-tooltip.jsx │ │ ├── base-menu-item-disabled.jsx │ │ ├── base-menu-separator.jsx │ │ ├── base-menu-subheader.jsx │ │ ├── base-predefined-options-only.jsx │ │ ├── base-with-input.jsx │ │ ├── base-with-scroll.jsx │ │ ├── base.jsx │ │ ├── dialog.jsx │ │ ├── inline-multiple-loading.jsx │ │ ├── inline-multiple.jsx │ │ ├── inline-single-entity-combobox.jsx │ │ ├── inline-single-invalid.jsx │ │ ├── inline-single-predefined-options-only.jsx │ │ ├── inline-single-search-add-entities.jsx │ │ ├── inline-single-with-custom-open-state.jsx │ │ ├── inline-single.jsx │ │ ├── input-prop.jsx │ │ ├── readonly-menu-item-disabled.jsx │ │ ├── readonly-multiple-deselect.jsx │ │ ├── readonly-multiple.jsx │ │ ├── readonly-single-RTL.jsx │ │ ├── readonly-single-deselect.jsx │ │ ├── readonly-single-disabled.jsx │ │ ├── readonly-single-selection-custom-menu-item.jsx │ │ ├── readonly-single.jsx │ │ ├── required-input-error-state.jsx │ │ └── snapshot │ │ │ ├── base-custom-menu-item-open.jsx │ │ │ ├── base-label-required.jsx │ │ │ ├── base-open-class-name.jsx │ │ │ ├── base-open-menu-inheritWidthOf.jsx │ │ │ ├── base-open-menu-sub-header.jsx │ │ │ ├── base-open.jsx │ │ │ ├── base-selected.jsx │ │ │ ├── dialog-open.jsx │ │ │ ├── inline-multiple-open-loading.jsx │ │ │ ├── inline-multiple-selection-selected.jsx │ │ │ ├── inline-multiple-selection.jsx │ │ │ ├── inline-single-entity-combobox.jsx │ │ │ ├── inline-single-invalid.jsx │ │ │ ├── inline-single-search-add-entities-open.jsx │ │ │ ├── inline-single-selection-selected.jsx │ │ │ ├── inline-single-selection.jsx │ │ │ ├── readonly-multiple-selection-multiple-items-selected.jsx │ │ │ ├── readonly-multiple-selection-single-item-selected.jsx │ │ │ ├── readonly-multiple-selection.jsx │ │ │ ├── readonly-single-selection-custom-menu-item.jsx │ │ │ ├── readonly-single-selection-disabled.jsx │ │ │ ├── readonly-single-selection-selected-open.jsx │ │ │ ├── readonly-single-selection-selected.jsx │ │ │ └── readonly-single-selection.jsx │ ├── __tests__ │ │ └── combobox.browser-test.jsx │ ├── add-subheadings.js │ ├── check-props.js │ ├── combobox.d.ts │ ├── combobox.jsx │ ├── component.json │ ├── filter.js │ ├── index.jsx │ └── private │ │ ├── menu.d.ts │ │ └── menu.jsx ├── comments.txt ├── component-docs.json ├── data-table.d.ts ├── data-table │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── advanced-header-row.jsx │ │ ├── advanced-single-select-fixed-header.jsx │ │ ├── advanced-single-select.jsx │ │ ├── advanced.jsx │ │ ├── basic-fixed-layout.jsx │ │ ├── basic-fluid-column-bordered.jsx │ │ ├── basic-fluid-headless.jsx │ │ ├── basic-fluid-no-row-hover.jsx │ │ ├── basic-fluid-striped.jsx │ │ ├── basic-fluid.jsx │ │ ├── custom-classes.jsx │ │ ├── fixed-header-horizontal-scrolling.jsx │ │ ├── fixed-header.jsx │ │ ├── infinite-scrolling.jsx │ │ ├── interactive-elements.jsx │ │ ├── joined-with-page-header.jsx │ │ └── resizable-columns.jsx │ ├── __tests__ │ │ └── data-table.browser-test.jsx │ ├── cell.d.ts │ ├── cell.jsx │ ├── check-props.js │ ├── column-check-props.js │ ├── column.d.ts │ ├── column.jsx │ ├── column.resizer.d.ts │ ├── component.json │ ├── highlight-cell.d.ts │ ├── highlight-cell.jsx │ ├── index.jsx │ ├── interactive-element.jsx │ ├── interactive-link.jsx │ ├── private │ │ ├── cell-context.jsx │ │ ├── cell-fixed.jsx │ │ ├── context-helper.js │ │ ├── head.d.ts │ │ ├── head.jsx │ │ ├── header-cell.d.ts │ │ ├── header-cell.jsx │ │ ├── link.jsx │ │ ├── mode.js │ │ ├── row.d.ts │ │ ├── row.jsx │ │ └── table-context.jsx │ ├── row-actions.d.ts │ └── row-actions.jsx ├── date-picker │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── custom-input.jsx │ │ ├── default.jsx │ │ ├── error-picker.jsx │ │ ├── iso-weekday.jsx │ │ ├── snapshot-default.jsx │ │ └── weekday-picker.jsx │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── datepicker.dom-snapshot-test.jsx.snap │ │ ├── date-picker.browser-test.jsx │ │ └── datepicker.dom-snapshot-test.jsx │ ├── check-props.js │ ├── component.json │ ├── date-picker.d.ts │ ├── date-picker.jsx │ ├── index.jsx │ └── private │ │ ├── calendar-wrapper.d.ts │ │ ├── calendar-wrapper.jsx │ │ ├── calendar.d.ts │ │ ├── calendar.jsx │ │ ├── day.d.ts │ │ ├── day.jsx │ │ ├── navigation.d.ts │ │ ├── navigation.jsx │ │ ├── week.d.ts │ │ ├── week.jsx │ │ ├── year-picklist.d.ts │ │ └── year-picklist.jsx ├── docked-composer │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base.jsx │ │ └── minimized.jsx │ ├── __tests__ │ │ └── docked-composer.browser-test.jsx │ ├── component.json │ └── index.jsx ├── dynamic-icon.d.ts ├── dynamic-icon │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── ellie.jsx │ │ ├── eq.jsx │ │ ├── score.jsx │ │ ├── strength.jsx │ │ ├── trend.jsx │ │ ├── typing.jsx │ │ └── waffle.jsx │ ├── component.json │ └── index.jsx ├── expandable-section.d.ts ├── expandable-section │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── controlled.jsx │ │ ├── default.jsx │ │ └── non-collapsible.jsx │ ├── __tests__ │ │ └── expandable-section.browser-test.jsx │ ├── component.json │ └── index.jsx ├── expression.d.ts ├── expression │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── example.jsx │ │ ├── initial.jsx │ │ ├── multi-condition.jsx │ │ ├── resource-selected.jsx │ │ ├── with-custom-Logic.jsx │ │ ├── with-formula-logic.jsx │ │ └── with-group.jsx │ ├── __tests__ │ │ └── expression.browser-test.jsx │ ├── component.json │ ├── condition.d.ts │ ├── condition.jsx │ ├── formula.d.ts │ ├── formula.jsx │ ├── group.d.ts │ ├── group.jsx │ └── index.jsx ├── files.d.ts ├── files │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── actions.jsx │ │ ├── crops.jsx │ │ ├── default.jsx │ │ ├── loading.jsx │ │ ├── no-image.jsx │ │ ├── no-title.jsx │ │ └── with-external-icon.jsx │ ├── component.json │ ├── file.d.ts │ ├── file.jsx │ ├── index.jsx │ ├── more-files.d.ts │ ├── more-files.jsx │ └── private │ │ ├── file-actions.d.ts │ │ ├── file-actions.jsx │ │ ├── file-figure.d.ts │ │ └── file-figure.jsx ├── filter.d.ts ├── filter │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── assistive-text.jsx │ │ ├── default.jsx │ │ ├── error.jsx │ │ ├── locked.jsx │ │ ├── new.jsx │ │ └── permanant.jsx │ ├── __tests__ │ │ └── filter.browser-test.jsx │ ├── component.json │ └── index.jsx ├── forms │ ├── checkbox │ │ └── index.jsx │ ├── input │ │ ├── __docs__ │ │ │ └── inline │ │ │ │ └── storybook-stories.jsx │ │ ├── __examples__ │ │ │ └── inline-default.jsx │ │ ├── __tests__ │ │ │ └── inline.browser-test.jsx │ │ ├── index.jsx │ │ ├── inline-check-props.js │ │ ├── inline.d.ts │ │ ├── inline.jsx │ │ └── search.jsx │ ├── private │ │ ├── label.d.ts │ │ └── label.jsx │ ├── radio │ │ └── index.jsx │ └── textarea │ │ └── index.jsx ├── global-header.d.ts ├── global-header │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── global-header.browser-test.jsx │ ├── button.jsx │ ├── check-props.js │ ├── component.json │ ├── dropdown.d.ts │ ├── dropdown.jsx │ ├── favorites.d.ts │ ├── favorites.jsx │ ├── help.d.ts │ ├── help.jsx │ ├── index.jsx │ ├── notifications.d.ts │ ├── notifications.jsx │ ├── private │ │ ├── dropdown-trigger.d.ts │ │ └── dropdown-trigger.jsx │ ├── profile.d.ts │ ├── profile.jsx │ ├── search.d.ts │ ├── search.jsx │ ├── setup.d.ts │ ├── setup.jsx │ ├── task.d.ts │ └── task.jsx ├── global-navigation-bar.d.ts ├── global-navigation-bar │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── global-navigation-bar.browser-test.jsx │ ├── button.d.ts │ ├── button.jsx │ ├── check-props.js │ ├── component.json │ ├── dropdown-trigger.d.ts │ ├── dropdown-trigger.jsx │ ├── dropdown.d.ts │ ├── dropdown.jsx │ ├── index.jsx │ ├── label.d.ts │ ├── label.jsx │ ├── link.d.ts │ ├── link.jsx │ ├── region.d.ts │ └── region.jsx ├── grid │ └── index.jsx ├── icon-settings.d.ts ├── icon-settings │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── icon-path.jsx │ │ ├── on-request-icon-path.jsx │ │ └── sprite.jsx │ ├── component.json │ └── index.jsx ├── icon.d.ts ├── icon │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── action.jsx │ │ ├── categories.jsx │ │ ├── color-base.jsx │ │ ├── color-default.jsx │ │ ├── color-error.jsx │ │ ├── color-light.jsx │ │ ├── color-success.jsx │ │ ├── color-warning.jsx │ │ ├── colors.jsx │ │ ├── custom.jsx │ │ ├── doctype.jsx │ │ ├── external-path.jsx │ │ ├── product-themes.jsx │ │ ├── sizes-extra-small.jsx │ │ ├── sizes-large.jsx │ │ ├── sizes-medium.jsx │ │ ├── sizes-small.jsx │ │ ├── sizes.jsx │ │ ├── standard.jsx │ │ └── utility.jsx │ ├── __tests__ │ │ └── icon.browser-test.jsx │ ├── button-icon.d.ts │ ├── button-icon │ │ ├── check-props.js │ │ └── index.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ ├── input-icon.d.ts │ └── input-icon │ │ └── index.jsx ├── illustration.d.ts ├── illustration │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── heading-message.jsx │ │ ├── heading-only.jsx │ │ ├── large-image-text.jsx │ │ ├── message-only.jsx │ │ └── small-image-text.jsx │ ├── __tests__ │ │ └── illustration.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── index.d.ts ├── index.js ├── input.d.ts ├── input │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ ├── search │ │ │ ├── __snapshots__ │ │ │ │ └── storybook-stories.storyshot │ │ │ └── storybook-stories.jsx │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── counter-input.jsx │ │ ├── counter-static-input.jsx │ │ ├── default.jsx │ │ ├── error.jsx │ │ ├── field-level-help.jsx │ │ ├── icons.jsx │ │ ├── inactiveInputs.jsx │ │ └── inline-help.jsx │ ├── __tests__ │ │ └── input.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ ├── private │ │ ├── inner-input.d.ts │ │ └── inner-input.jsx │ ├── search.d.ts │ └── search.jsx ├── location-map.d.ts ├── location-map │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── multiple-locations.jsx │ │ └── single-location.jsx │ ├── __tests__ │ │ └── location-map.browser-test.jsx │ ├── component.json │ └── index.jsx ├── lookup │ ├── __docs__ │ │ ├── site-stories.js │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── files.jsx │ │ └── with-selection.jsx │ ├── __tests__ │ │ └── lookup.browser-test.jsx │ ├── check-props.js │ ├── footer.d.ts │ ├── footer.jsx │ ├── header.d.ts │ ├── header.jsx │ ├── index.jsx │ ├── lookup.d.ts │ ├── lookup.jsx │ ├── menu │ │ ├── default-footer │ │ │ └── index.jsx │ │ ├── default-header │ │ │ └── index.jsx │ │ ├── default-section-divider │ │ │ └── index.jsx │ │ ├── index.js │ │ └── item │ │ │ └── index.jsx │ ├── private │ │ ├── item.d.ts │ │ ├── item.jsx │ │ ├── menu.d.ts │ │ └── menu.jsx │ ├── section-divider.d.ts │ └── section-divider.jsx ├── media-object.d.ts ├── media-object │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ └── vertically-centered.jsx │ ├── __tests__ │ │ └── media-object.browser-test.jsx │ ├── component.json │ └── index.jsx ├── menu-dropdown │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── checkmark.jsx │ │ ├── custom-trigger.jsx │ │ ├── default-icon-label.jsx │ │ ├── default-right-to-left.jsx │ │ ├── default.jsx │ │ ├── sub-heading.jsx │ │ └── with-tooltips.jsx │ ├── __tests__ │ │ └── dropdown.browser-test.jsx │ ├── button-trigger.d.ts │ ├── button-trigger.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ ├── menu-dropdown.d.ts │ └── menu-dropdown.jsx ├── menu-list │ ├── list-item-label.jsx │ ├── list-item.jsx │ └── list.jsx ├── menu-picklist.d.ts ├── menu-picklist │ ├── __docs__ │ │ ├── site-stories.js │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base.jsx │ │ ├── snapshot-default.jsx │ │ └── tooltip-list-item.jsx │ ├── __tests__ │ │ ├── menupicklist.snapshot-old-test.jsx │ │ └── picklist-base.browser-test.jsx │ ├── check-props.js │ └── index.jsx ├── modal.d.ts ├── modal │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── header-footer.jsx │ │ ├── menu-contents.jsx │ │ ├── modal-custom-parent-node.jsx │ │ ├── prompt.jsx │ │ ├── sizes.jsx │ │ └── taglines.jsx │ ├── __tests__ │ │ └── modal.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ ├── private │ │ └── manager.jsx │ └── trigger.jsx ├── navigation │ └── index.jsx ├── notification.d.ts ├── notification │ ├── __docs__ │ │ ├── site-stories.js │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── alerts.jsx │ │ ├── toasts.jsx │ │ └── within-modal.jsx │ ├── __tests__ │ │ └── notification.browser-test.jsx │ ├── check-props.js │ └── index.jsx ├── page-header.d.ts ├── page-header │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── object-home.jsx │ │ ├── record-home.jsx │ │ ├── related-list.jsx │ │ └── setup.jsx │ ├── __tests__ │ │ └── page-header.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── control.d.ts │ ├── control.jsx │ ├── index.jsx │ └── private │ │ ├── base.d.ts │ │ ├── base │ │ └── index.jsx │ │ ├── controls.d.ts │ │ ├── controls.jsx │ │ ├── detail-block.d.ts │ │ ├── detail-block.jsx │ │ ├── detail-row.d.ts │ │ ├── detail-row.jsx │ │ ├── info.d.ts │ │ ├── info.jsx │ │ ├── label.d.ts │ │ ├── label.jsx │ │ ├── object-home.d.ts │ │ ├── object-home │ │ └── index.jsx │ │ ├── record-home.d.ts │ │ ├── record-home │ │ └── index.jsx │ │ ├── related-list.d.ts │ │ ├── related-list │ │ └── index.jsx │ │ ├── title.d.ts │ │ └── title.jsx ├── panel.d.ts ├── panel │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── filtering-error.jsx │ │ ├── filtering-locked.jsx │ │ └── filtering.jsx │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── filtering.dom-snapshot-test.jsx.snap │ │ └── filtering.dom-snapshot-test.jsx │ ├── component.json │ ├── filtering │ │ ├── check-props.js │ │ ├── group.d.ts │ │ ├── group.jsx │ │ ├── list-heading.d.ts │ │ ├── list-heading.jsx │ │ ├── list.jsx │ │ └── private │ │ │ ├── panel-footer.d.ts │ │ │ ├── panel-footer.jsx │ │ │ ├── panel-header.d.ts │ │ │ └── panel-header.jsx │ └── index.jsx ├── pill-container.d.ts ├── pill-container │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── avatars.jsx │ │ ├── bare.jsx │ │ ├── base.jsx │ │ └── icons.jsx │ ├── __tests__ │ │ └── pill-container.browser-test.jsx │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── selected-listbox.d.ts │ │ └── selected-listbox.jsx ├── pill.d.ts ├── pill │ ├── __docs__ │ │ ├── .eslintrc │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── .eslintrc │ │ ├── base.jsx │ │ ├── icon.jsx │ │ └── snapshot.jsx │ ├── __tests__ │ │ └── pill.browser-test.jsx │ ├── component.json │ └── index.jsx ├── popover-tooltip │ └── index.jsx ├── popover │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── alternative-header.jsx │ │ ├── controlled-with-footer.jsx │ │ ├── custom-target.jsx │ │ ├── edit-dialog.jsx │ │ ├── error.jsx │ │ ├── feature.jsx │ │ ├── header.jsx │ │ ├── walkthrough-action.jsx │ │ ├── walkthrough.jsx │ │ └── warning.jsx │ ├── __tests__ │ │ └── popover.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── edit-dialog.d.ts │ ├── edit-dialog.jsx │ ├── index.jsx │ ├── popover.d.ts │ └── popover.jsx ├── portal-settings │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ └── override.jsx │ ├── component.json │ └── index.jsx ├── progress-bar.d.ts ├── progress-bar │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── color.jsx │ │ ├── default.jsx │ │ ├── descriptive.jsx │ │ ├── examples.jsx │ │ ├── radius.jsx │ │ ├── thickness.jsx │ │ └── vertical.jsx │ ├── component.json │ └── index.jsx ├── progress-indicator.d.ts ├── progress-indicator │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── modal.jsx │ │ ├── setup-assistant.jsx │ │ ├── step-error.jsx │ │ └── vertical.jsx │ ├── __tests__ │ │ └── progress-indicator.browser-test.jsx │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── progress-bar.d.ts │ │ ├── progress-bar.jsx │ │ ├── progress.d.ts │ │ ├── progress.jsx │ │ ├── step-vertical.d.ts │ │ ├── step-vertical.jsx │ │ ├── step.d.ts │ │ └── step.jsx ├── progress-ring.d.ts ├── progress-ring │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── active.jsx │ │ ├── base.jsx │ │ ├── complete.jsx │ │ ├── customIcon.jsx │ │ ├── examples.jsx │ │ ├── expired.jsx │ │ └── warning.jsx │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── ring-shape.d.ts │ │ └── ring-shape.jsx ├── propTypes.txt ├── radio-button-group.d.ts ├── radio-button-group │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── base.jsx │ ├── __tests__ │ │ └── radio-button-group.browser-test.jsx │ ├── component.json │ ├── index.jsx │ └── radio.jsx ├── radio-group.d.ts ├── radio-group │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── base.jsx │ ├── __tests__ │ │ └── radio-group.browser-test.jsx │ ├── component.json │ ├── index.jsx │ └── radio.jsx ├── radio.d.ts ├── radio │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ └── disabled.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── scoped-notification.d.ts ├── scoped-notification │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base.jsx │ │ ├── custom-icon.jsx │ │ ├── dark.jsx │ │ └── light.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── settings.d.ts ├── settings.js ├── setup-assistant.d.ts ├── setup-assistant │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base.jsx │ │ ├── card.jsx │ │ ├── hub-expandable-steps.jsx │ │ ├── step-progress.jsx │ │ └── with-icons.jsx │ ├── __tests__ │ │ └── setup-assistant.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ ├── step.d.ts │ └── step.jsx ├── site-stories.js ├── slider.d.ts ├── slider │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base.jsx │ │ ├── disabled.jsx │ │ ├── error.jsx │ │ ├── sizes-large.jsx │ │ ├── sizes-medium.jsx │ │ ├── sizes-small.jsx │ │ ├── sizes-x-small.jsx │ │ ├── sizes.jsx │ │ └── vertical.jsx │ ├── __tests__ │ │ └── slider.browser-test.jsx │ ├── component.json │ └── index.jsx ├── spinner.d.ts ├── spinner │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── spinner.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── split-view.d.ts ├── split-view │ ├── __docs__ │ │ ├── .eslintrc │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── base-multiple.jsx │ │ ├── base.jsx │ │ ├── custom-items-list.jsx │ │ └── external-state.jsx │ ├── __tests__ │ │ ├── split-view.listbox.browser-test.jsx │ │ ├── split-view.listbox.header.browser-test.jsx │ │ └── split-view.listbox.unread.browser-test.jsx │ ├── component.json │ ├── header.d.ts │ ├── header.jsx │ ├── index.jsx │ ├── listbox.d.ts │ ├── listbox.jsx │ └── private │ │ ├── list-item-content.d.ts │ │ ├── list-item-content.jsx │ │ ├── list-item-with-content.jsx │ │ └── toggle-button.jsx ├── tabs.d.ts ├── tabs │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── scoped.jsx │ │ └── vertical.jsx │ ├── __tests__ │ │ └── tabs.browser-test.jsx │ ├── component.json │ ├── index.jsx │ ├── pane.jsx │ ├── panel.d.ts │ ├── panel.jsx │ └── private │ │ ├── tab-panel.d.ts │ │ ├── tab-panel.jsx │ │ ├── tab.d.ts │ │ ├── tab.jsx │ │ ├── tabs-list.d.ts │ │ └── tabs-list.jsx ├── textarea.d.ts ├── textarea │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── disabled.jsx │ │ └── error.jsx │ ├── __tests__ │ │ └── textarea.browser-test.jsx │ ├── check-props.js │ ├── component.json │ └── index.jsx ├── time-picker.d.ts ├── time-picker │ ├── __docs__ │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── time-picker.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── dropdown-trigger.d.ts │ │ └── dropdown-trigger.jsx ├── toast.d.ts ├── toast │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── close-toast.jsx │ │ ├── custom-class-name.jsx │ │ ├── custom-style.jsx │ │ ├── duration-toast.jsx │ │ ├── error-with-details.jsx │ │ ├── error.jsx │ │ ├── info.jsx │ │ ├── success.jsx │ │ └── warning.jsx │ ├── __tests__ │ │ └── toast.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── container.d.ts │ ├── container.jsx │ └── index.jsx ├── tooltip.d.ts ├── tooltip │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── anchored-nubbin.jsx │ │ ├── base.jsx │ │ ├── button-group.jsx │ │ ├── button.jsx │ │ ├── learn-more.jsx │ │ └── with-delay.jsx │ ├── __tests__ │ │ └── tooltip.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── field-level-help-tooltip.d.ts │ │ └── field-level-help-tooltip.jsx ├── tree.d.ts ├── tree │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ ├── dynamic-hashmap.jsx │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── __tests__ │ │ └── tree.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── branch.d.ts │ │ ├── branch.jsx │ │ ├── item.d.ts │ │ ├── item.jsx │ │ ├── render-branch.d.ts │ │ ├── render-branch.jsx │ │ ├── render-initial-branch.d.ts │ │ └── render-initial-branch.jsx ├── trial-bar.d.ts ├── trial-bar │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ └── default.jsx │ ├── button.jsx │ ├── component.json │ ├── dropdown.jsx │ └── index.jsx ├── utilities │ ├── README.md │ ├── UNSAFE_direction │ │ ├── index.jsx │ │ └── private │ │ │ └── language-direction.jsx │ ├── deprecated-warning │ │ └── index.jsx │ ├── dialog.d.ts │ ├── dialog │ │ ├── __docs__ │ │ │ └── storybook-stories.jsx │ │ ├── index.jsx │ │ ├── portal.d.ts │ │ └── portal.jsx │ ├── highlighter.d.ts │ ├── highlighter │ │ └── index.jsx │ ├── label.d.ts │ ├── label │ │ └── index.jsx │ ├── menu-list.d.ts │ ├── menu-list │ │ ├── index.jsx │ │ ├── item-label.d.ts │ │ ├── item-label.jsx │ │ ├── item.d.ts │ │ └── item.jsx │ ├── pill.d.ts │ ├── pill │ │ └── index.jsx │ ├── text-content.js │ ├── truncate.d.ts │ ├── truncate │ │ ├── by-length.js │ │ └── index.jsx │ ├── utility-icon.d.ts │ └── utility-icon │ │ ├── check-props.js │ │ ├── index.jsx │ │ └── svg.jsx ├── vertical-navigation.d.ts ├── vertical-navigation │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── default.jsx │ │ ├── icons.jsx │ │ ├── notifications.jsx │ │ └── snapshot-default.jsx │ ├── __tests__ │ │ └── navigation.browser-test.jsx │ ├── check-props.js │ ├── component.json │ ├── index.jsx │ └── private │ │ ├── item.d.ts │ │ └── item.jsx ├── visual-picker.d.ts ├── visual-picker │ ├── __docs__ │ │ ├── __snapshots__ │ │ │ └── storybook-stories.storyshot │ │ └── storybook-stories.jsx │ ├── __examples__ │ │ ├── coverable.jsx │ │ ├── links.jsx │ │ ├── non-coverable.jsx │ │ ├── vertical-coverable.jsx │ │ └── vertical.jsx │ ├── __tests__ │ │ └── visual-picker.browser-test.jsx │ ├── component.json │ ├── index.jsx │ ├── link.d.ts │ └── link.jsx ├── welcome-mat.d.ts └── welcome-mat │ ├── __docs__ │ └── storybook-stories.jsx │ ├── __examples__ │ ├── default.jsx │ ├── info-only.jsx │ ├── splash.jsx │ ├── steps-complete.jsx │ ├── trailhead-complete.jsx │ └── trailhead.jsx │ ├── __tests__ │ └── welcome-mat.browser-test.jsx │ ├── component.json │ ├── index.jsx │ ├── info-badge.d.ts │ ├── info-badge.jsx │ ├── tile.d.ts │ └── tile.jsx ├── docs ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── README-dist.md ├── SUPPORT.md ├── browser-compatibility.md ├── codebase-overview.md ├── create-react-app-2x.md ├── create-react-app.md ├── design-system-react-logo-type.svg ├── faq.md ├── getting-started.md ├── legacy-release-branches.md ├── release.md ├── salesforce-platform.md └── webpack.md ├── eslint-plugin ├── README.md ├── docs │ └── rules │ │ └── no-double-dash-modifier.md ├── lib │ ├── index.js │ └── rules │ │ └── no-double-dash-modifier.js ├── package.json.txt └── tests │ └── lib │ └── rules │ └── no-double-dash-modifier.js ├── icons ├── action │ ├── add_contact.js │ ├── add_file.js │ ├── add_photo_video.js │ ├── add_relationship.js │ ├── adjust_value.js │ ├── announcement.js │ ├── apex.js │ ├── approval.js │ ├── back.js │ ├── bug.js │ ├── call.js │ ├── canvas.js │ ├── change_owner.js │ ├── change_record_type.js │ ├── check.js │ ├── clone.js │ ├── close.js │ ├── defer.js │ ├── delete.js │ ├── description.js │ ├── dial_in.js │ ├── download.js │ ├── edit.js │ ├── edit_groups.js │ ├── edit_relationship.js │ ├── email.js │ ├── fallback.js │ ├── filter.js │ ├── flow.js │ ├── follow.js │ ├── following.js │ ├── freeze_user.js │ ├── goal.js │ ├── google_news.js │ ├── index.js │ ├── info.js │ ├── join_group.js │ ├── lead_convert.js │ ├── leave_group.js │ ├── log_a_call.js │ ├── log_event.js │ ├── manage_perm_sets.js │ ├── map.js │ ├── more.js │ ├── new.js │ ├── new_account.js │ ├── new_campaign.js │ ├── new_case.js │ ├── new_child_case.js │ ├── new_contact.js │ ├── new_custom1.js │ ├── new_custom10.js │ ├── new_custom100.js │ ├── new_custom11.js │ ├── new_custom12.js │ ├── new_custom13.js │ ├── new_custom14.js │ ├── new_custom15.js │ ├── new_custom16.js │ ├── new_custom17.js │ ├── new_custom18.js │ ├── new_custom19.js │ ├── new_custom2.js │ ├── new_custom20.js │ ├── new_custom21.js │ ├── new_custom22.js │ ├── new_custom23.js │ ├── new_custom24.js │ ├── new_custom25.js │ ├── new_custom26.js │ ├── new_custom27.js │ ├── new_custom28.js │ ├── new_custom29.js │ ├── new_custom3.js │ ├── new_custom30.js │ ├── new_custom31.js │ ├── new_custom32.js │ ├── new_custom33.js │ ├── new_custom34.js │ ├── new_custom35.js │ ├── new_custom36.js │ ├── new_custom37.js │ ├── new_custom38.js │ ├── new_custom39.js │ ├── new_custom4.js │ ├── new_custom40.js │ ├── new_custom41.js │ ├── new_custom42.js │ ├── new_custom43.js │ ├── new_custom44.js │ ├── new_custom45.js │ ├── new_custom46.js │ ├── new_custom47.js │ ├── new_custom48.js │ ├── new_custom49.js │ ├── new_custom5.js │ ├── new_custom50.js │ ├── new_custom51.js │ ├── new_custom52.js │ ├── new_custom53.js │ ├── new_custom54.js │ ├── new_custom55.js │ ├── new_custom56.js │ ├── new_custom57.js │ ├── new_custom58.js │ ├── new_custom59.js │ ├── new_custom6.js │ ├── new_custom60.js │ ├── new_custom61.js │ ├── new_custom62.js │ ├── new_custom63.js │ ├── new_custom64.js │ ├── new_custom65.js │ ├── new_custom66.js │ ├── new_custom67.js │ ├── new_custom68.js │ ├── new_custom69.js │ ├── new_custom7.js │ ├── new_custom70.js │ ├── new_custom71.js │ ├── new_custom72.js │ ├── new_custom73.js │ ├── new_custom74.js │ ├── new_custom75.js │ ├── new_custom76.js │ ├── new_custom77.js │ ├── new_custom78.js │ ├── new_custom79.js │ ├── new_custom8.js │ ├── new_custom80.js │ ├── new_custom81.js │ ├── new_custom82.js │ ├── new_custom83.js │ ├── new_custom84.js │ ├── new_custom85.js │ ├── new_custom86.js │ ├── new_custom87.js │ ├── new_custom88.js │ ├── new_custom89.js │ ├── new_custom9.js │ ├── new_custom90.js │ ├── new_custom91.js │ ├── new_custom92.js │ ├── new_custom93.js │ ├── new_custom94.js │ ├── new_custom95.js │ ├── new_custom96.js │ ├── new_custom97.js │ ├── new_custom98.js │ ├── new_custom99.js │ ├── new_event.js │ ├── new_group.js │ ├── new_lead.js │ ├── new_note.js │ ├── new_notebook.js │ ├── new_opportunity.js │ ├── new_person_account.js │ ├── new_task.js │ ├── password_unlock.js │ ├── preview.js │ ├── priority.js │ ├── question_post_action.js │ ├── quote.js │ ├── recall.js │ ├── record.js │ ├── refresh.js │ ├── reject.js │ ├── remove.js │ ├── remove_relationship.js │ ├── reset_password.js │ ├── script.js │ ├── share.js │ ├── share_file.js │ ├── share_link.js │ ├── share_poll.js │ ├── share_post.js │ ├── share_thanks.js │ ├── sort.js │ ├── submit_for_approval.js │ ├── update.js │ ├── update_status.js │ ├── upload.js │ ├── user.js │ ├── user_activation.js │ ├── view_relationship.js │ └── web_link.js ├── custom │ ├── custom1.js │ ├── custom10.js │ ├── custom100.js │ ├── custom101.js │ ├── custom102.js │ ├── custom103.js │ ├── custom104.js │ ├── custom105.js │ ├── custom106.js │ ├── custom107.js │ ├── custom108.js │ ├── custom109.js │ ├── custom11.js │ ├── custom110.js │ ├── custom111.js │ ├── custom112.js │ ├── custom113.js │ ├── custom12.js │ ├── custom13.js │ ├── custom14.js │ ├── custom15.js │ ├── custom16.js │ ├── custom17.js │ ├── custom18.js │ ├── custom19.js │ ├── custom2.js │ ├── custom20.js │ ├── custom21.js │ ├── custom22.js │ ├── custom23.js │ ├── custom24.js │ ├── custom25.js │ ├── custom26.js │ ├── custom27.js │ ├── custom28.js │ ├── custom29.js │ ├── custom3.js │ ├── custom30.js │ ├── custom31.js │ ├── custom32.js │ ├── custom33.js │ ├── custom34.js │ ├── custom35.js │ ├── custom36.js │ ├── custom37.js │ ├── custom38.js │ ├── custom39.js │ ├── custom4.js │ ├── custom40.js │ ├── custom41.js │ ├── custom42.js │ ├── custom43.js │ ├── custom44.js │ ├── custom45.js │ ├── custom46.js │ ├── custom47.js │ ├── custom48.js │ ├── custom49.js │ ├── custom5.js │ ├── custom50.js │ ├── custom51.js │ ├── custom52.js │ ├── custom53.js │ ├── custom54.js │ ├── custom55.js │ ├── custom56.js │ ├── custom57.js │ ├── custom58.js │ ├── custom59.js │ ├── custom6.js │ ├── custom60.js │ ├── custom61.js │ ├── custom62.js │ ├── custom63.js │ ├── custom64.js │ ├── custom65.js │ ├── custom66.js │ ├── custom67.js │ ├── custom68.js │ ├── custom69.js │ ├── custom7.js │ ├── custom70.js │ ├── custom71.js │ ├── custom72.js │ ├── custom73.js │ ├── custom74.js │ ├── custom75.js │ ├── custom76.js │ ├── custom77.js │ ├── custom78.js │ ├── custom79.js │ ├── custom8.js │ ├── custom80.js │ ├── custom81.js │ ├── custom82.js │ ├── custom83.js │ ├── custom84.js │ ├── custom85.js │ ├── custom86.js │ ├── custom87.js │ ├── custom88.js │ ├── custom89.js │ ├── custom9.js │ ├── custom90.js │ ├── custom91.js │ ├── custom92.js │ ├── custom93.js │ ├── custom94.js │ ├── custom95.js │ ├── custom96.js │ ├── custom97.js │ ├── custom98.js │ ├── custom99.js │ └── index.js ├── doctype │ ├── ai.js │ ├── attachment.js │ ├── audio.js │ ├── box_notes.js │ ├── csv.js │ ├── eps.js │ ├── excel.js │ ├── exe.js │ ├── flash.js │ ├── folder.js │ ├── gdoc.js │ ├── gdocs.js │ ├── gform.js │ ├── gpres.js │ ├── gsheet.js │ ├── html.js │ ├── image.js │ ├── index.js │ ├── keynote.js │ ├── library_folder.js │ ├── link.js │ ├── mp4.js │ ├── overlay.js │ ├── pack.js │ ├── pages.js │ ├── pdf.js │ ├── ppt.js │ ├── psd.js │ ├── quip_doc.js │ ├── quip_sheet.js │ ├── quip_slide.js │ ├── rtf.js │ ├── slide.js │ ├── stypi.js │ ├── txt.js │ ├── unknown.js │ ├── video.js │ ├── visio.js │ ├── webex.js │ ├── word.js │ ├── xml.js │ └── zip.js ├── standard │ ├── account.js │ ├── account_info.js │ ├── action_list_component.js │ ├── actions_and_buttons.js │ ├── activation_target.js │ ├── activations.js │ ├── address.js │ ├── agent_home.js │ ├── agent_session.js │ ├── aggregation_policy.js │ ├── all.js │ ├── announcement.js │ ├── answer_best.js │ ├── answer_private.js │ ├── answer_public.js │ ├── apex.js │ ├── apex_plugin.js │ ├── app.js │ ├── approval.js │ ├── apps.js │ ├── apps_admin.js │ ├── article.js │ ├── asset_action.js │ ├── asset_action_source.js │ ├── asset_audit.js │ ├── asset_downtime_period.js │ ├── asset_object.js │ ├── asset_relationship.js │ ├── asset_state_period.js │ ├── asset_warranty.js │ ├── assigned_resource.js │ ├── assignment.js │ ├── attach.js │ ├── avatar.js │ ├── avatar_loading.js │ ├── bot.js │ ├── bot_training.js │ ├── branch_merge.js │ ├── brand.js │ ├── budget.js │ ├── budget_allocation.js │ ├── bundle_config.js │ ├── bundle_policy.js │ ├── business_hours.js │ ├── buyer_account.js │ ├── buyer_group.js │ ├── calculated_insights.js │ ├── calibration.js │ ├── call.js │ ├── call_coaching.js │ ├── call_history.js │ ├── campaign.js │ ├── campaign_members.js │ ├── cancel_checkout.js │ ├── canvas.js │ ├── capacity_plan.js │ ├── care_request_reviewer.js │ ├── carousel.js │ ├── case.js │ ├── case_change_status.js │ ├── case_comment.js │ ├── case_email.js │ ├── case_log_a_call.js │ ├── case_milestone.js │ ├── case_transcript.js │ ├── case_wrap_up.js │ ├── catalog.js │ ├── category.js │ ├── change_request.js │ ├── channel_program_history.js │ ├── channel_program_levels.js │ ├── channel_program_members.js │ ├── channel_programs.js │ ├── chart.js │ ├── checkout.js │ ├── choice.js │ ├── client.js │ ├── cms.js │ ├── coaching.js │ ├── code_playground.js │ ├── code_set.js │ ├── code_set_bundle.js │ ├── collection.js │ ├── collection_variable.js │ ├── connected_apps.js │ ├── constant.js │ ├── contact.js │ ├── contact_list.js │ ├── contact_request.js │ ├── contract.js │ ├── contract_line_item.js │ ├── contract_payment.js │ ├── coupon_codes.js │ ├── currency.js │ ├── currency_input.js │ ├── custom.js │ ├── custom_component_task.js │ ├── custom_notification.js │ ├── customer_360.js │ ├── customer_lifecycle_analytics.js │ ├── customer_portal_users.js │ ├── customers.js │ ├── dashboard.js │ ├── dashboard_ea.js │ ├── data_integration_hub.js │ ├── data_mapping.js │ ├── data_model.js │ ├── data_streams.js │ ├── datadotcom.js │ ├── dataset.js │ ├── date_input.js │ ├── date_time.js │ ├── decision.js │ ├── default.js │ ├── delegated_account.js │ ├── device.js │ ├── discounts.js │ ├── display_rich_text.js │ ├── display_text.js │ ├── document.js │ ├── document_reference.js │ ├── drafts.js │ ├── duration_downscale.js │ ├── dynamic_record_choice.js │ ├── education.js │ ├── einstein_replies.js │ ├── email.js │ ├── email_chatter.js │ ├── employee.js │ ├── employee_asset.js │ ├── employee_contact.js │ ├── employee_job.js │ ├── employee_job_position.js │ ├── employee_organization.js │ ├── empty.js │ ├── endorsement.js │ ├── entitlement.js │ ├── entitlement_policy.js │ ├── entitlement_process.js │ ├── entitlement_template.js │ ├── entity.js │ ├── entity_milestone.js │ ├── environment_hub.js │ ├── event.js │ ├── events.js │ ├── expense.js │ ├── expense_report.js │ ├── expense_report_entry.js │ ├── feed.js │ ├── feedback.js │ ├── field_sales.js │ ├── file.js │ ├── filiter_criteria_rule.js │ ├── filter.js │ ├── filter_criteria.js │ ├── filter_criteria_rule.js │ ├── first_non_empty.js │ ├── flow.js │ ├── folder.js │ ├── forecasts.js │ ├── form.js │ ├── formula.js │ ├── fulfillment_order.js │ ├── generic_loading.js │ ├── global_constant.js │ ├── goals.js │ ├── group_loading.js │ ├── groups.js │ ├── guidance_center.js │ ├── hierarchy.js │ ├── high_velocity_sales.js │ ├── historical_adherence.js │ ├── holiday_operating_hours.js │ ├── home.js │ ├── household.js │ ├── identifier.js │ ├── immunization.js │ ├── incident.js │ ├── index.js │ ├── individual.js │ ├── insights.js │ ├── instore_locations.js │ ├── investment_account.js │ ├── invocable_action.js │ ├── iot_context.js │ ├── iot_orchestrations.js │ ├── javascript_button.js │ ├── job_family.js │ ├── job_position.js │ ├── job_profile.js │ ├── kanban.js │ ├── key_dates.js │ ├── knowledge.js │ ├── lead.js │ ├── lead_insights.js │ ├── lead_list.js │ ├── letterhead.js │ ├── lightning_component.js │ ├── lightning_usage.js │ ├── link.js │ ├── list_email.js │ ├── live_chat.js │ ├── live_chat_visitor.js │ ├── location.js │ ├── location_permit.js │ ├── log_a_call.js │ ├── logging.js │ ├── loop.js │ ├── macros.js │ ├── maintenance_asset.js │ ├── maintenance_plan.js │ ├── maintenance_work_rule.js │ ├── marketing_actions.js │ ├── med_rec_recommendation.js │ ├── med_rec_statement_recommendation.js │ ├── medication.js │ ├── medication_dispense.js │ ├── medication_ingredient.js │ ├── medication_reconciliation.js │ ├── medication_statement.js │ ├── merge.js │ ├── messaging_conversation.js │ ├── messaging_session.js │ ├── messaging_user.js │ ├── metrics.js │ ├── multi_picklist.js │ ├── multi_select_checkbox.js │ ├── network_contract.js │ ├── news.js │ ├── note.js │ ├── number_input.js │ ├── observation_component.js │ ├── omni_supervisor.js │ ├── operating_hours.js │ ├── opportunity.js │ ├── opportunity_contact_role.js │ ├── opportunity_splits.js │ ├── orchestrator.js │ ├── order_item.js │ ├── orders.js │ ├── outcome.js │ ├── output.js │ ├── partner_fund_allocation.js │ ├── partner_fund_claim.js │ ├── partner_fund_request.js │ ├── partner_marketing_budget.js │ ├── partners.js │ ├── password.js │ ├── past_chat.js │ ├── patient_medication_dosage.js │ ├── payment_gateway.js │ ├── people.js │ ├── performance.js │ ├── person_account.js │ ├── person_language.js │ ├── person_name.js │ ├── photo.js │ ├── picklist_choice.js │ ├── picklist_type.js │ ├── planogram.js │ ├── poll.js │ ├── portal.js │ ├── portal_roles.js │ ├── portal_roles_and_subordinates.js │ ├── post.js │ ├── practitioner_role.js │ ├── price_book_entries.js │ ├── price_books.js │ ├── pricebook.js │ ├── pricing_workspace.js │ ├── problem.js │ ├── procedure.js │ ├── procedure_detail.js │ ├── process.js │ ├── process_exception.js │ ├── product.js │ ├── product_consumed.js │ ├── product_consumed_state.js │ ├── product_item.js │ ├── product_item_transaction.js │ ├── product_quantity_rules.js │ ├── product_request.js │ ├── product_request_line_item.js │ ├── product_required.js │ ├── product_return.js │ ├── product_return_line_item.js │ ├── product_service_campaign.js │ ├── product_service_campaign_item.js │ ├── product_transfer.js │ ├── product_transfer_state.js │ ├── product_warranty_term.js │ ├── product_workspace.js │ ├── products.js │ ├── promotion_segments.js │ ├── promotions.js │ ├── promotions_workspace.js │ ├── propagation_policy.js │ ├── proposition.js │ ├── qualifications.js │ ├── question_best.js │ ├── question_feed.js │ ├── queue.js │ ├── quick_text.js │ ├── quip.js │ ├── quip_sheet.js │ ├── quotes.js │ ├── radio_button.js │ ├── read_receipts.js │ ├── recent.js │ ├── recipe.js │ ├── record.js │ ├── record_create.js │ ├── record_delete.js │ ├── record_lookup.js │ ├── record_signature_task.js │ ├── record_update.js │ ├── recycle_bin.js │ ├── related_list.js │ ├── relationship.js │ ├── reply_text.js │ ├── report.js │ ├── report_type.js │ ├── resource_absence.js │ ├── resource_capacity.js │ ├── resource_preference.js │ ├── resource_skill.js │ ├── restriction_policy.js │ ├── return_order.js │ ├── return_order_line_item.js │ ├── reward.js │ ├── rtc_presence.js │ ├── sales_cadence.js │ ├── sales_cadence_target.js │ ├── sales_channel.js │ ├── sales_path.js │ ├── sales_value.js │ ├── salesforce_cms.js │ ├── scan_card.js │ ├── schedule_objective.js │ ├── scheduling_constraint.js │ ├── scheduling_policy.js │ ├── screen.js │ ├── search.js │ ├── section.js │ ├── segments.js │ ├── selling_model.js │ ├── serialized_product.js │ ├── serialized_product_transaction.js │ ├── service_appointment.js │ ├── service_appointment_capacity_usage.js │ ├── service_contract.js │ ├── service_crew.js │ ├── service_crew_member.js │ ├── service_report.js │ ├── service_request.js │ ├── service_request_detail.js │ ├── service_resource.js │ ├── service_territory.js │ ├── service_territory_location.js │ ├── service_territory_member.js │ ├── service_territory_policy.js │ ├── settings.js │ ├── shift.js │ ├── shift_pattern.js │ ├── shift_pattern_entry.js │ ├── shift_preference.js │ ├── shift_scheduling_operation.js │ ├── shift_template.js │ ├── shift_type.js │ ├── shipment.js │ ├── skill.js │ ├── skill_entity.js │ ├── skill_requirement.js │ ├── slider.js │ ├── sms.js │ ├── snippet.js │ ├── snippets.js │ ├── sobject.js │ ├── sobject_collection.js │ ├── social.js │ ├── solution.js │ ├── sort.js │ ├── sort_policy.js │ ├── sossession.js │ ├── stage.js │ ├── stage_collection.js │ ├── steps.js │ ├── store.js │ ├── store_group.js │ ├── story.js │ ├── strategy.js │ ├── survey.js │ ├── swarm_request.js │ ├── swarm_session.js │ ├── system_and_global_variable.js │ ├── task.js │ ├── task2.js │ ├── team_member.js │ ├── template.js │ ├── text.js │ ├── text_template.js │ ├── textarea.js │ ├── textbox.js │ ├── thanks.js │ ├── thanks_loading.js │ ├── timesheet.js │ ├── timesheet_entry.js │ ├── timeslot.js │ ├── today.js │ ├── toggle.js │ ├── topic.js │ ├── topic2.js │ ├── tour.js │ ├── tour_check.js │ ├── trailhead.js │ ├── trailhead_alt.js │ ├── travel_mode.js │ ├── unified_health_score.js │ ├── unmatched.js │ ├── user.js │ ├── user_role.js │ ├── variable.js │ ├── variation_attribute_setup.js │ ├── variation_products.js │ ├── video.js │ ├── visit_templates.js │ ├── visits.js │ ├── visualforce_page.js │ ├── voice_call.js │ ├── waits.js │ ├── warranty_term.js │ ├── webcart.js │ ├── work_capacity_limit.js │ ├── work_capacity_usage.js │ ├── work_contract.js │ ├── work_forecast.js │ ├── work_order.js │ ├── work_order_item.js │ ├── work_plan.js │ ├── work_plan_rule.js │ ├── work_plan_template.js │ ├── work_plan_template_entry.js │ ├── work_queue.js │ ├── work_step.js │ ├── work_step_template.js │ ├── work_type.js │ ├── work_type_group.js │ └── workforce_engagement.js └── utility │ ├── activity.js │ ├── ad_set.js │ ├── add.js │ ├── adduser.js │ ├── adjust_value.js │ ├── advanced_function.js │ ├── advertising.js │ ├── agent_home.js │ ├── agent_session.js │ ├── aggregation_policy.js │ ├── alert.js │ ├── all.js │ ├── anchor.js │ ├── animal_and_nature.js │ ├── announcement.js │ ├── answer.js │ ├── answered_twice.js │ ├── anywhere_alert.js │ ├── anywhere_chat.js │ ├── apex.js │ ├── apex_plugin.js │ ├── approval.js │ ├── apps.js │ ├── archive.js │ ├── arrow_bottom.js │ ├── arrow_left.js │ ├── arrow_right.js │ ├── arrow_top.js │ ├── arrowdown.js │ ├── arrowup.js │ ├── asset_audit.js │ ├── asset_warranty.js │ ├── assignment.js │ ├── attach.js │ ├── automate.js │ ├── away.js │ ├── back.js │ ├── ban.js │ ├── block_visitor.js │ ├── bold.js │ ├── bookmark.js │ ├── bookmark_alt.js │ ├── bottom_align.js │ ├── breadcrumbs.js │ ├── broadcast.js │ ├── brush.js │ ├── bucket.js │ ├── bug.js │ ├── builder.js │ ├── bundle_config.js │ ├── bundle_policy.js │ ├── button_choice.js │ ├── calculated_insights.js │ ├── call.js │ ├── campaign.js │ ├── cancel_file_request.js │ ├── cancel_transfer.js │ ├── capacity_plan.js │ ├── capslock.js │ ├── cart.js │ ├── case.js │ ├── cases.js │ ├── center_align.js │ ├── center_align_text.js │ ├── change_owner.js │ ├── change_record_type.js │ ├── change_request.js │ ├── chart.js │ ├── chat.js │ ├── check.js │ ├── checkin.js │ ├── checkout.js │ ├── chevrondown.js │ ├── chevronleft.js │ ├── chevronright.js │ ├── chevronup.js │ ├── choice.js │ ├── classic_interface.js │ ├── clear.js │ ├── clock.js │ ├── close.js │ ├── collapse_all.js │ ├── collection.js │ ├── collection_alt.js │ ├── collection_variable.js │ ├── color_swatch.js │ ├── comments.js │ ├── company.js │ ├── component_customization.js │ ├── connected_apps.js │ ├── constant.js │ ├── contact_request.js │ ├── contract.js │ ├── contract_alt.js │ ├── contract_doc.js │ ├── contract_payment.js │ ├── copy.js │ ├── copy_object.js │ ├── copy_to_clipboard.js │ ├── coupon_codes.js │ ├── crossfilter.js │ ├── currency.js │ ├── currency_input.js │ ├── custom_apps.js │ ├── cut.js │ ├── dash.js │ ├── data_mapping.js │ ├── database.js │ ├── datadotcom.js │ ├── date_input.js │ ├── date_time.js │ ├── dayview.js │ ├── delete.js │ ├── deprecate.js │ ├── description.js │ ├── desktop.js │ ├── desktop_and_phone.js │ ├── desktop_console.js │ ├── dialing.js │ ├── diamond.js │ ├── discounts.js │ ├── dislike.js │ ├── display_rich_text.js │ ├── display_text.js │ ├── dock_panel.js │ ├── down.js │ ├── download.js │ ├── drag.js │ ├── drag_and_drop.js │ ├── duration_downscale.js │ ├── dynamic_record_choice.js │ ├── edit.js │ ├── edit_form.js │ ├── education.js │ ├── einstein.js │ ├── email.js │ ├── email_open.js │ ├── emoji.js │ ├── end_call.js │ ├── end_chat.js │ ├── end_messaging_session.js │ ├── engage.js │ ├── enter.js │ ├── entitlement.js │ ├── erect_window.js │ ├── error.js │ ├── event.js │ ├── event_ext.js │ ├── events.js │ ├── expand.js │ ├── expand_all.js │ ├── expand_alt.js │ ├── fallback.js │ ├── favorite.js │ ├── feed.js │ ├── field_sales.js │ ├── file.js │ ├── filter.js │ ├── filter_criteria.js │ ├── filter_criteria_rule.js │ ├── filterlist.js │ ├── flow.js │ ├── flow_alt.js │ ├── food_and_drink.js │ ├── form.js │ ├── form_factor_support.js │ ├── formula.js │ ├── forward.js │ ├── forward_up.js │ ├── freeze_column.js │ ├── frozen.js │ ├── fulfillment_order.js │ ├── full_width_view.js │ ├── global_constant.js │ ├── graph.js │ ├── groups.js │ ├── help.js │ ├── help_center.js │ ├── help_doc_ext.js │ ├── hide.js │ ├── hide_mobile.js │ ├── hierarchy.js │ ├── high_velocity_sales.js │ ├── holiday_operating_hours.js │ ├── home.js │ ├── identity.js │ ├── image.js │ ├── in_app_assistant.js │ ├── inbox.js │ ├── incident.js │ ├── incoming_call.js │ ├── index.js │ ├── info.js │ ├── info_alt.js │ ├── insert_tag_field.js │ ├── insert_template.js │ ├── inspector_panel.js │ ├── internal_share.js │ ├── italic.js │ ├── jump_to_bottom.js │ ├── jump_to_left.js │ ├── jump_to_right.js │ ├── jump_to_top.js │ ├── justify_text.js │ ├── kanban.js │ ├── key.js │ ├── key_dates.js │ ├── keyboard_dismiss.js │ ├── keypad.js │ ├── knowledge_base.js │ ├── layers.js │ ├── layout.js │ ├── layout_banner.js │ ├── layout_card.js │ ├── layout_overlap.js │ ├── layout_tile.js │ ├── leave_conference.js │ ├── left.js │ ├── left_align.js │ ├── left_align_text.js │ ├── level_down.js │ ├── level_up.js │ ├── light_bulb.js │ ├── lightning_extension.js │ ├── lightning_inspector.js │ ├── like.js │ ├── link.js │ ├── linked.js │ ├── list.js │ ├── listen.js │ ├── live_message.js │ ├── location.js │ ├── location_permit.js │ ├── lock.js │ ├── locker_service_api_viewer.js │ ├── locker_service_console.js │ ├── log_a_call.js │ ├── logout.js │ ├── loop.js │ ├── lower_flag.js │ ├── macros.js │ ├── magicwand.js │ ├── mark_all_as_read.js │ ├── matrix.js │ ├── meet_content_source.js │ ├── meet_focus_content.js │ ├── meet_focus_equal.js │ ├── meet_focus_presenter.js │ ├── meet_present_panel.js │ ├── merge.js │ ├── merge_field.js │ ├── metrics.js │ ├── middle_align.js │ ├── minimize_window.js │ ├── missed_call.js │ ├── money.js │ ├── moneybag.js │ ├── monthlyview.js │ ├── move.js │ ├── multi_picklist.js │ ├── multi_select_checkbox.js │ ├── muted.js │ ├── new.js │ ├── new_direct_message.js │ ├── new_window.js │ ├── news.js │ ├── note.js │ ├── notebook.js │ ├── notification.js │ ├── number_input.js │ ├── office365.js │ ├── offline.js │ ├── offline_briefcase.js │ ├── offline_cached.js │ ├── omni_channel.js │ ├── open.js │ ├── open_folder.js │ ├── opened_folder.js │ ├── orchestrator.js │ ├── org_chart.js │ ├── outbound_call.js │ ├── outcome.js │ ├── overflow.js │ ├── package.js │ ├── package_org.js │ ├── package_org_beta.js │ ├── page.js │ ├── palette.js │ ├── password.js │ ├── paste.js │ ├── pause.js │ ├── pause_alt.js │ ├── payment_gateway.js │ ├── pdf_ext.js │ ├── people.js │ ├── percent.js │ ├── phone_landscape.js │ ├── phone_portrait.js │ ├── photo.js │ ├── picklist.js │ ├── picklist_choice.js │ ├── picklist_type.js │ ├── pin.js │ ├── pinned.js │ ├── planning_poker.js │ ├── play.js │ ├── podcast_webinar.js │ ├── pop_in.js │ ├── power.js │ ├── preview.js │ ├── price_book_entries.js │ ├── price_books.js │ ├── pricing_workspace.js │ ├── print.js │ ├── priority.js │ ├── privately_shared.js │ ├── problem.js │ ├── process.js │ ├── product_consumed_state.js │ ├── product_quantity_rules.js │ ├── product_service_campaign.js │ ├── product_service_campaign_item.js │ ├── product_transfer.js │ ├── product_transfer_state.js │ ├── product_warranty_term.js │ ├── product_workspace.js │ ├── products.js │ ├── profile.js │ ├── promotion_segments.js │ ├── promotions.js │ ├── promotions_workspace.js │ ├── prompt.js │ ├── prompt_edit.js │ ├── propagation_policy.js │ ├── push.js │ ├── puzzle.js │ ├── qualifications.js │ ├── question.js │ ├── question_mark.js │ ├── questions_and_answers.js │ ├── quick_text.js │ ├── quip.js │ ├── quotation_marks.js │ ├── quote.js │ ├── radio_button.js │ ├── rating.js │ ├── reassign.js │ ├── recipe.js │ ├── record.js │ ├── record_create.js │ ├── record_delete.js │ ├── record_lookup.js │ ├── record_update.js │ ├── recurring_exception.js │ ├── recycle_bin_empty.js │ ├── recycle_bin_full.js │ ├── redo.js │ ├── refresh.js │ ├── relate.js │ ├── reminder.js │ ├── remove_formatting.js │ ├── remove_link.js │ ├── replace.js │ ├── reply.js │ ├── reply_all.js │ ├── report_issue.js │ ├── reset_password.js │ ├── resource_absence.js │ ├── resource_capacity.js │ ├── resource_territory.js │ ├── restriction_policy.js │ ├── retail_execution.js │ ├── retweet.js │ ├── ribbon.js │ ├── richtextbulletedlist.js │ ├── richtextindent.js │ ├── richtextnumberedlist.js │ ├── richtextoutdent.js │ ├── right.js │ ├── right_align.js │ ├── right_align_text.js │ ├── rotate.js │ ├── routing_offline.js │ ├── rows.js │ ├── rules.js │ ├── salesforce1.js │ ├── salesforce_page.js │ ├── save.js │ ├── scan.js │ ├── screen.js │ ├── search.js │ ├── section.js │ ├── send.js │ ├── sentiment_negative.js │ ├── sentiment_neutral.js │ ├── serialized_product.js │ ├── serialized_product_transaction.js │ ├── service_territory_policy.js │ ├── settings.js │ ├── setup.js │ ├── setup_assistant_guide.js │ ├── setup_modal.js │ ├── share.js │ ├── share_file.js │ ├── share_mobile.js │ ├── share_post.js │ ├── shield.js │ ├── shift_pattern.js │ ├── shift_pattern_entry.js │ ├── shift_scheduling_operation.js │ ├── shift_ui.js │ ├── shopping_bag.js │ ├── shortcuts.js │ ├── side_list.js │ ├── signature.js │ ├── signpost.js │ ├── skip.js │ ├── skip_back.js │ ├── skip_forward.js │ ├── slider.js │ ├── smiley_and_people.js │ ├── sms.js │ ├── snippet.js │ ├── sobject.js │ ├── sobject_collection.js │ ├── socialshare.js │ ├── sort.js │ ├── sort_policy.js │ ├── spacer.js │ ├── spinner.js │ ├── stage.js │ ├── stage_collection.js │ ├── standard_objects.js │ ├── steps.js │ ├── stop.js │ ├── store.js │ ├── strategy.js │ ├── strikethrough.js │ ├── success.js │ ├── summary.js │ ├── summarydetail.js │ ├── survey.js │ ├── swarm_request.js │ ├── swarm_session.js │ ├── switch.js │ ├── symbols.js │ ├── sync.js │ ├── system_and_global_variable.js │ ├── table.js │ ├── table_settings.js │ ├── tablet_landscape.js │ ├── tablet_portrait.js │ ├── tabset.js │ ├── talent_development.js │ ├── target.js │ ├── target_mode.js │ ├── task.js │ ├── text.js │ ├── text_background_color.js │ ├── text_color.js │ ├── text_template.js │ ├── textarea.js │ ├── textbox.js │ ├── threedots.js │ ├── threedots_vertical.js │ ├── thunder.js │ ├── tile_card_list.js │ ├── toggle.js │ ├── toggle_panel_bottom.js │ ├── toggle_panel_left.js │ ├── toggle_panel_right.js │ ├── toggle_panel_top.js │ ├── top_align.js │ ├── topic.js │ ├── topic2.js │ ├── touch_action.js │ ├── tour.js │ ├── tour_check.js │ ├── tracker.js │ ├── trail.js │ ├── trailblazer_ext.js │ ├── trailhead.js │ ├── trailhead_alt.js │ ├── trailhead_ext.js │ ├── transparent.js │ ├── travel_and_places.js │ ├── trending.js │ ├── truck.js │ ├── turn_off_notifications.js │ ├── type.js │ ├── type_tool.js │ ├── undelete.js │ ├── undeprecate.js │ ├── underline.js │ ├── undo.js │ ├── unlinked.js │ ├── unlock.js │ ├── unmuted.js │ ├── up.js │ ├── upload.js │ ├── user.js │ ├── user_role.js │ ├── variable.js │ ├── variation_attribute_setup.js │ ├── variation_products.js │ ├── video.js │ ├── voicemail_drop.js │ ├── volume_high.js │ ├── volume_low.js │ ├── volume_off.js │ ├── waits.js │ ├── warning.js │ ├── warranty_term.js │ ├── watchlist.js │ ├── weeklyview.js │ ├── wellness.js │ ├── wifi.js │ ├── work_forecast.js │ ├── work_order_type.js │ ├── workforce_engagement.js │ ├── world.js │ ├── yubi_key.js │ ├── zoomin.js │ └── zoomout.js ├── karma.conf.js ├── package-lock.json ├── package.json ├── patch.md ├── preset ├── README.md ├── index.js └── package.json.txt ├── scripts ├── .npmrc ├── build-docs.js ├── circle-ci.sh ├── code │ └── find-and-fix-missing-doc-stories.js ├── command-line-utilities.js ├── dist.js ├── dist.sh ├── heroku-postbuild.sh ├── heroku-prebuild.sh ├── inline-icons.js ├── npm-link.sh ├── npm-transform.js ├── prepare-components.js ├── print-tests-top-banner.js ├── publish-to-git.js ├── release.js └── upload-diffs.sh ├── styles ├── README.md └── tabs │ └── tab.css ├── tests ├── README.md ├── __image_snapshots__ │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-inital-blank-story-placeholder-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-close-alert-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-class-names-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-styles-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-dismissable-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-info-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-offline-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-warning-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-2-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-initials-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-inverse-user-initials-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-initials-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-default-medium-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-image-with-background-size-cover-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-lightning-blue-theme-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-no-image-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-1-item-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-2-items-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-base-with-overflow-menu-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-after-successful-save-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-with-toolbar-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-failed-save-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-successful-save-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-base-neutral-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-brand-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-button-icons-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-dropdown-icon-inverse-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-icon-group-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-list-variant-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-more-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-container-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-with-external-path-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-with-id-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-outline-brand-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-small-icon-hint-inverse-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-text-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-heading-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-doc-site-related-list-with-table-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-empty-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-set-height-card-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-items-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-o-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-assistive-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-checked-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-default-indeterminate-required-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-indeterminate-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-assistive-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-checked-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-required-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-with-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-toggle-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-toggle-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-menu-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-tab-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-validator-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-right-to-left-rtl-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-doc-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-hidden-input-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-no-label-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-outer-input-in-error-state-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-swatch-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-working-color-input-in-error-state-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inherit-menu-width-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inherit-menu-width-right-to-left-rtl-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inline-help-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-with-tooltip-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-with-tooltip-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-separator-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-sub-headers-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-pre-defined-options-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-dialog-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-loading-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-entity-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-search-add-entities-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-input-component-as-a-prop-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-multiple-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-menu-item-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-custom-menu-item-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-right-to-left-rtl-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-required-input-in-error-state-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-custom-menu-item-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-label-required-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-open-menu-inherit-width-of-prop-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-open-menu-sub-header-separator-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-dialog-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-multiple-open-loading-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-multiple-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-multiple-selection-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-entity-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-search-add-entities-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-selection-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-multiple-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-multiple-selection-multiple-items-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-multiple-selection-single-item-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-custom-menu-item-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-selected-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-advanced-fixed-layout-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-advanced-single-select-fixed-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-advanced-single-select-fixed-layout-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fixed-layout-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-column-bordered-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-no-row-hover-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-striped-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-horizontal-scrolling-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-joined-with-page-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-ellie-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-eq-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-score-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-strength-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-trend-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-typing-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-waffle-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-ellie-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-eq-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-score-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-strength-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-trend-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-typing-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-waffle-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-controlled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-non-collapsible-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-cropped-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-loading-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-actions-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-external-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-image-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-title-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-assistive-text-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-error-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-align-right-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-locked-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-new-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-permanant-filter-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-doc-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-fewer-elements-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-open-on-hybrid-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-search-navigation-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-with-custom-avatar-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-imported-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-standard-custom-styles-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-action-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-custom-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-doctype-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-external-path-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-right-to-left-rtl-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-utility-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-light-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-warning-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-categories-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-colors-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-sizes-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-product-themes-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-medium-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-x-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-and-message-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-image-and-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-large-image-and-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-message-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-small-image-and-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-with-icons-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-input-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-static-input-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-and-autocomplete-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-disabled-input-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-icons-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-inactive-inputs-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-tooltip-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-fixed-text-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-edit-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-help-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-read-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-required-input-in-error-state-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-static-input-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-vertically-centered-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-figure-vertical-center-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-dropdown-left-aligned-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-dropdown-left-aligned-right-to-left-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-dropdown-right-aligned-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-dropdown-right-aligned-right-to-left-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-right-to-left-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controled-w-is-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controlled-w-is-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-content-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-trigger-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-with-checkmark-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-w-nubbins-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-w-nubbins-right-to-left-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-two-hovers-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-content-right-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-controls-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-record-home-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-related-list-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-object-home-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-field-updates-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-truncates-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-related-list-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-setup-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-bare-pill-container-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-base-pill-container-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-avatars-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-icons-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-docs-site-snapshot-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-icon-avatar-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-linked-unlinked-truncated-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alternative-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-controlled-w-footer-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-header-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-styling-dev-only-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-span-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-group-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-learn-more-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-color-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-descriptive-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-radius-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-thickness-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-vertical-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-2-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-3-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-4-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-disabled-steps-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-many-steps-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-completed-progress-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-in-a-modal-with-step-error-needs-dom-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-setup-assistant-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-step-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-step-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-custom-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-docs-site-examples-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-snapshot-test-examples-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-active-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-complete-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-expired-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-warning-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-docs-site-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-required-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-docs-site-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-docs-site-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-required-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-custom-icon-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-dark-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-light-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-search-standard-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-base-variant-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-hub-with-expandable-steps-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-in-a-card-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-with-step-progress-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-docs-site-sizes-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-medium-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-x-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-slider-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-vertical-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-medium-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-docs-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-medium-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-with-300-ms-delay-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-medium-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-small-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-closed-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-multiple-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-open-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-custom-list-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-external-state-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-conditional-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-custom-tab-contents-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-nested-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-outside-control-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-scoped-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-tab-intercept-panel-select-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-unique-generated-i-ds-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-with-disabled-tab-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-disabled-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-required-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-standard-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-close-toast-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-class-names-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-style-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-duration-toast-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-with-details-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-info-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-success-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-warning-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-assistive-heading-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-with-stencil-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-highlighted-search-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-initial-expanded-selected-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-large-dataset-300-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-multiple-selection-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-no-branch-select-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-overflow-hidden-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-trial-bar-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-default-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-dom-snapshot-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-coverable-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-links-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-non-coverable-1-snap.png │ ├── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-1-snap.png │ └── story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-coverable-1-snap.png ├── __mocks__ │ ├── file-mock.js │ └── nanoid-mock.js ├── __snapshots__ │ └── initial-blank-stories.storyshot ├── axe-config.js ├── axe-puppeteer-matcher.js ├── axe-storyshots.js ├── browser-tests-app.js ├── browser-tests.js ├── component-docs-test.js ├── console-message-overrides.js ├── enzyme-helpers.js ├── eslint-config-test.js ├── exclude-story-config.js ├── index.html ├── initial-blank-stories.jsx ├── settings.js ├── snapshot-helpers.jsx ├── story-based-tests.accessibility-test.config.json ├── story-based-tests.accessibility-test.js ├── story-based-tests.dom-snapshot-test.config.json ├── story-based-tests.dom-snapshot-test.js ├── story-based-tests.snapshot-test.config.json ├── story-based-tests.snapshot-test.js ├── storyshots-helpers.js └── url.js ├── utilities ├── __tests__ │ ├── execution-environment.browser-test.jsx │ └── warnings.browser-test.jsx ├── class-names.js ├── color.js ├── constants.js ├── date.js ├── design-tokens │ ├── README.md │ └── dist │ │ ├── analytics-cloud.common.js │ │ ├── bg-actions.common.js │ │ ├── bg-custom.common.js │ │ ├── bg-icons.common.js │ │ ├── bg-standard.common.js │ │ ├── color-palettes.common.js │ │ ├── components.common.js │ │ ├── console-base.common.js │ │ ├── force-base.common.js │ │ ├── force-font-commons.common.js │ │ ├── force-mq-commons.common.js │ │ ├── icon-paths.common.js │ │ ├── illustrations.common.js │ │ ├── image-paths.common.js │ │ ├── marketing-cloud.common.js │ │ ├── palette-colors.common.js │ │ ├── s1-base-large.common.js │ │ ├── s1-base-medium.common.js │ │ ├── s1-base-small.common.js │ │ ├── s1-base.common.js │ │ └── salesforce-skin.common.js ├── dialog-helpers.js ├── dom-element-focus.js ├── dom.js ├── event.js ├── execution-environment.js ├── generate-id.js ├── get-aria-props.js ├── get-component-doc.js ├── get-data-props.js ├── get-form-props.js ├── index.js ├── is-react-component.js ├── key-buffer.js ├── key-callbacks.js ├── key-code.js ├── key-letter-menu-item-select.js ├── keyboard-navigable-dialog.js ├── keyboard-navigate.js ├── letter-key-code.js ├── log.js ├── menu-item-select-scroll.js ├── object.js ├── product-tokens │ └── icon-backgrounds.js ├── sample-data │ ├── global-navigation-bar │ │ └── index.jsx │ ├── tree │ │ ├── index.jsx │ │ ├── nodes-base.jsx │ │ ├── nodes-with-initial-state.jsx │ │ └── nodes-with-large-dataset.js │ └── vertical-navigation │ │ └── index.jsx ├── tabbable.js └── warning │ ├── check-app-element-set.js │ ├── component-has-moved.js │ ├── component-is-deprecated.js │ ├── component-is-prototype.js │ ├── deprecated-event-parameter.js │ ├── deprecated-property-value.js │ ├── deprecated-property.js │ ├── future-property.js │ ├── has-children-without-display-name-of.js │ ├── if-one-then-both-required-property.js │ ├── incompatible-props.js │ ├── is-trigger-tabbable.js │ ├── low-priority-warning.js │ ├── one-of-component.js │ ├── one-of-required-property.js │ ├── only-one-of-properties.js │ ├── render-function-return-contents-lack-display-name.js │ ├── sunset-property.js │ └── url-exists.js ├── webpack.config.dist.js ├── webpack.config.js └── webpack.config.test.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | trim_trailing_whitespace = true 6 | max_line_length = 80 7 | end_of_line = lf 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.jest/register-context.js: -------------------------------------------------------------------------------- 1 | import registerRequireContextHook from 'babel-plugin-require-context-hook/register'; 2 | 3 | registerRequireContextHook(); 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # machine generated files 2 | package.json 3 | package-lock.json 4 | components/component-docs.json 5 | utilities/design-tokens/dist 6 | icons 7 | coverage 8 | storybook 9 | 10 | # Publishing and dist build 11 | storybook-based-tests 12 | .tmp* -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "bracketSpacing": true, 4 | "jsxBracketSameLine": false, 5 | "printWidth": 80, 6 | "semi": true, 7 | "singleQuote": true, 8 | "trailingComma": "es5", 9 | "useTabs": true 10 | } 11 | -------------------------------------------------------------------------------- /.storybook/babel.config.js: -------------------------------------------------------------------------------- 1 | const babelConfig = require('../babel.config.js'); 2 | 3 | module.exports = babelConfig; 4 | -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | stories: ['../components/**/storybook-stories.jsx'], 3 | addons: ['@storybook/addon-actions', '@storybook/addon-a11y'], 4 | }; 5 | -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 12 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Comment line immediately above ownership line is reserved for related gus information. Please be careful while editing. 2 | #ECCN:Open Source 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app 2 | -------------------------------------------------------------------------------- /assets/styles/override.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: transparent; 3 | } 4 | -------------------------------------------------------------------------------- /components/SLDSSettings.js: -------------------------------------------------------------------------------- 1 | // Alias 2 | import settings from './settings'; 3 | 4 | export default settings; 5 | -------------------------------------------------------------------------------- /components/avatar/__examples__/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/components/avatar/__examples__/avatar.jpg -------------------------------------------------------------------------------- /components/card/private/footer.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/card/private/footer' { 2 | import React from 'react'; 3 | type Props = { 4 | /** 5 | * Elements to place in the footer. 6 | */ 7 | children?: React.ReactNode; 8 | }; 9 | 10 | function Component(props: Props): JSX.Element; 11 | export default Component; 12 | } 13 | -------------------------------------------------------------------------------- /components/color-picker/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": "color-picker", 3 | "status": "prod", 4 | "display-name": "Color Pickers", 5 | "classKey": "ColorPicker", 6 | "SLDS-component-path": "/components/color-picker", 7 | "site-stories": [ 8 | { 9 | "heading": "Default", 10 | "path": "/__examples__/default.jsx" 11 | } 12 | ], 13 | "url-slug": "color-picker" 14 | } 15 | -------------------------------------------------------------------------------- /components/color-picker/private/swatch.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/color-picker/private/swatch' { 2 | import React from 'react'; 3 | type Props = { 4 | color: string /*.isRequired*/; 5 | }; 6 | 7 | function Component(props: Props): JSX.Element; 8 | export default Component; 9 | } 10 | -------------------------------------------------------------------------------- /components/data-table/column.resizer.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'column-resizer'; -------------------------------------------------------------------------------- /components/data-table/interactive-link.jsx: -------------------------------------------------------------------------------- 1 | import InteractiveElement from './interactive-element'; 2 | import Link from './private/link'; 3 | 4 | export default InteractiveElement(Link); 5 | -------------------------------------------------------------------------------- /components/data-table/private/cell-context.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default React.createContext({ 4 | rowIndex: null, 5 | columnIndex: null, 6 | }); 7 | -------------------------------------------------------------------------------- /components/data-table/private/mode.js: -------------------------------------------------------------------------------- 1 | const Mode = Object.freeze({ 2 | NAVIGATION: 'navigation', 3 | ACTIONABLE: 'actionable', 4 | }); 5 | 6 | export default Mode; 7 | -------------------------------------------------------------------------------- /components/forms/input/search.jsx: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | // Alias 5 | import Search from '../../input/search'; 6 | 7 | export default Search; 8 | -------------------------------------------------------------------------------- /components/icon-settings/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": "icon-settings", 3 | "status": "prod", 4 | "display-name": "Icon Settings", 5 | "classKey": "IconSettings", 6 | "url-slug": "icon-settings" 7 | } 8 | -------------------------------------------------------------------------------- /components/lookup/footer.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/lookup/footer' { 2 | import React from 'react'; 3 | type Props = {}; 4 | 5 | function Component(props: Props): JSX.Element; 6 | export default Component; 7 | } 8 | -------------------------------------------------------------------------------- /components/lookup/header.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/lookup/header' { 2 | import React from 'react'; 3 | type Props = {}; 4 | 5 | function Component(props: Props): JSX.Element; 6 | export default Component; 7 | } 8 | -------------------------------------------------------------------------------- /components/lookup/menu/default-footer/index.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import DefaultHeader from '../../header'; 3 | 4 | export default DefaultHeader; 5 | -------------------------------------------------------------------------------- /components/lookup/menu/default-header/index.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import DefaultFooter from '../../footer'; 3 | 4 | export default DefaultFooter; 5 | -------------------------------------------------------------------------------- /components/lookup/menu/default-section-divider/index.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import DefaultSectionDivider from '../../section-divider'; 3 | 4 | export default DefaultSectionDivider; 5 | -------------------------------------------------------------------------------- /components/lookup/menu/index.js: -------------------------------------------------------------------------------- 1 | // Alias 2 | import Menu from '../private/menu'; 3 | 4 | export default Menu; 5 | -------------------------------------------------------------------------------- /components/lookup/menu/item/index.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import Item from '../../private/item'; 3 | 4 | export default Item; 5 | -------------------------------------------------------------------------------- /components/lookup/section-divider.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/lookup/section-divider' { 2 | import React from 'react'; 3 | type Props = { 4 | data?: Record; 5 | }; 6 | 7 | function Component(props: Props): JSX.Element; 8 | export default Component; 9 | } 10 | -------------------------------------------------------------------------------- /components/menu-list/list-item-label.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import ItemLabel from '../utilities/menu-list/item-label'; 3 | 4 | export default ItemLabel; 5 | -------------------------------------------------------------------------------- /components/menu-list/list-item.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import Item from '../utilities/menu-list/item'; 3 | 4 | export default Item; 5 | -------------------------------------------------------------------------------- /components/menu-list/list.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import List from '../utilities/menu-list/index'; 3 | 4 | export default List; 5 | -------------------------------------------------------------------------------- /components/page-header/control.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/page-header/control' { 2 | import React from 'react'; 3 | type Props = { 4 | /** 5 | * Optional class name 6 | */ 7 | className?: any[] | Record | string; 8 | }; 9 | 10 | function Component(props: Props): JSX.Element; 11 | export default Component; 12 | } 13 | -------------------------------------------------------------------------------- /components/panel/__tests__/filtering.dom-snapshot-test.jsx: -------------------------------------------------------------------------------- 1 | /* eslint-env jest */ 2 | import PanelFiltering from '../__examples__/filtering'; 3 | import { testDOMandHTML } from '../../../tests/snapshot-helpers'; 4 | 5 | testDOMandHTML({ 6 | name: 'Panel Filtering Default Snapshot', 7 | test, 8 | Component: PanelFiltering, 9 | }); 10 | -------------------------------------------------------------------------------- /components/pill/__docs__/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "max-len": "off", 4 | "no-alert": "off", 5 | "no-console": "off", 6 | "no-unused-vars": "off" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /components/pill/__examples__/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "max-len": "off", 4 | "no-alert": "off", 5 | "no-console": "off", 6 | "no-unused-vars": "off", 7 | "prefer-template": "off" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /components/portal-settings/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": "portal-settings", 3 | "status": "prod", 4 | "display-name": "Portal Settings", 5 | "classKey": "PortalSettings", 6 | "url-slug": "portal-settings" 7 | } 8 | -------------------------------------------------------------------------------- /components/radio-button-group/radio.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import Radio from '../radio/index'; 3 | 4 | export default Radio; 5 | -------------------------------------------------------------------------------- /components/radio-group/radio.jsx: -------------------------------------------------------------------------------- 1 | // Alias 2 | import Radio from '../radio/index'; 3 | 4 | export default Radio; 5 | -------------------------------------------------------------------------------- /components/settings.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@salesforce/design-system-react/components/settings" { 2 | type Props = { 3 | setAssetsPath: (arg0: string) => void; 4 | getAssetsPath: () => string; 5 | setAppElement: (arg0: string) => void; 6 | getAppElement: () => string; 7 | }; 8 | const settings: Props; 9 | export default settings; 10 | } -------------------------------------------------------------------------------- /components/slider/__examples__/disabled.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/slider/__examples__/sizes-large.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/slider/__examples__/sizes-medium.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/slider/__examples__/sizes-small.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/slider/__examples__/sizes-x-small.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/slider/__examples__/vertical.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Slider from '~/components/slider'; 4 | 5 | class Example extends React.Component { 6 | static displayName = 'SliderExample'; 7 | 8 | render() { 9 | return ; 10 | } 11 | } 12 | 13 | export default Example; 14 | -------------------------------------------------------------------------------- /components/spinner/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": "spinner", 3 | "status": "prod", 4 | "display-name": "Spinners", 5 | "classKey": "Spinner", 6 | "SLDS-component-path": "/components/spinner", 7 | "site-stories": [ 8 | { 9 | "heading": "Default", 10 | "path": "/__examples__/default.jsx" 11 | } 12 | ], 13 | "url-slug": "spinners" 14 | } 15 | -------------------------------------------------------------------------------- /components/split-view/__docs__/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "max-len": "off", 4 | "no-alert": "off", 5 | "no-console": "off", 6 | "no-unused-vars": "off" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /components/split-view/header.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@salesforce/design-system-react/components/split-view/header' { 2 | import React from 'react'; 3 | type Props = {}; 4 | 5 | function Component(props: Props): JSX.Element; 6 | export default Component; 7 | } 8 | -------------------------------------------------------------------------------- /components/tabs/pane.jsx: -------------------------------------------------------------------------------- 1 | // This is just an alias, Sydney Bristow. Remove at next breaking release. 2 | import TabPanel from './panel'; 3 | 4 | export default TabPanel; 5 | -------------------------------------------------------------------------------- /components/time-picker/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": "time-picker", 3 | "status": "prod", 4 | "display-name": "Timepickers", 5 | "classKey": "TimePicker", 6 | "SLDS-component-path": "/components/timepicker", 7 | "site-stories": [ 8 | { 9 | "heading": "Default", 10 | "path": "/__examples__/default.jsx" 11 | } 12 | ], 13 | "url-slug": "timepickers" 14 | } 15 | -------------------------------------------------------------------------------- /components/utilities/README.md: -------------------------------------------------------------------------------- 1 | # Utility Components 2 | 3 | This folder contains shared child components used by official SLDS components. Components in this folder are not official SLDS components in their own right. 4 | -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- 1 | # Frequently Asked Questions 2 | * [Why do my icons not show up in IE11?](browser-compatibility.md#internet-explorer-11-support) 3 | * [Why aren't my ES6 imports ("unexpected token"), icons, styles, or fonts working in Create React App?](create-react-app.md) 4 | * [Where are icons on the Salesforce platform?](salesforce-platform.md) 5 | -------------------------------------------------------------------------------- /icons/action/new_custom12.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","circle":{"cx":"26","cy":"26","r":"24"}}; 6 | -------------------------------------------------------------------------------- /icons/action/new_custom6.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M26 47H5.2c-2.5 0-4-2.7-2.7-4.9L23.2 6.6c1.2-2.1 4.2-2.1 5.5 0l20.8 35.6c1.3 2.2-.3 4.9-2.7 4.9H26z"}}; 6 | -------------------------------------------------------------------------------- /icons/action/new_custom7.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M7.1 50C4.3 50 2 47.7 2 44.9V7.1C2 4.3 4.3 2 7.1 2h37.7C47.7 2 50 4.3 50 7.1v37.7c0 2.8-2.3 5.1-5.1 5.1H7.1z"}}; 6 | -------------------------------------------------------------------------------- /icons/custom/custom12.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 100 100","xmlns":"http://www.w3.org/2000/svg","circle":{"cx":"50","cy":"50","r":"30"}}; 6 | -------------------------------------------------------------------------------- /icons/custom/custom6.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 100 100","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M50 76H24c-3.1 0-5-3.4-3.4-6l26-44c1.5-2.6 5.3-2.6 6.9 0l26 44c1.6 2.7-.4 6-3.4 6H50z"}}; 6 | -------------------------------------------------------------------------------- /icons/custom/custom7.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 100 100","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M28 78c-3.3 0-6-2.7-6-6V28c0-3.3 2.7-6 6-6h44c3.3 0 6 2.7 6 6v44c0 3.3-2.7 6-6 6H28z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/dash.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M50 27.5c0 .8-.7 1.5-1.5 1.5h-45c-.8 0-1.5-.7-1.5-1.5v-3c0-.8.7-1.5 1.5-1.5h45c.8 0 1.5.7 1.5 1.5v3z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/down.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M8.3 14h35.4c1 0 1.7 1.3.9 2.2L27.3 37.4c-.6.8-1.9.8-2.5 0L7.3 16.2c-.7-.9-.1-2.2 1-2.2z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/erect_window.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M50 6.5c0 .8-.7 1.5-1.5 1.5h-45C2.7 8 2 7.3 2 6.5v-3C2 2.7 2.7 2 3.5 2h45c.8 0 1.5.7 1.5 1.5v3z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/left.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M38 8.3v35.4c0 1-1.3 1.7-2.2.9L14.6 27.3c-.8-.6-.8-1.9 0-2.5L35.8 7.3c.9-.7 2.2-.1 2.2 1z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/minimize_window.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M50 48.5c0 .8-.7 1.5-1.5 1.5h-45c-.8 0-1.5-.7-1.5-1.5v-3c0-.8.7-1.5 1.5-1.5h45c.8 0 1.5.7 1.5 1.5v3z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/play.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M8 43.7V8.3c0-1 1.3-1.7 2.2-.9l33.2 17.3c.8.6.8 1.9 0 2.5L10.2 44.7c-.9.7-2.2.1-2.2-1z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/record.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M26 8c9.9 0 18 8.1 18 18s-8.1 18-18 18S8 35.9 8 26 16.1 8 26 8z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/right.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M14 43.7V8.3c0-1 1.3-1.7 2.2-.9l21.2 17.3c.8.6.8 1.9 0 2.5L16.2 44.7c-.9.7-2.2.1-2.2-1z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/stop.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M8 8h36v36H8V8z"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/toggle_panel_right.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M4 8h44v36H4V8zm4 4v28h36V12H8zm22 2h12v24H30V14z","fill-rule":"evenodd"}}; 6 | -------------------------------------------------------------------------------- /icons/utility/up.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | 5 | export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":{"d":"M43.7 38H8.3c-1 0-1.7-1.3-.9-2.2l17.3-21.2c.6-.8 1.9-.8 2.5 0l17.5 21.2c.7.9.1 2.2-1 2.2z"}}; 6 | -------------------------------------------------------------------------------- /patch.md: -------------------------------------------------------------------------------- 1 | ## Release 0.10.49 2 | 3 | **Major Features** 4 | 5 | - `Badges`: Add component 6 | -------------------------------------------------------------------------------- /scripts/.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 2 | -------------------------------------------------------------------------------- /scripts/heroku-postbuild.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Copyright (c) 2015-present, salesforce.com, inc. All rights reserved 4 | # Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license 5 | 6 | echo "# Building for Heroku" 7 | 8 | npm run static:build 9 | -------------------------------------------------------------------------------- /styles/README.md: -------------------------------------------------------------------------------- 1 | # CSS folder 2 | 3 | This library should include only components which have approved patterns in SLDS. From time to time, a need arises to included CSS that is not yet in SLDS. This folder is for that purpose. _Please use sparingly_ and immediately create an issue to remove any files from this folder once they are included in SLDS. 4 | -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-inital-blank-story-placeholder-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-inital-blank-story-placeholder-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-accordion-base-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-close-alert-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-close-alert-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-class-names-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-class-names-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-styles-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-custom-styles-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-dismissable-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-dismissable-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-info-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-info-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-offline-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-offline-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-warning-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-alert-warning-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-icon-2-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-initials-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-entity-initials-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-inverse-user-initials-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-inverse-user-initials-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-initials-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-avatar-user-initials-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-default-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-default-medium-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-image-with-background-size-cover-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-image-with-background-size-cover-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-lightning-blue-theme-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-lightning-blue-theme-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-no-image-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-no-image-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-brand-band-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-1-item-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-1-item-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-2-items-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-2-items-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-base-with-overflow-menu-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-breadcrumb-base-with-overflow-menu-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-after-successful-save-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-after-successful-save-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-with-toolbar-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-base-with-toolbar-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-failed-save-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-failed-save-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-successful-save-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-builder-header-successful-save-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-base-neutral-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-base-neutral-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-brand-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-brand-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-button-icons-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-doc-site-button-icons-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-dropdown-icon-inverse-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-dropdown-icon-inverse-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-checkbox-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-icon-group-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-icon-group-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-list-variant-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-list-variant-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-more-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-group-more-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-container-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-container-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-with-external-path-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-icon-with-external-path-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-with-id-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-neutral-with-id-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-outline-brand-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-outline-brand-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-small-icon-hint-inverse-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-small-icon-hint-inverse-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-text-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-doc-site-icon-text-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-button-stateful-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-heading-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-custom-heading-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-doc-site-related-list-with-table-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-doc-site-related-list-with-table-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-empty-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-empty-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-set-height-card-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-set-height-card-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-items-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-items-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-o-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-card-w-o-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-assistive-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-assistive-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-checked-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-checked-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-indeterminate-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-indeterminate-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-assistive-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-assistive-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-checked-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-checked-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-required-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-required-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-with-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-checkbox-toggle-with-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-toggle-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-snapshot-toggle-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-toggle-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-checkbox-doc-site-toggle-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-menu-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-color-picker-menu-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-tab-selected-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-tab-selected-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-validator-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-custom-validator-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-right-to-left-rtl-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-default-right-to-left-rtl-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-doc-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-doc-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-hidden-input-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-hidden-input-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-no-label-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-no-label-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-outer-input-in-error-state-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-outer-input-in-error-state-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-predefined-colors-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-swatch-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-color-picker-swatch-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-custom-menu-item-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inherit-menu-width-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inherit-menu-width-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inline-help-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-inline-help-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-with-tooltip-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-item-disabled-with-tooltip-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-separator-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-separator-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-sub-headers-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-menu-sub-headers-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-pre-defined-options-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-base-pre-defined-options-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-dialog-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-dialog-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-loading-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-multiple-selection-loading-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-entity-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-entity-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-search-add-entities-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-search-add-entities-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-inline-single-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-input-component-as-a-prop-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-input-component-as-a-prop-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-multiple-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-multiple-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-menu-item-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-menu-item-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-readonly-single-selection-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-required-input-in-error-state-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-required-input-in-error-state-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-custom-menu-item-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-custom-menu-item-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-label-required-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-label-required-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-selected-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-base-selected-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-dialog-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-dialog-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-multiple-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-multiple-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-inline-single-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-multiple-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-multiple-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-combobox-snapshot-readonly-single-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-advanced-fixed-layout-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-advanced-fixed-layout-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fixed-layout-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fixed-layout-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-column-bordered-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-column-bordered-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-no-row-hover-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-no-row-hover-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-striped-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-basic-fluid-layout-striped-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-horizontal-scrolling-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-fixed-header-horizontal-scrolling-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-joined-with-page-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-data-table-joined-with-page-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-ellie-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-ellie-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-eq-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-eq-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-score-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-score-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-strength-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-strength-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-trend-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-trend-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-typing-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-typing-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-waffle-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icon-waffle-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-ellie-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-ellie-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-eq-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-eq-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-score-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-score-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-strength-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-strength-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-trend-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-trend-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-typing-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-typing-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-waffle-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-dynamic-icons-waffle-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-controlled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-controlled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-non-collapsible-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-expandable-section-non-collapsible-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-cropped-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-cropped-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-loading-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-loading-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-actions-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-actions-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-external-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-external-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-image-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-image-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-title-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-files-w-o-title-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-assistive-text-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-assistive-text-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-error-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-error-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-align-right-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-filter-align-right-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-locked-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-locked-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-new-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-new-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-permanant-filter-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-filter-permanant-filter-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-doc-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-doc-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-fewer-elements-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-fewer-elements-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-open-on-hybrid-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-open-on-hybrid-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-search-navigation-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-search-navigation-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-with-custom-avatar-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-global-header-with-custom-avatar-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-imported-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-imported-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-standard-custom-styles-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-base-standard-custom-styles-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-action-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-action-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-custom-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-custom-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-doctype-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-doctype-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-external-path-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-external-path-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-right-to-left-rtl-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-standard-right-to-left-rtl-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-utility-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-category-utility-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-light-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-light-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-warning-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-color-warning-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-categories-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-categories-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-colors-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-colors-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-sizes-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-docs-site-sizes-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-product-themes-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-product-themes-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-medium-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-medium-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-x-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-icon-size-x-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-and-message-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-and-message-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-heading-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-image-and-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-image-and-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-large-image-and-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-large-image-and-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-message-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-message-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-small-image-and-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-illustration-small-image-and-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-with-icons-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-base-with-icons-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-input-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-input-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-static-input-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-counter-static-input-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-and-autocomplete-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-custom-style-and-autocomplete-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-disabled-input-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-disabled-input-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-icons-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-icons-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-inactive-inputs-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-docs-site-inactive-inputs-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-tooltip-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-field-level-help-tooltip-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-fixed-text-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-fixed-text-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-edit-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-edit-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-help-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-inline-help-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-read-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-read-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-required-input-in-error-state-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-required-input-in-error-state-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-static-input-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-input-static-input-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-vertically-centered-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-docs-site-vertically-centered-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-figure-vertical-center-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-media-object-figure-vertical-center-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-base-with-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-right-to-left-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-checkmark-right-to-left-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controled-w-is-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controled-w-is-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controlled-w-is-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-controlled-w-is-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-content-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-content-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-trigger-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-custom-trigger-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-with-checkmark-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-hover-with-checkmark-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-w-nubbins-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-render-inline-w-nubbins-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-two-hovers-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-menu-dropdown-two-hovers-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-content-right-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-content-right-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-controls-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-base-with-controls-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-record-home-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-record-home-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-related-list-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-docs-site-related-list-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-object-home-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-object-home-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-field-updates-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-field-updates-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-truncates-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-record-home-truncates-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-related-list-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-related-list-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-setup-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-page-header-setup-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-bare-pill-container-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-bare-pill-container-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-base-pill-container-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-base-pill-container-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-avatars-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-avatars-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-icons-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-container-pill-container-with-icons-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-docs-site-snapshot-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-docs-site-snapshot-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-icon-avatar-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-icon-avatar-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-linked-unlinked-truncated-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-pill-linked-unlinked-truncated-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alignment-button-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alternative-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-alternative-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-controlled-w-footer-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-controlled-w-footer-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-custom-target-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-edit-dialog-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-error-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-header-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-header-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-styling-dev-only-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-styling-dev-only-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-span-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-alignment-span-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-group-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-button-group-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-learn-more-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-learn-more-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-tooltip-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-action-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-walkthrough-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-popover-warning-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-color-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-color-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-descriptive-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-descriptive-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-radius-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-radius-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-thickness-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-thickness-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-vertical-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-bar-vertical-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-2-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-3-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-3-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-4-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-4-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-disabled-steps-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-disabled-steps-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-many-steps-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-base-with-many-steps-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-completed-progress-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-completed-progress-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-setup-assistant-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-setup-assistant-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-step-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-step-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-step-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-indicator-vertical-step-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-custom-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-custom-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-docs-site-examples-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-docs-site-examples-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-snapshot-test-examples-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-snapshot-test-examples-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-active-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-active-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-complete-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-complete-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-expired-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-expired-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-warning-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-progress-ring-theme-warning-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-docs-site-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-docs-site-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-required-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-button-group-required-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-docs-site-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-docs-site-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-docs-site-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-docs-site-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-required-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-radio-group-required-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-custom-icon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-custom-icon-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-dark-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-dark-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-light-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-scoped-notification-light-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-search-standard-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-search-standard-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-base-variant-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-base-variant-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-hub-with-expandable-steps-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-hub-with-expandable-steps-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-in-a-card-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-in-a-card-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-with-step-progress-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-setup-assistant-with-step-progress-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-docs-site-sizes-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-docs-site-sizes-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-medium-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-x-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-size-x-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-slider-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-slider-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-vertical-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-slider-vertical-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-medium-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-brand-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-docs-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-docs-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-medium-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-inverse-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-with-300-ms-delay-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-large-with-300-ms-delay-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-medium-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-small-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-spinner-small-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-closed-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-closed-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-multiple-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-multiple-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-open-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-base-open-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-custom-list-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-custom-list-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-external-state-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-split-view-external-state-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-conditional-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-conditional-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-custom-tab-contents-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-custom-tab-contents-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-nested-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-nested-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-outside-control-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-outside-control-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-scoped-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-scoped-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-tab-intercept-panel-select-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-tab-intercept-panel-select-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-unique-generated-i-ds-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-unique-generated-i-ds-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-with-disabled-tab-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tabs-with-disabled-tab-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-disabled-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-disabled-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-docs-site-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-required-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-required-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-standard-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-textarea-standard-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-close-toast-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-close-toast-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-class-names-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-class-names-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-style-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-custom-style-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-duration-toast-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-duration-toast-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-with-details-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-error-with-details-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-info-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-info-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-success-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-success-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-warning-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-toast-warning-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-assistive-heading-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-assistive-heading-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-with-stencil-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-base-with-stencil-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-highlighted-search-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-highlighted-search-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-initial-expanded-selected-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-initial-expanded-selected-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-large-dataset-300-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-large-dataset-300-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-multiple-selection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-multiple-selection-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-no-branch-select-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-no-branch-select-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-overflow-hidden-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-tree-overflow-hidden-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-trial-bar-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-trial-bar-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-default-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-default-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-dom-snapshot-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-vertical-navigation-dom-snapshot-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-coverable-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-coverable-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-links-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-links-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-non-coverable-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-non-coverable-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-1-snap.png -------------------------------------------------------------------------------- /tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-coverable-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce/design-system-react/c75d7dfd8c28290404e6ead91a93f53f7918233a/tests/__image_snapshots__/story-based-tests-snapshot-test-js-image-snapshots-image-storyshots-slds-visual-picker-vertical-coverable-1-snap.png -------------------------------------------------------------------------------- /tests/__mocks__/file-mock.js: -------------------------------------------------------------------------------- 1 | // __mocks__/file-mock.js 2 | 3 | module.exports = 'TEST_FILE_STUB'; 4 | -------------------------------------------------------------------------------- /tests/__snapshots__/initial-blank-stories.storyshot: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`DOM snapshots Inital Blank Story Placeholder 1`] = ` 4 |
7 | `; 8 | -------------------------------------------------------------------------------- /tests/eslint-config-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This is an empty file to run eslint on in order 3 | * to validate the config, since prettier-eslint 4 | * will ignore invalid eslint configs and go ahead 5 | * with prettier settings by itself which will change 6 | * hundreds of files in the case of `npm run lint:fix`. 7 | * Yeah, not fun... 8 | */ 9 | -------------------------------------------------------------------------------- /tests/settings.js: -------------------------------------------------------------------------------- 1 | /* 2 | A place to store test settings 3 | */ 4 | 5 | const Settings = { 6 | jsBeautify: { 7 | indent_size: 2, 8 | }, 9 | }; 10 | 11 | export default Settings; 12 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/bg-icons.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | folder: 'rgb(99, 163, 238)', 3 | }; 4 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/color-palettes.common.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/console-base.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // Overrides bold in platform 3 | inputStaticFontWeight: '400', 4 | // 5 | cardSpacingMargin: '0.75rem', 6 | // 7 | cardHeaderPadding: '0.75rem 0.75rem 0', 8 | // 9 | cardBodyPadding: '0 0.75rem', 10 | // 11 | cardFooterPadding: '0.5rem 0.75rem', 12 | }; 13 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/illustrations.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | illustrationEmptyStateAssistant: 3 | '/assets/images/illustrations/empty-state-assistant.svg', 4 | illustrationEmptyStateEvents: 5 | '/assets/images/illustrations/empty-state-events.svg', 6 | illustrationEmptyStateTasks: 7 | '/assets/images/illustrations/empty-state-tasks.svg', 8 | }; 9 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/image-paths.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bannerUserDefaultImage: '', 3 | bannerGroupDefaultImage: '', 4 | userDefaultAvatar: '', 5 | userDefaultAvatarMedium: '', 6 | userDefaultAvatarSmall: '', 7 | groupDefaultAvatar: '', 8 | groupDefaultAvatarMedium: '', 9 | groupDefaultAvatarSmall: '', 10 | }; 11 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/s1-base-medium.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | widthStageLeft: '250px', 3 | }; 4 | -------------------------------------------------------------------------------- /utilities/design-tokens/dist/s1-base-small.common.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | pageHeaderBorderRadius: '0', 3 | cardShadow: 'none', 4 | pageHeaderShadow: 'none', 5 | formLabelFontSize: '0.875rem', 6 | inputStaticFontSize: '1rem', 7 | inputStaticFontWeight: '400', 8 | cardFontWeight: '400', 9 | }; 10 | -------------------------------------------------------------------------------- /utilities/get-aria-props.js: -------------------------------------------------------------------------------- 1 | export default function getAriaProps(props) { 2 | return Object.keys(props).reduce((prev, key) => { 3 | if (key.substr(0, 5) === 'aria-') { 4 | // eslint-disable-next-line no-param-reassign 5 | prev[key] = props[key]; 6 | } 7 | return prev; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /utilities/get-data-props.js: -------------------------------------------------------------------------------- 1 | export default function getDataProps(props) { 2 | return Object.keys(props).reduce((prev, key) => { 3 | if (key.substr(0, 5) === 'data-') { 4 | // eslint-disable-next-line no-param-reassign 5 | prev[key] = props[key]; 6 | } 7 | return prev; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /utilities/index.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ 2 | /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ 3 | 4 | export DateUtil from './date'; 5 | export EventUtil from './event'; 6 | export KEYS from './key-code'; 7 | --------------------------------------------------------------------------------