├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── license-checker.yml │ ├── release.yml │ ├── translation.yml │ ├── update-package-lock.yml │ └── vdiff.yml ├── .gitignore ├── .lmsrelease ├── .npmrc ├── .nvmrc ├── .stylelintrc.json ├── .vdiff.json ├── LICENSE ├── README.md ├── cli ├── clean.js ├── cleanDir.js ├── empty-state-illustration-generator.js ├── icon-generator.js └── validate-wca.js ├── components ├── alert │ ├── README.md │ ├── alert-toast.js │ ├── alert.js │ ├── demo │ │ ├── alert-toast.html │ │ └── alert.html │ └── test │ │ ├── alert-toast.axe.js │ │ ├── alert-toast.test.js │ │ ├── alert-toast.vdiff.js │ │ ├── alert.axe.js │ │ ├── alert.test.js │ │ ├── alert.vdiff.js │ │ └── golden │ │ ├── alert-toast │ │ └── chromium │ │ │ ├── button-close.png │ │ │ ├── default.png │ │ │ ├── long-button-text-subtext.png │ │ │ ├── long-button-text.png │ │ │ ├── multiple-alerts-hover-and-focus-focus-then-wait.png │ │ │ ├── multiple-alerts-hover-and-focus-hover-then-focus-then-remove-hover-then-wait.png │ │ │ ├── multiple-alerts-hover-and-focus-hover-then-remove-hover.png │ │ │ ├── multiple-alerts-hover-and-focus-hover-then-wait.png │ │ │ ├── multiple-alerts-hover-and-focus-open-quickly-then-wait.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-stacked.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-close-first.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-close-fourth.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-close-middle-alerts.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-close-second.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-close-third.png │ │ │ ├── multiple-alerts-larger-stacking-scenarios-open-four-then-re-open-middle-after-closing.png │ │ │ ├── multiple-alerts-narrow.png │ │ │ ├── multiple-alerts-open-all-from-component-then-close-bottom.png │ │ │ ├── multiple-alerts-open-all-from-component-then-close-middle.png │ │ │ ├── multiple-alerts-open-all-from-component-then-close-top.png │ │ │ ├── multiple-alerts-open-all-from-component.png │ │ │ ├── multiple-alerts-open-all-then-close-bottom.png │ │ │ ├── multiple-alerts-open-all-then-close-middle.png │ │ │ ├── multiple-alerts-open-all-then-close-top.png │ │ │ ├── multiple-alerts-open-all.png │ │ │ ├── multiple-alerts-resize-larger.png │ │ │ ├── multiple-alerts-resize-smaller.png │ │ │ ├── no-close.png │ │ │ ├── responsive-position-narrow.png │ │ │ ├── responsive-position-wide.png │ │ │ ├── subtext-button-close.png │ │ │ └── subtext-no-close.png │ │ └── alert │ │ └── chromium │ │ ├── button-close.png │ │ ├── button.png │ │ ├── close.png │ │ ├── hidden.png │ │ ├── narrow.png │ │ ├── no-padding-rtl.png │ │ ├── no-padding.png │ │ ├── rtl.png │ │ ├── stacked.png │ │ ├── type-call-to-action.png │ │ ├── type-critical.png │ │ ├── type-default.png │ │ ├── type-error.png │ │ ├── type-success.png │ │ └── type-warning.png ├── backdrop │ ├── README.md │ ├── backdrop.js │ ├── demo │ │ └── backdrop.html │ └── test │ │ ├── backdrop.test.js │ │ ├── backdrop.vdiff.js │ │ └── golden │ │ └── backdrop │ │ └── chromium │ │ ├── not-shown.png │ │ └── shown.png ├── breadcrumbs │ ├── README.md │ ├── breadcrumb-current-page.js │ ├── breadcrumb.js │ ├── breadcrumbs.js │ ├── demo │ │ └── breadcrumbs.html │ └── test │ │ ├── breadcrumb.test.js │ │ ├── breadcrumbs.axe.js │ │ ├── breadcrumbs.test.js │ │ ├── breadcrumbs.vdiff.js │ │ └── golden │ │ └── breadcrumbs │ │ └── chromium │ │ ├── compact.png │ │ ├── constrained-width.png │ │ ├── current-page.png │ │ └── default-mode.png ├── button │ ├── README.md │ ├── button-add.js │ ├── button-copy.js │ ├── button-icon.js │ ├── button-mixin.js │ ├── button-move.js │ ├── button-split-item.js │ ├── button-split.js │ ├── button-styles.js │ ├── button-subtle.js │ ├── button-toggle.js │ ├── button.js │ ├── demo │ │ ├── button-add.html │ │ ├── button-copy.html │ │ ├── button-icon.html │ │ ├── button-move.html │ │ ├── button-split.html │ │ ├── button-subtle.html │ │ ├── button-toggle.html │ │ ├── button.html │ │ ├── floating-buttons-in-frame.html │ │ ├── floating-buttons-in-tabs.html │ │ ├── floating-buttons-page.html │ │ └── floating-buttons.html │ ├── floating-buttons.js │ └── test │ │ ├── button-add.axe.js │ │ ├── button-add.test.js │ │ ├── button-add.vdiff.js │ │ ├── button-copy.axe.js │ │ ├── button-copy.test.js │ │ ├── button-copy.vdiff.js │ │ ├── button-icon.axe.js │ │ ├── button-icon.test.js │ │ ├── button-icon.vdiff.js │ │ ├── button-mixin.test.js │ │ ├── button-move.axe.js │ │ ├── button-move.test.js │ │ ├── button-move.vdiff.js │ │ ├── button-shared-tests.js │ │ ├── button-split.axe.js │ │ ├── button-split.test.js │ │ ├── button-split.vdiff.js │ │ ├── button-subtle.axe.js │ │ ├── button-subtle.test.js │ │ ├── button-subtle.vdiff.js │ │ ├── button-toggle.axe.js │ │ ├── button-toggle.test.js │ │ ├── button-toggle.vdiff.js │ │ ├── button.axe.js │ │ ├── button.test.js │ │ ├── button.vdiff.js │ │ ├── floating-buttons.axe.js │ │ ├── floating-buttons.test.js │ │ ├── floating-buttons.vdiff.js │ │ └── golden │ │ ├── button-add │ │ └── chromium │ │ │ ├── backgrounds-colored-background.png │ │ │ ├── backgrounds-dark-background-icon-mode.png │ │ │ ├── edge-cases-long-text-icon-and-text-mode-constrained-width.png │ │ │ ├── edge-cases-long-text-icon-and-text-mode.png │ │ │ ├── edge-cases-long-text-icon-mode.png │ │ │ ├── edge-cases-long-text-icon-when-interacted-mode-hover.png │ │ │ ├── mode-icon-and-text-basic-click.png │ │ │ ├── mode-icon-and-text-basic-focus.png │ │ │ ├── mode-icon-and-text-basic-hover.png │ │ │ ├── mode-icon-and-text-basic-normal.png │ │ │ ├── mode-icon-and-text-rtl.png │ │ │ ├── mode-icon-and-text-text-around-focus.png │ │ │ ├── mode-icon-and-text-text-around-normal.png │ │ │ ├── mode-icon-and-text-text-click.png │ │ │ ├── mode-icon-and-text-text-focus.png │ │ │ ├── mode-icon-and-text-text-hover.png │ │ │ ├── mode-icon-and-text-text-normal.png │ │ │ ├── mode-icon-basic-click.png │ │ │ ├── mode-icon-basic-focus.png │ │ │ ├── mode-icon-basic-hover.png │ │ │ ├── mode-icon-basic-normal.png │ │ │ ├── mode-icon-rtl.png │ │ │ ├── mode-icon-text-around-focus.png │ │ │ ├── mode-icon-text-around-normal.png │ │ │ ├── mode-icon-text-click.png │ │ │ ├── mode-icon-text-focus.png │ │ │ ├── mode-icon-text-hover.png │ │ │ ├── mode-icon-text-normal.png │ │ │ ├── mode-icon-when-interacted-basic-click.png │ │ │ ├── mode-icon-when-interacted-basic-focus.png │ │ │ ├── mode-icon-when-interacted-basic-hover.png │ │ │ ├── mode-icon-when-interacted-basic-normal.png │ │ │ ├── mode-icon-when-interacted-rtl.png │ │ │ ├── mode-icon-when-interacted-text-around-focus.png │ │ │ ├── mode-icon-when-interacted-text-around-normal.png │ │ │ ├── mode-icon-when-interacted-text-click.png │ │ │ ├── mode-icon-when-interacted-text-focus.png │ │ │ ├── mode-icon-when-interacted-text-hover.png │ │ │ └── mode-icon-when-interacted-text-normal.png │ │ ├── button-copy │ │ └── chromium │ │ │ ├── click.png │ │ │ ├── error.png │ │ │ ├── normal.png │ │ │ ├── timeout-clears-previous-timeout-on-multiple-clicks.png │ │ │ └── timeout-icon-reverts-to-copy-after-timeout.png │ │ ├── button-icon │ │ └── chromium │ │ │ ├── custom-active.png │ │ │ ├── custom-click.png │ │ │ ├── custom-disabled-hover.png │ │ │ ├── custom-disabled.png │ │ │ ├── custom-focus.png │ │ │ ├── custom-hover.png │ │ │ ├── custom-icon-active.png │ │ │ ├── custom-icon-click.png │ │ │ ├── custom-icon-disabled-hover.png │ │ │ ├── custom-icon-disabled.png │ │ │ ├── custom-icon-focus.png │ │ │ ├── custom-icon-hover.png │ │ │ ├── custom-icon-normal.png │ │ │ ├── custom-normal.png │ │ │ ├── dark-active.png │ │ │ ├── dark-click.png │ │ │ ├── dark-disabled-hover.png │ │ │ ├── dark-disabled.png │ │ │ ├── dark-focus.png │ │ │ ├── dark-hover.png │ │ │ ├── dark-normal.png │ │ │ ├── disabled-tooltip-hover.png │ │ │ ├── disabled-tooltip-normal.png │ │ │ ├── h-align-text-end.png │ │ │ ├── h-align-text.png │ │ │ ├── normal-active.png │ │ │ ├── normal-click.png │ │ │ ├── normal-disabled-hover.png │ │ │ ├── normal-disabled.png │ │ │ ├── normal-focus.png │ │ │ ├── normal-hover.png │ │ │ ├── normal-normal.png │ │ │ ├── translucent-active.png │ │ │ ├── translucent-click.png │ │ │ ├── translucent-disabled-hover.png │ │ │ ├── translucent-disabled.png │ │ │ ├── translucent-focus.png │ │ │ ├── translucent-hover.png │ │ │ └── translucent-normal.png │ │ ├── button-move │ │ └── chromium │ │ │ ├── dark-disabled-down.png │ │ │ ├── dark-disabled-up-hover.png │ │ │ ├── dark-disabled-up-keyboard-focus.png │ │ │ ├── dark-disabled-up-mouse-focus.png │ │ │ ├── dark-disabled-up.png │ │ │ ├── dark-disabled.png │ │ │ ├── dark-hover.png │ │ │ ├── dark-keyboard-focus.png │ │ │ ├── dark-mouse-focus.png │ │ │ ├── dark-normal.png │ │ │ ├── normal-disabled-down.png │ │ │ ├── normal-disabled-up-hover.png │ │ │ ├── normal-disabled-up-keyboard-focus.png │ │ │ ├── normal-disabled-up-mouse-focus.png │ │ │ ├── normal-disabled-up.png │ │ │ ├── normal-disabled.png │ │ │ ├── normal-hover.png │ │ │ ├── normal-keyboard-focus.png │ │ │ ├── normal-mouse-focus.png │ │ │ └── normal-normal.png │ │ ├── button-split │ │ └── chromium │ │ │ ├── disabled-tooltip.png │ │ │ ├── normal-disabled.png │ │ │ ├── normal-focus-main.png │ │ │ ├── normal-focus-opener.png │ │ │ ├── normal-focus.png │ │ │ ├── normal-hover-main.png │ │ │ ├── normal-hover-opener.png │ │ │ ├── normal-normal.png │ │ │ ├── open.png │ │ │ ├── primary-disabled.png │ │ │ ├── primary-focus-main.png │ │ │ ├── primary-focus-opener.png │ │ │ ├── primary-focus.png │ │ │ ├── primary-hover-main.png │ │ │ ├── primary-hover-opener.png │ │ │ ├── primary-normal.png │ │ │ ├── rtl-normal.png │ │ │ └── rtl-open.png │ │ ├── button-subtle │ │ └── chromium │ │ │ ├── default-custom-icon-active-disabled.png │ │ │ ├── default-custom-icon-active.png │ │ │ ├── default-custom-icon-click.png │ │ │ ├── default-custom-icon-disabled.png │ │ │ ├── default-custom-icon-focus.png │ │ │ ├── default-custom-icon-hover.png │ │ │ ├── default-custom-icon-normal.png │ │ │ ├── default-custom-icon-rtl.png │ │ │ ├── default-custom-icon-slot-content-active-disabled.png │ │ │ ├── default-custom-icon-slot-content-active.png │ │ │ ├── default-custom-icon-slot-content-click.png │ │ │ ├── default-custom-icon-slot-content-disabled.png │ │ │ ├── default-custom-icon-slot-content-focus.png │ │ │ ├── default-custom-icon-slot-content-hover.png │ │ │ ├── default-custom-icon-slot-content-normal.png │ │ │ ├── default-custom-icon-slot-content-rtl.png │ │ │ ├── default-icon-active-disabled.png │ │ │ ├── default-icon-active.png │ │ │ ├── default-icon-click.png │ │ │ ├── default-icon-disabled.png │ │ │ ├── default-icon-focus.png │ │ │ ├── default-icon-hover.png │ │ │ ├── default-icon-normal.png │ │ │ ├── default-icon-right-active-disabled.png │ │ │ ├── default-icon-right-active.png │ │ │ ├── default-icon-right-click.png │ │ │ ├── default-icon-right-disabled.png │ │ │ ├── default-icon-right-focus.png │ │ │ ├── default-icon-right-hover.png │ │ │ ├── default-icon-right-normal.png │ │ │ ├── default-icon-right-rtl.png │ │ │ ├── default-icon-rtl.png │ │ │ ├── default-normal-active-disabled.png │ │ │ ├── default-normal-active.png │ │ │ ├── default-normal-click.png │ │ │ ├── default-normal-disabled.png │ │ │ ├── default-normal-focus.png │ │ │ ├── default-normal-hover.png │ │ │ ├── default-normal-normal.png │ │ │ ├── default-normal-rtl.png │ │ │ ├── default-slot-content-active-disabled.png │ │ │ ├── default-slot-content-active.png │ │ │ ├── default-slot-content-click.png │ │ │ ├── default-slot-content-disabled.png │ │ │ ├── default-slot-content-focus.png │ │ │ ├── default-slot-content-hover.png │ │ │ ├── default-slot-content-normal.png │ │ │ ├── default-slot-content-rtl.png │ │ │ ├── disabled-tooltip-disabled-hover.png │ │ │ ├── disabled-tooltip-disabled.png │ │ │ ├── disabled-tooltip-not-disabled-hover.png │ │ │ ├── disabled-tooltip-not-disabled.png │ │ │ ├── h-align-text-end.png │ │ │ ├── h-align-text.png │ │ │ ├── slim-custom-icon-active-disabled.png │ │ │ ├── slim-custom-icon-active.png │ │ │ ├── slim-custom-icon-click.png │ │ │ ├── slim-custom-icon-disabled.png │ │ │ ├── slim-custom-icon-focus.png │ │ │ ├── slim-custom-icon-hover.png │ │ │ ├── slim-custom-icon-normal.png │ │ │ ├── slim-custom-icon-rtl.png │ │ │ ├── slim-custom-icon-slot-content-active-disabled.png │ │ │ ├── slim-custom-icon-slot-content-active.png │ │ │ ├── slim-custom-icon-slot-content-click.png │ │ │ ├── slim-custom-icon-slot-content-disabled.png │ │ │ ├── slim-custom-icon-slot-content-focus.png │ │ │ ├── slim-custom-icon-slot-content-hover.png │ │ │ ├── slim-custom-icon-slot-content-normal.png │ │ │ ├── slim-custom-icon-slot-content-rtl.png │ │ │ ├── slim-icon-active-disabled.png │ │ │ ├── slim-icon-active.png │ │ │ ├── slim-icon-click.png │ │ │ ├── slim-icon-disabled.png │ │ │ ├── slim-icon-focus.png │ │ │ ├── slim-icon-hover.png │ │ │ ├── slim-icon-normal.png │ │ │ ├── slim-icon-right-active-disabled.png │ │ │ ├── slim-icon-right-active.png │ │ │ ├── slim-icon-right-click.png │ │ │ ├── slim-icon-right-disabled.png │ │ │ ├── slim-icon-right-focus.png │ │ │ ├── slim-icon-right-hover.png │ │ │ ├── slim-icon-right-normal.png │ │ │ ├── slim-icon-right-rtl.png │ │ │ ├── slim-icon-rtl.png │ │ │ ├── slim-normal-active-disabled.png │ │ │ ├── slim-normal-active.png │ │ │ ├── slim-normal-click.png │ │ │ ├── slim-normal-disabled.png │ │ │ ├── slim-normal-focus.png │ │ │ ├── slim-normal-hover.png │ │ │ ├── slim-normal-normal.png │ │ │ ├── slim-normal-rtl.png │ │ │ ├── slim-slot-content-active-disabled.png │ │ │ ├── slim-slot-content-active.png │ │ │ ├── slim-slot-content-click.png │ │ │ ├── slim-slot-content-disabled.png │ │ │ ├── slim-slot-content-focus.png │ │ │ ├── slim-slot-content-hover.png │ │ │ ├── slim-slot-content-normal.png │ │ │ └── slim-slot-content-rtl.png │ │ ├── button-toggle │ │ └── chromium │ │ │ ├── button-icon-click.png │ │ │ ├── button-icon-enter.png │ │ │ ├── button-icon-focus.png │ │ │ ├── button-icon-hover.png │ │ │ ├── button-icon-normal.png │ │ │ ├── button-icon-pressed-click.png │ │ │ ├── button-icon-pressed-enter.png │ │ │ ├── button-icon-pressed-focus.png │ │ │ ├── button-icon-pressed-hover.png │ │ │ ├── button-icon-pressed-normal.png │ │ │ ├── button-subtle-click.png │ │ │ ├── button-subtle-disabled-click.png │ │ │ ├── button-subtle-disabled-enter.png │ │ │ ├── button-subtle-disabled-focus.png │ │ │ ├── button-subtle-disabled-hover.png │ │ │ ├── button-subtle-disabled-normal.png │ │ │ ├── button-subtle-enter.png │ │ │ ├── button-subtle-focus.png │ │ │ ├── button-subtle-hover.png │ │ │ ├── button-subtle-normal.png │ │ │ ├── button-subtle-pressed-click.png │ │ │ ├── button-subtle-pressed-enter.png │ │ │ ├── button-subtle-pressed-focus.png │ │ │ ├── button-subtle-pressed-hover.png │ │ │ └── button-subtle-pressed-normal.png │ │ ├── button │ │ └── chromium │ │ │ ├── disabled-tooltip-not-disabled-hover.png │ │ │ ├── disabled-tooltip.png │ │ │ ├── normal-active-disabled.png │ │ │ ├── normal-active.png │ │ │ ├── normal-click.png │ │ │ ├── normal-disabled.png │ │ │ ├── normal-focus.png │ │ │ ├── normal-hover.png │ │ │ ├── normal-normal.png │ │ │ ├── primary-active-disabled.png │ │ │ ├── primary-active.png │ │ │ ├── primary-click.png │ │ │ ├── primary-disabled.png │ │ │ ├── primary-focus.png │ │ │ ├── primary-hover.png │ │ │ └── primary-normal.png │ │ └── floating-buttons │ │ └── chromium │ │ ├── does-not-float-at-bottom-of-container.png │ │ ├── does-not-float-when-small-amount-of-content.png │ │ ├── floats-at-bottom-of-page-when-always-float.png │ │ ├── floats-when-bounded.png │ │ ├── floats-when-content-added-to-dom.png │ │ ├── floats.png │ │ ├── is-correct-with-rtl.png │ │ ├── scrolls-when-obscuring-element-with-focus.png │ │ ├── window-less-than-min-height-(500px)-does-not-float.png │ │ └── window-less-than-min-height-(500px)-floats-at-bottom-of-page-when-always-float-is-true.png ├── calendar │ ├── README.md │ ├── calendar.js │ ├── demo │ │ └── calendar.html │ └── test │ │ ├── calendar.axe.js │ │ ├── calendar.test.js │ │ ├── calendar.vdiff.js │ │ └── golden │ │ └── calendar │ │ └── chromium │ │ ├── all-attributes.png │ │ ├── day-infos-focus.png │ │ ├── day-infos-selected-focus.png │ │ ├── day-infos-today-focus.png │ │ ├── day-infos.png │ │ ├── dec-2019.png │ │ ├── initial-value-selected-value.png │ │ ├── initial-value.png │ │ ├── interaction-click-left-arrow.png │ │ ├── interaction-click-right-arrow.png │ │ ├── interaction-date-selection-click-disabled.png │ │ ├── interaction-date-selection-click.png │ │ ├── interaction-date-selection-enter.png │ │ ├── interaction-date-selection-space.png │ │ ├── interaction-initial-focus-date-is-1st-of-month.png │ │ ├── interaction-initial-focus-date-is-selected-value.png │ │ ├── interaction-keys-arrow-down-to-next-month.png │ │ ├── interaction-keys-arrow-left-to-prev-month.png │ │ ├── interaction-keys-arrow-right-to-next-month.png │ │ ├── interaction-keys-arrow-up-to-prev-month.png │ │ ├── interaction-keys-other-end.png │ │ ├── interaction-keys-other-home.png │ │ ├── interaction-keys-other-min-max-end-max-value.png │ │ ├── interaction-keys-other-min-max-home-min-value.png │ │ ├── interaction-keys-other-min-max-pagedown-max-value.png │ │ ├── interaction-keys-other-min-max-pagedown-twice-max-value.png │ │ ├── interaction-keys-other-min-max-pageup-min-value.png │ │ ├── interaction-keys-other-min-max-pageup-twice-min-value.png │ │ ├── interaction-keys-other-pagedown.png │ │ ├── interaction-keys-other-pageup.png │ │ ├── localization-ar.png │ │ ├── localization-da.png │ │ ├── localization-de.png │ │ ├── localization-en.png │ │ ├── localization-es.png │ │ ├── localization-fr.png │ │ ├── localization-nl.png │ │ ├── localization-pt.png │ │ ├── localization-sv.png │ │ ├── localization-tr.png │ │ ├── max.png │ │ ├── min-max-no-selected.png │ │ ├── min-max.png │ │ ├── min.png │ │ ├── no-selected.png │ │ ├── rtl-arrow-left.png │ │ ├── rtl-arrow-right.png │ │ ├── rtl-basic.png │ │ ├── rtl-end.png │ │ ├── rtl-home.png │ │ ├── style-date-focus-on-non-selected-value.png │ │ ├── style-date-focus-on-selected-value.png │ │ ├── style-date-hover-and-focus-on-non-selected-value.png │ │ ├── style-date-hover-and-focus-on-selected-value.png │ │ ├── style-date-hover-on-non-selected-value.png │ │ ├── style-date-hover-on-selected-value.png │ │ ├── style-focus.png │ │ ├── today-selected.png │ │ ├── viewport-sizes-medium.png │ │ ├── viewport-sizes-wide.png │ │ └── with-slot.png ├── card │ ├── README.md │ ├── card-content-meta.js │ ├── card-content-title.js │ ├── card-footer-link.js │ ├── card-loading-shimmer.js │ ├── card.js │ ├── demo │ │ └── card.html │ └── test │ │ ├── card-content-meta.axe.js │ │ ├── card-content-meta.test.js │ │ ├── card-content-title.axe.js │ │ ├── card-content-title.test.js │ │ ├── card-content.vdiff.js │ │ ├── card-footer-link.axe.js │ │ ├── card-footer-link.test.js │ │ ├── card-footer-link.vdiff.js │ │ ├── card-loading-shimmer.axe.js │ │ ├── card-loading-shimmer.test.js │ │ ├── card.axe.js │ │ ├── card.test.js │ │ ├── card.vdiff.js │ │ └── golden │ │ ├── card-content-meta │ │ └── chromium │ │ │ └── default.png │ │ ├── card-content-title │ │ └── chromium │ │ │ └── default.png │ │ ├── card-footer-link │ │ └── chromium │ │ │ ├── no-secondary-focus.png │ │ │ ├── no-secondary.png │ │ │ ├── secondary-count-focus.png │ │ │ ├── secondary-count.png │ │ │ ├── secondary-notification-focus.png │ │ │ └── secondary-notification.png │ │ └── card │ │ └── chromium │ │ ├── actions-focus.png │ │ ├── actions-rtl.png │ │ ├── actions.png │ │ ├── align-center.png │ │ ├── badge.png │ │ ├── footer.png │ │ ├── header-content.png │ │ ├── link-actions-focus.png │ │ ├── link-focus.png │ │ ├── link-footer-focus.png │ │ ├── link.png │ │ ├── no-link-focus.png │ │ ├── subtle.png │ │ ├── with-dropdown-adjacent-hover.png │ │ ├── with-dropdown-open.png │ │ ├── with-dropdown.png │ │ ├── with-footer-tooltip-focus.png │ │ └── with-main-tooltip-focus.png ├── collapsible-panel │ ├── README.md │ ├── collapsible-panel-group.js │ ├── collapsible-panel-summary-item.js │ ├── collapsible-panel.js │ ├── demo │ │ └── collapsible-panel.html │ └── test │ │ ├── collapsible-panel-group.test.js │ │ ├── collapsible-panel-group.vdiff.js │ │ ├── collapsible-panel.axe.js │ │ ├── collapsible-panel.test.js │ │ ├── collapsible-panel.vdiff.js │ │ └── golden │ │ ├── collapsible-panel-group │ │ └── chromium │ │ │ ├── default-rtl.png │ │ │ ├── default.png │ │ │ ├── heading-levels-rtl.png │ │ │ ├── heading-levels.png │ │ │ ├── inline-rtl.png │ │ │ ├── inline.png │ │ │ ├── subtle-rtl.png │ │ │ └── subtle.png │ │ └── collapsible-panel │ │ └── chromium │ │ ├── custom-before-rtl.png │ │ ├── custom-before.png │ │ ├── custom-expanded-rtl.png │ │ ├── custom-expanded.png │ │ ├── custom-rtl.png │ │ ├── custom-summary-expanded.png │ │ ├── custom-summary-rtl.png │ │ ├── custom-summary.png │ │ ├── custom.png │ │ ├── default-collapsed-rtl.png │ │ ├── default-collapsed.png │ │ ├── default-expand-event.png │ │ ├── default-expanded-focus.png │ │ ├── default-expanded-rtl.png │ │ ├── default-expanded-sticky-scrolled.png │ │ ├── default-expanded-sticky-top.png │ │ ├── default-expanded.png │ │ ├── default-focus-rtl.png │ │ ├── default-focus.png │ │ ├── default-large-padding-expanded.png │ │ ├── default-large-padding-summary.png │ │ ├── default-large-padding.png │ │ ├── default-long.png │ │ ├── default-summary-expanded.png │ │ ├── default-summary-focus.png │ │ ├── default-summary-rtl.png │ │ ├── default-summary.png │ │ ├── default-title-wrap-focus-rtl.png │ │ ├── default-title-wrap-focus.png │ │ ├── default-title-wrap-rtl.png │ │ ├── default-title-wrap.png │ │ ├── inline-collapsed-rtl.png │ │ ├── inline-collapsed.png │ │ ├── inline-expanded-focus.png │ │ ├── inline-expanded-rtl.png │ │ ├── inline-expanded-sticky-scrolled.png │ │ ├── inline-expanded-sticky-top.png │ │ ├── inline-expanded.png │ │ ├── inline-focus-rtl.png │ │ ├── inline-focus.png │ │ ├── inline-large-padding-expanded.png │ │ ├── inline-large-padding-summary.png │ │ ├── inline-large-padding.png │ │ ├── inline-long.png │ │ ├── inline-summary-expanded.png │ │ ├── inline-summary-focus.png │ │ ├── inline-summary-rtl.png │ │ ├── inline-summary.png │ │ ├── skeleton.png │ │ ├── subtle-collapsed-rtl.png │ │ ├── subtle-collapsed.png │ │ ├── subtle-expanded-focus.png │ │ ├── subtle-expanded-rtl.png │ │ ├── subtle-expanded-sticky-scrolled.png │ │ ├── subtle-expanded-sticky-top.png │ │ ├── subtle-expanded.png │ │ ├── subtle-focus-rtl.png │ │ ├── subtle-focus.png │ │ ├── subtle-large-padding-expanded.png │ │ ├── subtle-large-padding-summary.png │ │ ├── subtle-large-padding.png │ │ ├── subtle-long.png │ │ ├── subtle-summary-expanded.png │ │ ├── subtle-summary-focus.png │ │ ├── subtle-summary-rtl.png │ │ ├── subtle-summary.png │ │ ├── summary-item-text-lines-unbreakable.png │ │ ├── summary-item-text-lines.png │ │ └── summary-item-text-wrapping.png ├── colors │ ├── README.md │ ├── colors.js │ ├── colors.scss │ ├── demo │ │ ├── color-swatch.js │ │ └── colors.html │ └── test │ │ ├── colors.vdiff.js │ │ └── golden │ │ └── colors │ │ └── chromium │ │ └── palette.png ├── count-badge │ ├── README.md │ ├── count-badge-icon.js │ ├── count-badge-mixin.js │ ├── count-badge.js │ ├── demo │ │ ├── count-badge-icon.html │ │ └── count-badge.html │ └── test │ │ ├── count-badge-icon.axe.js │ │ ├── count-badge-icon.test.js │ │ ├── count-badge-icon.vdiff.js │ │ ├── count-badge.axe.js │ │ ├── count-badge.test.js │ │ ├── count-badge.vdiff.js │ │ └── golden │ │ ├── count-badge-icon │ │ └── chromium │ │ │ ├── icon-and-tooltip-tooltip-appears-on-focus-visible.png │ │ │ ├── icon-and-tooltip-tooltip-does-not-appear-by-default.png │ │ │ ├── icon-skeleton.png │ │ │ ├── large-count-icon-rtl.png │ │ │ ├── large-count-icon.png │ │ │ ├── large-number-centered-rtl.png │ │ │ ├── large-number-centered.png │ │ │ ├── small-notification-icon-focused-rtl.png │ │ │ └── small-notification-icon-focused.png │ │ └── count-badge │ │ └── chromium │ │ ├── hide-zero-hidden.png │ │ ├── hide-zero-nonzero-shown.png │ │ ├── large-count-colorway-override.png │ │ ├── large-count-focused.png │ │ ├── large-count-large-number-rtl.png │ │ ├── large-count-large-number.png │ │ ├── large-count.png │ │ ├── skeleton.png │ │ ├── small-notification-focused.png │ │ ├── small-notification-truncated-rtl.png │ │ ├── small-notification-truncated.png │ │ ├── small-notification.png │ │ ├── tooltip-appears-on-focus-visible.png │ │ └── tooltip-does-not-appear-by-default.png ├── demo │ ├── code-dark-plus-styles.js │ ├── code-tomorrow-styles.js │ ├── code-view-styles.js │ ├── code-view.js │ ├── demo-flags.js │ ├── demo-page-settings.js │ ├── demo-page.js │ ├── demo-passthrough-mixin.js │ ├── demo-snippet.js │ ├── demo │ │ └── demo-snippet.html │ ├── styles.css │ └── test │ │ ├── demo-page-settings.test.js │ │ └── demo-page.test.js ├── description-list │ ├── README.md │ ├── demo │ │ ├── description-list-test.js │ │ └── description-list.html │ ├── description-list-wrapper.js │ └── test │ │ ├── description-list.axe.js │ │ ├── description-list.test.js │ │ ├── description-list.vdiff.js │ │ └── golden │ │ └── description-list-wrapper │ │ └── chromium │ │ ├── activity-display-239.png │ │ ├── activity-display-299.png │ │ ├── activity-display-599.png │ │ ├── activity-display-799.png │ │ ├── bulk-course-import-239.png │ │ ├── bulk-course-import-299.png │ │ ├── bulk-course-import-599.png │ │ ├── bulk-course-import-799.png │ │ ├── default-239.png │ │ ├── default-299.png │ │ ├── default-599.png │ │ ├── default-799.png │ │ ├── long-239.png │ │ ├── long-299.png │ │ ├── long-599.png │ │ ├── long-799.png │ │ ├── slotted-239.png │ │ ├── slotted-299.png │ │ ├── slotted-599.png │ │ ├── slotted-799.png │ │ ├── stacked-239.png │ │ ├── stacked-299.png │ │ ├── stacked-599.png │ │ ├── stacked-799.png │ │ ├── stacked-with-breakpoint-239.png │ │ ├── stacked-with-breakpoint-299.png │ │ ├── stacked-with-breakpoint-599.png │ │ └── stacked-with-breakpoint-799.png ├── dialog │ ├── README.md │ ├── demo │ │ ├── dialog-async-content-until.js │ │ ├── dialog-async-content.js │ │ ├── dialog-confirm.html │ │ ├── dialog-container.js │ │ ├── dialog-fullscreen.html │ │ ├── dialog-nested.html │ │ └── dialog.html │ ├── dialog-confirm.js │ ├── dialog-fullscreen.js │ ├── dialog-mixin.js │ ├── dialog-styles.js │ ├── dialog.js │ └── test │ │ ├── dialog-confirm.axe.js │ │ ├── dialog-confirm.test.js │ │ ├── dialog-confirm.vdiff.js │ │ ├── dialog-fullscreen.axe.js │ │ ├── dialog-fullscreen.test.js │ │ ├── dialog-fullscreen.vdiff.js │ │ ├── dialog-ifrau-contents.vdiff.html │ │ ├── dialog-ifrau.vdiff.js │ │ ├── dialog-mixin.test.js │ │ ├── dialog-mixin.vdiff.js │ │ ├── dialog-shared-contents.js │ │ ├── dialog-with-mobile-dropdown.vdiff.js │ │ ├── dialog.axe.js │ │ ├── dialog.test.js │ │ ├── dialog.vdiff.js │ │ └── golden │ │ ├── dialog-confirm │ │ └── chromium │ │ │ ├── custom-internal-critical.png │ │ │ ├── custom-internal-long-buttons.png │ │ │ ├── custom-internal-long-text.png │ │ │ ├── custom-internal-long-title.png │ │ │ ├── custom-internal-multiple-paragraphs.png │ │ │ ├── custom-internal-no-title.png │ │ │ ├── custom-internal-short.png │ │ │ ├── custom-narrow-opened.png │ │ │ ├── custom-narrow-rtl.png │ │ │ ├── custom-reset-styles.png │ │ │ ├── custom-wide-opened.png │ │ │ └── custom-wide-rtl.png │ │ ├── dialog-fullscreen │ │ └── chromium │ │ │ ├── custom-internal-fullscreen-within-off.png │ │ │ ├── custom-internal-fullscreen-within-on.png │ │ │ ├── custom-internal-horizontal-overflow.png │ │ │ ├── custom-internal-no-footer-content.png │ │ │ ├── custom-internal-no-padding.png │ │ │ ├── custom-internal-scroll-bottom-shadow.png │ │ │ ├── custom-internal-scroll-top-shadow.png │ │ │ ├── custom-landscape-opened-set-width-above-max.png │ │ │ ├── custom-landscape-opened-set-width-below-min.png │ │ │ ├── custom-landscape-opened-set-width.png │ │ │ ├── custom-landscape-opened.png │ │ │ ├── custom-landscape-rtl.png │ │ │ ├── custom-narrow-opened-set-width-above-max.png │ │ │ ├── custom-narrow-opened-set-width-below-min.png │ │ │ ├── custom-narrow-opened-set-width.png │ │ │ ├── custom-narrow-opened.png │ │ │ ├── custom-narrow-rtl.png │ │ │ ├── custom-reset-styles.png │ │ │ ├── custom-wide-opened-set-width-above-max.png │ │ │ ├── custom-wide-opened-set-width-below-min.png │ │ │ ├── custom-wide-opened-set-width.png │ │ │ ├── custom-wide-opened.png │ │ │ ├── custom-wide-rtl.png │ │ │ ├── custom-wider-opened-set-width-above-max.png │ │ │ ├── custom-wider-opened-set-width-below-min.png │ │ │ ├── custom-wider-opened-set-width.png │ │ │ ├── custom-wider-opened.png │ │ │ └── custom-wider-rtl.png │ │ ├── dialog-ifrau │ │ └── chromium │ │ │ ├── custom-host-scrolled-down.png │ │ │ ├── custom-ifrau-available-height-lt-host-height.png │ │ │ ├── custom-ifrau-top-height-gt-dialog-top-margin.png │ │ │ └── custom-ifrau-top-height-lt-dialog-top-margin.png │ │ ├── dialog-mixin │ │ └── chromium │ │ │ ├── custom-delayed-content.png │ │ │ ├── custom-generic-abort.png │ │ │ ├── custom-generic-closed.png │ │ │ ├── custom-generic-escape.png │ │ │ └── custom-generic-initial-closed.png │ │ ├── dialog-with-mobile-dropdown │ │ └── chromium │ │ │ ├── custom-default-breakpoint-bottom-fullscreen.png │ │ │ ├── custom-default-breakpoint-bottom-nested.png │ │ │ ├── custom-default-breakpoint-bottom.png │ │ │ ├── custom-default-breakpoint-filter-fullscreen.png │ │ │ ├── custom-default-breakpoint-filter-nested.png │ │ │ ├── custom-default-breakpoint-filter.png │ │ │ ├── custom-default-breakpoint-left-fullscreen.png │ │ │ ├── custom-default-breakpoint-left-nested.png │ │ │ ├── custom-default-breakpoint-left.png │ │ │ ├── custom-filter-breakpoint-filter-fullscreen.png │ │ │ ├── custom-filter-breakpoint-filter-nested.png │ │ │ └── custom-filter-breakpoint-filter.png │ │ └── dialog │ │ └── chromium │ │ ├── custom-internal-critical.png │ │ ├── custom-internal-full-height-narrow.png │ │ ├── custom-internal-full-height.png │ │ ├── custom-internal-fullscreen-within-off.png │ │ ├── custom-internal-fullscreen-within-on.png │ │ ├── custom-internal-no-footer-content.png │ │ ├── custom-internal-scroll-bottom-shadow.png │ │ ├── custom-internal-scroll-top-shadow.png │ │ ├── custom-reset-styles.png │ │ ├── custom-short-narrow-focus-on-content-when-overflowing-content-and-footer.png │ │ ├── custom-short-narrow-focus-on-content-when-overflowing-content.png │ │ ├── custom-short-narrow-focus-on-content-when-short-content.png │ │ ├── custom-short-narrow-focus-on-focusable-elem-when-overflowing-content.png │ │ ├── custom-short-narrow-opened-wide.png │ │ ├── custom-short-narrow-opened.png │ │ ├── custom-short-narrow-resize.png │ │ ├── custom-short-narrow-rtl.png │ │ ├── custom-short-wide-focus-on-content-when-overflowing-content-and-footer.png │ │ ├── custom-short-wide-focus-on-content-when-overflowing-content.png │ │ ├── custom-short-wide-focus-on-content-when-short-content.png │ │ ├── custom-short-wide-focus-on-focusable-elem-when-overflowing-content.png │ │ ├── custom-short-wide-opened-wide.png │ │ ├── custom-short-wide-opened.png │ │ ├── custom-short-wide-resize.png │ │ ├── custom-short-wide-rtl.png │ │ ├── custom-tall-narrow-focus-on-content-when-overflowing-content-and-footer.png │ │ ├── custom-tall-narrow-focus-on-content-when-overflowing-content.png │ │ ├── custom-tall-narrow-focus-on-content-when-short-content.png │ │ ├── custom-tall-narrow-focus-on-focusable-elem-when-overflowing-content.png │ │ ├── custom-tall-narrow-opened-wide.png │ │ ├── custom-tall-narrow-opened.png │ │ ├── custom-tall-narrow-resize.png │ │ ├── custom-tall-narrow-rtl.png │ │ ├── custom-tall-wide-focus-on-content-when-overflowing-content-and-footer.png │ │ ├── custom-tall-wide-focus-on-content-when-overflowing-content.png │ │ ├── custom-tall-wide-focus-on-content-when-short-content.png │ │ ├── custom-tall-wide-focus-on-focusable-elem-when-overflowing-content.png │ │ ├── custom-tall-wide-opened-wide.png │ │ ├── custom-tall-wide-opened.png │ │ ├── custom-tall-wide-resize.png │ │ └── custom-tall-wide-rtl.png ├── dropdown │ ├── README.md │ ├── demo │ │ ├── dropdown-button.html │ │ ├── dropdown-context-menu.html │ │ ├── dropdown-menu-demo-view.js │ │ ├── dropdown-menu.html │ │ ├── dropdown-more.html │ │ ├── dropdown-positioning.html │ │ ├── dropdown-tabs.html │ │ └── dropdown.html │ ├── dropdown-button-subtle.js │ ├── dropdown-button.js │ ├── dropdown-content-mixin.js │ ├── dropdown-content-styles.js │ ├── dropdown-content.js │ ├── dropdown-context-menu.js │ ├── dropdown-menu.js │ ├── dropdown-more.js │ ├── dropdown-opener-mixin.js │ ├── dropdown-opener-styles.js │ ├── dropdown-popover-mixin.js │ ├── dropdown-tabs.js │ ├── dropdown.js │ └── test │ │ ├── dropdown-content-contained.vdiff.js │ │ ├── dropdown-content.test.js │ │ ├── dropdown-content.vdiff.js │ │ ├── dropdown-menu.test.js │ │ ├── dropdown-menu.vdiff.js │ │ ├── dropdown-openers.test.js │ │ ├── dropdown-openers.vdiff.js │ │ ├── dropdown-tabs.test.js │ │ └── golden │ │ ├── dropdown-content-contained │ │ └── chromium │ │ │ ├── contained-bottom.png │ │ │ └── contained-top.png │ │ ├── dropdown-content │ │ └── chromium │ │ │ ├── align-end-edge-rtl.png │ │ │ ├── align-end-edge.png │ │ │ ├── align-end-rtl.png │ │ │ ├── align-end-wide-opener-rtl.png │ │ │ ├── align-end-wide-opener.png │ │ │ ├── align-end.png │ │ │ ├── align-start-edge-rtl.png │ │ │ ├── align-start-edge-wide-opener-rtl.png │ │ │ ├── align-start-edge-wide-opener.png │ │ │ ├── align-start-edge.png │ │ │ ├── align-start-rtl.png │ │ │ ├── align-start-wide-opener-rtl.png │ │ │ ├── align-start-wide-opener.png │ │ │ ├── align-start.png │ │ │ ├── bottom-left-rtl.png │ │ │ ├── bottom-left.png │ │ │ ├── bottom-middle-rtl.png │ │ │ ├── bottom-middle.png │ │ │ ├── bottom-right-rtl.png │ │ │ ├── bottom-right.png │ │ │ ├── default-width.png │ │ │ ├── max-height.png │ │ │ ├── max-width.png │ │ │ ├── min-height.png │ │ │ ├── min-width.png │ │ │ ├── mobile-bottom-tray-max-height.png │ │ │ ├── mobile-bottom-tray-no-close.png │ │ │ ├── mobile-bottom-tray.png │ │ │ ├── mobile-left-tray-max-width-large.png │ │ │ ├── mobile-left-tray-max-width.png │ │ │ ├── mobile-left-tray-no-close.png │ │ │ ├── mobile-left-tray.png │ │ │ ├── mobile-no-tray.png │ │ │ ├── mobile-right-tray-max-width-large.png │ │ │ ├── mobile-right-tray-max-width.png │ │ │ ├── mobile-right-tray-no-close.png │ │ │ ├── mobile-right-tray.png │ │ │ ├── no-padding-no-pointer.png │ │ │ ├── scroll-bottom-shadow.png │ │ │ ├── scroll-top-shadow.png │ │ │ ├── top-left-rtl.png │ │ │ ├── top-left.png │ │ │ ├── top-middle-rtl.png │ │ │ ├── top-middle.png │ │ │ ├── top-right-rtl.png │ │ │ ├── top-right.png │ │ │ ├── vertical-offset-above.png │ │ │ ├── vertical-offset-edge.png │ │ │ ├── vertical-offset-negative.png │ │ │ ├── vertical-offset.png │ │ │ ├── wide-opener.png │ │ │ └── with-header-footer.png │ │ ├── dropdown-menu │ │ └── chromium │ │ │ ├── closed-reopened.png │ │ │ ├── dark-theme.png │ │ │ ├── first-page.png │ │ │ ├── initially-opened.png │ │ │ ├── radio-button-close.png │ │ │ ├── with-header-footer-mobile.png │ │ │ ├── with-header-footer.png │ │ │ └── with-nopadding-header-footer.png │ │ └── dropdown-openers │ │ └── chromium │ │ ├── autoclose.png │ │ ├── button-full-width.png │ │ ├── button-primary.png │ │ ├── button-rtl.png │ │ ├── button-subtle.png │ │ ├── button.png │ │ ├── context-menu.png │ │ └── more.png ├── empty-state │ ├── README.md │ ├── demo │ │ └── empty-state.html │ ├── empty-state-action-button.js │ ├── empty-state-action-link.js │ ├── empty-state-illustrated.js │ ├── empty-state-mixin.js │ ├── empty-state-simple.js │ ├── empty-state-styles.js │ ├── images │ │ ├── assembly-line.svg │ │ ├── blueprint.svg │ │ ├── calendar.svg │ │ ├── cat-computer.svg │ │ ├── checklist.svg │ │ ├── data-tracking.svg │ │ ├── desert-road.svg │ │ ├── fish-hook.svg │ │ ├── oven.svg │ │ ├── pipeline.svg │ │ ├── race.svg │ │ ├── rockets.svg │ │ └── tumbleweed.svg │ └── test │ │ ├── empty-state-illustrated.axe.js │ │ ├── empty-state-illustrated.test.js │ │ ├── empty-state-illustrated.vdiff.js │ │ ├── empty-state-simple.axe.js │ │ ├── empty-state-simple.test.js │ │ ├── empty-state-simple.vdiff.js │ │ └── golden │ │ ├── empty-state-illustrated │ │ └── chromium │ │ │ ├── custom-svg.png │ │ │ ├── no-svg.png │ │ │ ├── normal-button-primary.png │ │ │ ├── normal-button.png │ │ │ ├── normal-link.png │ │ │ ├── normal-no-action.png │ │ │ ├── small-button-primary.png │ │ │ ├── small-button.png │ │ │ ├── small-link.png │ │ │ └── small-no-action.png │ │ └── empty-state-simple │ │ └── chromium │ │ ├── no-description-button-rtl.png │ │ ├── no-description-button.png │ │ ├── no-description-link-rtl.png │ │ ├── no-description-link.png │ │ ├── normal-button-primary-blocked-rtl.png │ │ ├── normal-button-primary-blocked.png │ │ ├── normal-button-rtl.png │ │ ├── normal-button.png │ │ ├── normal-link-rtl.png │ │ ├── normal-link.png │ │ ├── normal-rtl.png │ │ ├── normal.png │ │ ├── wrap-button-rtl.png │ │ ├── wrap-button.png │ │ ├── wrap-link-rtl.png │ │ ├── wrap-link.png │ │ ├── wrap-rtl.png │ │ └── wrap.png ├── expand-collapse │ ├── README.md │ ├── demo │ │ └── expand-collapse-content.html │ ├── expand-collapse-content.js │ └── test │ │ ├── expand-collapse-content.test.js │ │ ├── expand-collapse-content.vdiff.js │ │ └── golden │ │ └── expand-collapse-content │ │ └── chromium │ │ ├── collapsed.png │ │ └── expanded.png ├── filter │ ├── README.md │ ├── demo │ │ ├── filter-load-more-demo.js │ │ ├── filter-overflow-group.html │ │ ├── filter-search-demo.js │ │ ├── filter-tags.html │ │ └── filter.html │ ├── filter-dimension-set-date-text-value.js │ ├── filter-dimension-set-date-time-range-value.js │ ├── filter-dimension-set-empty-state.js │ ├── filter-dimension-set-value.js │ ├── filter-dimension-set.js │ ├── filter-overflow-group.js │ ├── filter-tags.js │ ├── filter.js │ └── test │ │ ├── filter-dimension-set-date-text-value.test.js │ │ ├── filter-dimension-set-empty-state.test.js │ │ ├── filter-dimension-set-value.test.js │ │ ├── filter-dimension-set.test.js │ │ ├── filter-overflow-group.axe.js │ │ ├── filter-overflow-group.test.js │ │ ├── filter-overflow-group.vdiff.js │ │ ├── filter-tags.axe.js │ │ ├── filter-tags.test.js │ │ ├── filter-tags.vdiff.js │ │ ├── filter.axe.js │ │ ├── filter.test.js │ │ ├── filter.vdiff.js │ │ └── golden │ │ ├── filter-overflow-group │ │ └── chromium │ │ │ ├── basic-width-320.png │ │ │ ├── basic-width-400.png │ │ │ ├── basic-width-500.png │ │ │ ├── basic-width-700.png │ │ │ ├── between-min-max-to-show.png │ │ │ ├── click-dropdown-opener.png │ │ │ ├── exactly-max-to-show.png │ │ │ ├── ignores-hidden-filter.png │ │ │ ├── less-than-min-to-show.png │ │ │ ├── more-than-max-to-show.png │ │ │ ├── one-more-than-max-to-show.png │ │ │ ├── small-width.png │ │ │ ├── tags-width-320.png │ │ │ ├── tags-width-400.png │ │ │ ├── tags-width-500.png │ │ │ └── tags-width-700.png │ │ ├── filter-tags │ │ └── chromium │ │ │ ├── basic-rtl.png │ │ │ ├── basic-width-1500-show-more-button-clicked.png │ │ │ ├── basic-width-1500.png │ │ │ ├── basic-width-320-show-more-button-clicked.png │ │ │ ├── basic-width-320.png │ │ │ ├── basic-width-400-show-more-button-clicked.png │ │ │ ├── basic-width-400.png │ │ │ ├── basic-width-599-show-more-button-clicked.png │ │ │ ├── basic-width-599.png │ │ │ ├── basic-width-601-show-more-button-clicked.png │ │ │ ├── basic-width-601.png │ │ │ ├── basic-width-969-show-more-button-clicked.png │ │ │ ├── basic-width-969.png │ │ │ ├── basic-width-980-show-more-button-clicked.png │ │ │ ├── basic-width-980.png │ │ │ ├── clearable-behavior-clear-one-filter-set.png │ │ │ ├── clearable-behavior-clicking-clear-all-with-two-filters.png │ │ │ ├── clearable-behavior-clicking-clear-all.png │ │ │ ├── clearable-behavior-deleting-second-item.png │ │ │ ├── clearable-behavior-deleting-the-first-item.png │ │ │ ├── clearable-behavior-deleting-the-last-item.png │ │ │ ├── date-time-filters-custom-type-selected.png │ │ │ ├── date-time-filters-date-time-type-end-date.png │ │ │ ├── date-time-filters-date-time-type-no-dates.png │ │ │ ├── date-time-filters-date-time-type-start-date.png │ │ │ ├── date-time-filters-date-time-type-start-end-dates.png │ │ │ ├── date-time-filters-date-type-end-date.png │ │ │ ├── date-time-filters-date-type-no-dates.png │ │ │ ├── date-time-filters-date-type-start-date.png │ │ │ ├── date-time-filters-date-type-start-end-dates.png │ │ │ ├── date-time-filters-text-type-selected.png │ │ │ ├── flex-end.png │ │ │ ├── two-filters-rtl.png │ │ │ └── two-filters.png │ │ └── filter │ │ └── chromium │ │ ├── multiple-dates.png │ │ ├── multiple-empty.png │ │ ├── multiple-mobile-dates.png │ │ ├── multiple-mobile-empty.png │ │ ├── multiple-mobile-nested-dates-custom.png │ │ ├── multiple-mobile-nested-dates.png │ │ ├── multiple-mobile-nested-dim-1.png │ │ ├── multiple-mobile-nested-dim-2.png │ │ ├── multiple-mobile-nested-dim-3.png │ │ ├── multiple-mobile-selected.png │ │ ├── multiple-nested-dates-custom.png │ │ ├── multiple-nested-dates.png │ │ ├── multiple-nested-dim-1.png │ │ ├── multiple-nested-dim-2.png │ │ ├── multiple-nested-dim-3.png │ │ ├── multiple-press-clear-all.png │ │ ├── multiple-rtl-dates.png │ │ ├── multiple-rtl-empty.png │ │ ├── multiple-rtl-mobile-dates.png │ │ ├── multiple-rtl-mobile-empty.png │ │ ├── multiple-rtl-mobile-nested-dates-custom.png │ │ ├── multiple-rtl-mobile-nested-dates.png │ │ ├── multiple-rtl-mobile-nested-dim-1.png │ │ ├── multiple-rtl-mobile-nested-dim-2.png │ │ ├── multiple-rtl-mobile-nested-dim-3.png │ │ ├── multiple-rtl-mobile-selected.png │ │ ├── multiple-rtl-nested-dates-custom.png │ │ ├── multiple-rtl-nested-dates.png │ │ ├── multiple-rtl-nested-dim-1.png │ │ ├── multiple-rtl-nested-dim-2.png │ │ ├── multiple-rtl-nested-dim-3.png │ │ ├── multiple-rtl-selected.png │ │ ├── multiple-selected.png │ │ ├── opener-disabled.png │ │ ├── opener-multiple-over-99.png │ │ ├── opener-multiple-rtl-over-99.png │ │ ├── opener-multiple-text-override-over-99.png │ │ ├── opener-single-over-99.png │ │ ├── single-set-custom-empty.png │ │ ├── single-set-dates-custom-selected-small-mobile.png │ │ ├── single-set-dates-custom-selected.png │ │ ├── single-set-dates-custom-tooltip.png │ │ ├── single-set-dates-long-custom-selected.png │ │ ├── single-set-dates-long.png │ │ ├── single-set-dates-open-custom-date-input-type-date.png │ │ ├── single-set-dates-press-clear-dates.png │ │ ├── single-set-dates.png │ │ ├── single-set-empty.png │ │ ├── single-set-introductory-text.png │ │ ├── single-set-mobile-dates-custom-selected.png │ │ ├── single-set-mobile-dates-long-custom-selected.png │ │ ├── single-set-mobile-dates-long.png │ │ ├── single-set-mobile-dates.png │ │ ├── single-set-mobile-empty.png │ │ ├── single-set-mobile-introductory-text.png │ │ ├── single-set-mobile-multi-selection-all-selected.png │ │ ├── single-set-mobile-multi-selection-clamping.png │ │ ├── single-set-mobile-multi-selection-header-text-selected-first.png │ │ ├── single-set-mobile-multi-selection-header-text.png │ │ ├── single-set-mobile-multi-selection-no-search-select-all.png │ │ ├── single-set-mobile-multi-selection-no-search.png │ │ ├── single-set-mobile-multi-selection-selected-first.png │ │ ├── single-set-mobile-multi-selection.png │ │ ├── single-set-mobile-single-selection-select-all.png │ │ ├── single-set-mobile-single-selection.png │ │ ├── single-set-multi-selection-all-selected.png │ │ ├── single-set-multi-selection-clamping.png │ │ ├── single-set-multi-selection-header-text-selected-first.png │ │ ├── single-set-multi-selection-header-text.png │ │ ├── single-set-multi-selection-no-search-select-all.png │ │ ├── single-set-multi-selection-no-search.png │ │ ├── single-set-multi-selection-selected-first.png │ │ ├── single-set-multi-selection.png │ │ ├── single-set-press-select-all.png │ │ ├── single-set-press-unselect-all.png │ │ ├── single-set-rtl-dates-custom-selected.png │ │ ├── single-set-rtl-dates-long-custom-selected.png │ │ ├── single-set-rtl-dates-long.png │ │ ├── single-set-rtl-dates.png │ │ ├── single-set-rtl-empty.png │ │ ├── single-set-rtl-introductory-text.png │ │ ├── single-set-rtl-mobile-dates-custom-selected.png │ │ ├── single-set-rtl-mobile-dates-long-custom-selected.png │ │ ├── single-set-rtl-mobile-dates-long.png │ │ ├── single-set-rtl-mobile-dates.png │ │ ├── single-set-rtl-mobile-empty.png │ │ ├── single-set-rtl-mobile-introductory-text.png │ │ ├── single-set-rtl-mobile-multi-selection-all-selected.png │ │ ├── single-set-rtl-mobile-multi-selection-clamping.png │ │ ├── single-set-rtl-mobile-multi-selection-header-text-selected-first.png │ │ ├── single-set-rtl-mobile-multi-selection-header-text.png │ │ ├── single-set-rtl-mobile-multi-selection-no-search-select-all.png │ │ ├── single-set-rtl-mobile-multi-selection-no-search.png │ │ ├── single-set-rtl-mobile-multi-selection-selected-first.png │ │ ├── single-set-rtl-mobile-multi-selection.png │ │ ├── single-set-rtl-mobile-single-selection-select-all.png │ │ ├── single-set-rtl-mobile-single-selection.png │ │ ├── single-set-rtl-multi-selection-all-selected.png │ │ ├── single-set-rtl-multi-selection-clamping.png │ │ ├── single-set-rtl-multi-selection-header-text-selected-first.png │ │ ├── single-set-rtl-multi-selection-header-text.png │ │ ├── single-set-rtl-multi-selection-no-search-select-all.png │ │ ├── single-set-rtl-multi-selection-no-search.png │ │ ├── single-set-rtl-multi-selection-selected-first.png │ │ ├── single-set-rtl-multi-selection.png │ │ ├── single-set-rtl-single-selection-select-all.png │ │ ├── single-set-rtl-single-selection.png │ │ ├── single-set-searched-multi-selection-clamping.png │ │ ├── single-set-searched-multi-selection-header-text.png │ │ ├── single-set-searched-multi-selection-selected-first.png │ │ ├── single-set-searched-multi-selection.png │ │ ├── single-set-searched-search-then-clear.png │ │ ├── single-set-searched-single-selection-select-all.png │ │ ├── single-set-searched-single-selection.png │ │ ├── single-set-select-all-then-clear.png │ │ ├── single-set-select-all-with-selected-disabled-then-clear.png │ │ ├── single-set-single-selection-select-all.png │ │ └── single-set-single-selection.png ├── focus-trap │ ├── README.md │ ├── demo │ │ └── focus-trap.html │ ├── focus-trap.js │ └── test │ │ └── focus-trap.test.js ├── form │ ├── README.md │ ├── demo │ │ ├── form-demo.js │ │ ├── form-dialog-demo.js │ │ ├── form-panel-demo.js │ │ └── form.html │ ├── docs │ │ ├── form-element-mixin.md │ │ ├── form-element-nesting.md │ │ └── form-element-wrapping.md │ ├── form-element-localize-helper.js │ ├── form-element-mixin.js │ ├── form-error-summary.js │ ├── form-helper.js │ ├── form.js │ └── test │ │ ├── form-element-localize-helper.test.js │ │ ├── form-element.js │ │ ├── form-element.test.js │ │ ├── form-error-summary.test.js │ │ ├── form-error-summary.vdiff.js │ │ ├── form-helper.test.js │ │ ├── form.test.js │ │ ├── golden │ │ └── form-error-summary │ │ │ └── chromium │ │ │ ├── collapsed.png │ │ │ ├── expanded-multiple-errors.png │ │ │ ├── expanded-single-error.png │ │ │ └── no-errors.png │ │ └── nested-form.js ├── hierarchical-view │ ├── README.md │ ├── demo │ │ └── hierarchical-view.html │ ├── hierarchical-view-mixin.js │ ├── hierarchical-view.js │ └── test │ │ └── hierarchical-view.test.js ├── html-block │ ├── README.md │ ├── demo │ │ ├── html-block-code.html │ │ └── html-block.html │ ├── html-block.js │ └── test │ │ ├── golden │ │ └── html-block │ │ │ └── chromium │ │ │ ├── code-(block).png │ │ │ ├── code-(inline).png │ │ │ ├── compact.png │ │ │ ├── empty.png │ │ │ ├── inline-no-deferred-rendering.png │ │ │ ├── inline.png │ │ │ ├── large-font-size.png │ │ │ ├── math-(block)-and-code-(block).png │ │ │ ├── math-(block).png │ │ │ ├── math-(inline).png │ │ │ ├── overflowing.png │ │ │ ├── typography-print.png │ │ │ ├── typography-screen.png │ │ │ └── update-content.png │ │ ├── html-block.axe.js │ │ ├── html-block.test.js │ │ └── html-block.vdiff.js ├── icons │ ├── README.md │ ├── catalogue.md │ ├── demo │ │ ├── icon-color-override.js │ │ ├── icon-custom.html │ │ ├── icon-size-override.js │ │ └── icon.html │ ├── fix-svg.js │ ├── getFileIconType.js │ ├── icon-custom.js │ ├── icon-styles.js │ ├── icon.js │ ├── images │ │ ├── emoji │ │ │ ├── angry.svg │ │ │ ├── happy.svg │ │ │ ├── lol.svg │ │ │ ├── meh.svg │ │ │ ├── sad.svg │ │ │ └── shout.svg │ │ ├── html-editor │ │ │ ├── accessibility-check.svg │ │ │ ├── align-center.svg │ │ │ ├── align-full.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── bold.svg │ │ │ ├── cut.svg │ │ │ ├── direction-ltr.svg │ │ │ ├── direction-rtl.svg │ │ │ ├── equation-graphical-chemistry.svg │ │ │ ├── equation-graphical.svg │ │ │ ├── equation-latex.svg │ │ │ ├── equation-mathml.svg │ │ │ ├── h5p.svg │ │ │ ├── image.svg │ │ │ ├── indent-decrease.svg │ │ │ ├── indent-increase.svg │ │ │ ├── insert-attributes.svg │ │ │ ├── insert-emoticon.svg │ │ │ ├── italic.svg │ │ │ ├── link.svg │ │ │ ├── list-bullet.svg │ │ │ ├── list-ordered.svg │ │ │ ├── media.svg │ │ │ ├── new-line.svg │ │ │ ├── paste.svg │ │ │ ├── source-editor.svg │ │ │ ├── spellcheck.svg │ │ │ ├── strikethrough.svg │ │ │ ├── subscript.svg │ │ │ ├── superscript.svg │ │ │ ├── symbol.svg │ │ │ ├── table-cell-merge.svg │ │ │ ├── table-cell-properties.svg │ │ │ ├── table-cell-split.svg │ │ │ ├── table-column-insert-after.svg │ │ │ ├── table-column-insert-before.svg │ │ │ ├── table-column-remove.svg │ │ │ ├── table-delete.svg │ │ │ ├── table-properties.svg │ │ │ ├── table-row-copy.svg │ │ │ ├── table-row-cut.svg │ │ │ ├── table-row-insert-after.svg │ │ │ ├── table-row-insert-before.svg │ │ │ ├── table-row-paste-above.svg │ │ │ ├── table-row-paste-below.svg │ │ │ ├── table-row-properties.svg │ │ │ ├── table-row-remove.svg │ │ │ └── underline.svg │ │ ├── tier1 │ │ │ ├── accelerator.svg │ │ │ ├── access-special.svg │ │ │ ├── accessibility.svg │ │ │ ├── add-file.svg │ │ │ ├── add-message.svg │ │ │ ├── add-to-lor.svg │ │ │ ├── add-user.svg │ │ │ ├── add.svg │ │ │ ├── ai.svg │ │ │ ├── alarmbell.svg │ │ │ ├── alert.svg │ │ │ ├── arrow-collapse-small.svg │ │ │ ├── arrow-collapse.svg │ │ │ ├── arrow-expand-small.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-thin-down.svg │ │ │ ├── arrow-thin-left.svg │ │ │ ├── arrow-thin-right.svg │ │ │ ├── arrow-thin-up.svg │ │ │ ├── arrow-toggle-down.svg │ │ │ ├── arrow-toggle-up.svg │ │ │ ├── assignments.svg │ │ │ ├── attach.svg │ │ │ ├── attendance.svg │ │ │ ├── awards.svg │ │ │ ├── binder.svg │ │ │ ├── blocked.svg │ │ │ ├── blog.svg │ │ │ ├── book-management.svg │ │ │ ├── bookmark-filled.svg │ │ │ ├── bookmark-hollow.svg │ │ │ ├── broken-link.svg │ │ │ ├── browser.svg │ │ │ ├── bullet.svg │ │ │ ├── bullseye.svg │ │ │ ├── calculate.svg │ │ │ ├── calendar.svg │ │ │ ├── change-file.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-manual.svg │ │ │ ├── check-user.svg │ │ │ ├── check.svg │ │ │ ├── checklist.svg │ │ │ ├── chevron-down-medium.svg │ │ │ ├── chevron-down-small.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── class.svg │ │ │ ├── classlist.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-default.svg │ │ │ ├── close-large-thick.svg │ │ │ ├── close-large.svg │ │ │ ├── close-small.svg │ │ │ ├── comment-filled.svg │ │ │ ├── comment-hollow.svg │ │ │ ├── configure.svg │ │ │ ├── contacts.svg │ │ │ ├── copy.svg │ │ │ ├── course-tile-sort.svg │ │ │ ├── course.svg │ │ │ ├── coursebuilder.svg │ │ │ ├── delete.svg │ │ │ ├── disable.svg │ │ │ ├── discussions.svg │ │ │ ├── divider-solid.svg │ │ │ ├── dot.svg │ │ │ ├── download.svg │ │ │ ├── draft.svg │ │ │ ├── dragger.svg │ │ │ ├── edit-bulk.svg │ │ │ ├── edit.svg │ │ │ ├── email-read.svg │ │ │ ├── email.svg │ │ │ ├── enable.svg │ │ │ ├── enrollment.svg │ │ │ ├── eportfolio.svg │ │ │ ├── event-log.svg │ │ │ ├── exemption-add.svg │ │ │ ├── exemption-remove.svg │ │ │ ├── export.svg │ │ │ ├── external.svg │ │ │ ├── feed.svg │ │ │ ├── feedback.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-document.svg │ │ │ ├── file-image.svg │ │ │ ├── file-presentation.svg │ │ │ ├── file-video.svg │ │ │ ├── filter.svg │ │ │ ├── flag-filled.svg │ │ │ ├── flag-hollow.svg │ │ │ ├── folder-up-level.svg │ │ │ ├── folder.svg │ │ │ ├── forms.svg │ │ │ ├── forward.svg │ │ │ ├── fullscreen.svg │ │ │ ├── game.svg │ │ │ ├── gear.svg │ │ │ ├── glossary.svg │ │ │ ├── google-drive.svg │ │ │ ├── grabber-small.svg │ │ │ ├── grabber.svg │ │ │ ├── grade-remove.svg │ │ │ ├── grade-visible.svg │ │ │ ├── grade.svg │ │ │ ├── group-locker.svg │ │ │ ├── group.svg │ │ │ ├── help.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── import.svg │ │ │ ├── important.svg │ │ │ ├── insights-portal.svg │ │ │ ├── link.svg │ │ │ ├── list-view.svg │ │ │ ├── location.svg │ │ │ ├── locations.svg │ │ │ ├── lock-locked.svg │ │ │ ├── lock-unlock.svg │ │ │ ├── locker.svg │ │ │ ├── lor.svg │ │ │ ├── low-priority.svg │ │ │ ├── manage-dates-edit.svg │ │ │ ├── manage-dates-offset.svg │ │ │ ├── manage-dates.svg │ │ │ ├── manage-files.svg │ │ │ ├── manual-run.svg │ │ │ ├── menu-hamburger.svg │ │ │ ├── messages.svg │ │ │ ├── mic.svg │ │ │ ├── mobile.svg │ │ │ ├── more.svg │ │ │ ├── move-down.svg │ │ │ ├── move-to.svg │ │ │ ├── move-up.svg │ │ │ ├── my-computer.svg │ │ │ ├── navigate.svg │ │ │ ├── new-window.svg │ │ │ ├── news.svg │ │ │ ├── no-entry.svg │ │ │ ├── one-drive.svg │ │ │ ├── online-rooms.svg │ │ │ ├── online.svg │ │ │ ├── outcomes.svg │ │ │ ├── password.svg │ │ │ ├── pause.svg │ │ │ ├── pic.svg │ │ │ ├── pin-filled.svg │ │ │ ├── pin-hollow.svg │ │ │ ├── play.svg │ │ │ ├── plus-default.svg │ │ │ ├── plus-large-thick.svg │ │ │ ├── plus-large.svg │ │ │ ├── preview.svg │ │ │ ├── print.svg │ │ │ ├── profile-default.svg │ │ │ ├── profile-pic.svg │ │ │ ├── publish-to-lor.svg │ │ │ ├── quicklink.svg │ │ │ ├── quizzing.svg │ │ │ ├── read-unread.svg │ │ │ ├── read.svg │ │ │ ├── reading.svg │ │ │ ├── redo.svg │ │ │ ├── reflection.svg │ │ │ ├── refresh.svg │ │ │ ├── release-conditions.svg │ │ │ ├── remove-user.svg │ │ │ ├── reorder.svg │ │ │ ├── repeat.svg │ │ │ ├── replied.svg │ │ │ ├── reply.svg │ │ │ ├── reporting.svg │ │ │ ├── reports.svg │ │ │ ├── resize-left.svg │ │ │ ├── resize-right.svg │ │ │ ├── reverse-order.svg │ │ │ ├── role-switch.svg │ │ │ ├── rss.svg │ │ │ ├── rubric-graded.svg │ │ │ ├── rubric.svg │ │ │ ├── save.svg │ │ │ ├── scorm.svg │ │ │ ├── search.svg │ │ │ ├── seating.svg │ │ │ ├── self-assessment.svg │ │ │ ├── send.svg │ │ │ ├── share-hollow.svg │ │ │ ├── share-parent-filled.svg │ │ │ ├── share-parent-hollow.svg │ │ │ ├── share.svg │ │ │ ├── smallscreen.svg │ │ │ ├── sort-type.svg │ │ │ ├── spellcheck.svg │ │ │ ├── style.svg │ │ │ ├── subscribe-filled.svg │ │ │ ├── subscribe-hollow.svg │ │ │ ├── support.svg │ │ │ ├── surveys.svg │ │ │ ├── syllabus.svg │ │ │ ├── table-of-contents.svg │ │ │ ├── tag-hollow.svg │ │ │ ├── tag.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── tile-view.svg │ │ │ ├── time.svg │ │ │ ├── tools.svg │ │ │ ├── topic-last.svg │ │ │ ├── turnitin.svg │ │ │ ├── unapproved.svg │ │ │ ├── undo.svg │ │ │ ├── unsaved.svg │ │ │ ├── upload.svg │ │ │ ├── user-competencies.svg │ │ │ ├── user-progress.svg │ │ │ ├── video-assignment.svg │ │ │ ├── virtual-classroom.svg │ │ │ ├── visibility-conditional.svg │ │ │ ├── visibility-hide.svg │ │ │ ├── visibility-show.svg │ │ │ ├── volume-muted.svg │ │ │ ├── volume.svg │ │ │ ├── widgets.svg │ │ │ ├── wizard.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ ├── tier2 │ │ │ ├── accelerator.svg │ │ │ ├── accessibility.svg │ │ │ ├── add-file.svg │ │ │ ├── add-message.svg │ │ │ ├── add-to-lor.svg │ │ │ ├── add-user.svg │ │ │ ├── add.svg │ │ │ ├── ai.svg │ │ │ ├── alarmbell.svg │ │ │ ├── alert.svg │ │ │ ├── arrow-collapse.svg │ │ │ ├── assignments.svg │ │ │ ├── attach.svg │ │ │ ├── attendance.svg │ │ │ ├── awards.svg │ │ │ ├── binder.svg │ │ │ ├── blocked.svg │ │ │ ├── blog.svg │ │ │ ├── book-management.svg │ │ │ ├── bookmark-filled.svg │ │ │ ├── bookmark-hollow.svg │ │ │ ├── broken-link.svg │ │ │ ├── browser.svg │ │ │ ├── bullseye.svg │ │ │ ├── calculate.svg │ │ │ ├── calendar.svg │ │ │ ├── capture.svg │ │ │ ├── change-file.svg │ │ │ ├── chat.svg │ │ │ ├── check-box-unchecked.svg │ │ │ ├── check-box.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── checklist.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── classes.svg │ │ │ ├── classlist.svg │ │ │ ├── contacts.svg │ │ │ ├── content.svg │ │ │ ├── copy.svg │ │ │ ├── course-tile-sort.svg │ │ │ ├── coursebuilder.svg │ │ │ ├── delete.svg │ │ │ ├── discussions.svg │ │ │ ├── divider-big.svg │ │ │ ├── divider.svg │ │ │ ├── dot.svg │ │ │ ├── download.svg │ │ │ ├── draft.svg │ │ │ ├── edit-not-editable.svg │ │ │ ├── edit.svg │ │ │ ├── email-open.svg │ │ │ ├── email.svg │ │ │ ├── eportfolio.svg │ │ │ ├── evaluate-all.svg │ │ │ ├── external.svg │ │ │ ├── feedback.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-document.svg │ │ │ ├── file-image.svg │ │ │ ├── file-presentation.svg │ │ │ ├── file-video.svg │ │ │ ├── filter.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag-hollow.svg │ │ │ ├── folder.svg │ │ │ ├── forms.svg │ │ │ ├── fullscreen.svg │ │ │ ├── game.svg │ │ │ ├── gear.svg │ │ │ ├── glossary.svg │ │ │ ├── google-drive.svg │ │ │ ├── grade.svg │ │ │ ├── help.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── insights-portal.svg │ │ │ ├── link.svg │ │ │ ├── location.svg │ │ │ ├── locations.svg │ │ │ ├── lock-unlocked.svg │ │ │ ├── lock.svg │ │ │ ├── locker.svg │ │ │ ├── lor.svg │ │ │ ├── manage-dates.svg │ │ │ ├── manage-files.svg │ │ │ ├── media.svg │ │ │ ├── menu-hamburger.svg │ │ │ ├── merge.svg │ │ │ ├── message-new.svg │ │ │ ├── messages.svg │ │ │ ├── mic.svg │ │ │ ├── module.svg │ │ │ ├── move-down.svg │ │ │ ├── move-to.svg │ │ │ ├── move-up.svg │ │ │ ├── navigate.svg │ │ │ ├── news.svg │ │ │ ├── one-drive.svg │ │ │ ├── online-rooms.svg │ │ │ ├── online.svg │ │ │ ├── outcomes.svg │ │ │ ├── password.svg │ │ │ ├── pic.svg │ │ │ ├── pin-filled.svg │ │ │ ├── pin-hollow.svg │ │ │ ├── preview.svg │ │ │ ├── print.svg │ │ │ ├── profile-default.svg │ │ │ ├── profile-pic.svg │ │ │ ├── project.svg │ │ │ ├── publish-all.svg │ │ │ ├── publish-to-lor.svg │ │ │ ├── quicklink.svg │ │ │ ├── quiz-submissions.svg │ │ │ ├── quizzing.svg │ │ │ ├── read-unread.svg │ │ │ ├── read.svg │ │ │ ├── reading.svg │ │ │ ├── reflection.svg │ │ │ ├── refresh.svg │ │ │ ├── release-conditions.svg │ │ │ ├── remove-user.svg │ │ │ ├── reorder.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── reporting.svg │ │ │ ├── rss.svg │ │ │ ├── rubrics.svg │ │ │ ├── save.svg │ │ │ ├── scorm.svg │ │ │ ├── search.svg │ │ │ ├── seating.svg │ │ │ ├── self-assessment.svg │ │ │ ├── send.svg │ │ │ ├── share.svg │ │ │ ├── smallscreen.svg │ │ │ ├── style.svg │ │ │ ├── subscribe-filled.svg │ │ │ ├── subscribe-hollow.svg │ │ │ ├── surveys.svg │ │ │ ├── syllabus.svg │ │ │ ├── table-of-contents.svg │ │ │ ├── tag.svg │ │ │ ├── time.svg │ │ │ ├── tools.svg │ │ │ ├── topic-last.svg │ │ │ ├── unapproved.svg │ │ │ ├── undo.svg │ │ │ ├── unsaved.svg │ │ │ ├── upload.svg │ │ │ ├── user-competencies.svg │ │ │ ├── user-progress.svg │ │ │ ├── validate.svg │ │ │ ├── video-assignment.svg │ │ │ ├── view-submission-list.svg │ │ │ ├── viewed-notviewed.svg │ │ │ ├── virtual-classroom.svg │ │ │ ├── visibility-hide.svg │ │ │ ├── visibility-show.svg │ │ │ ├── volume-muted.svg │ │ │ ├── volume.svg │ │ │ └── wizard.svg │ │ └── tier3 │ │ │ ├── accessibility.svg │ │ │ ├── ai.svg │ │ │ ├── alert.svg │ │ │ ├── assignments.svg │ │ │ ├── bookmark.svg │ │ │ ├── bullseye.svg │ │ │ ├── calendar.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left-circle.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right-circle.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── classes.svg │ │ │ ├── close-thick.svg │ │ │ ├── close.svg │ │ │ ├── copy.svg │ │ │ ├── course-progress-complete.svg │ │ │ ├── course-progress-in-progress.svg │ │ │ ├── course-progress-not-started.svg │ │ │ ├── discussions.svg │ │ │ ├── download.svg │ │ │ ├── email-open.svg │ │ │ ├── email.svg │ │ │ ├── evaluate-all.svg │ │ │ ├── export.svg │ │ │ ├── external.svg │ │ │ ├── feed.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-document.svg │ │ │ ├── file-presentation.svg │ │ │ ├── file-video.svg │ │ │ ├── game.svg │ │ │ ├── gear.svg │ │ │ ├── google-drive.svg │ │ │ ├── grade.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── image.svg │ │ │ ├── import.svg │ │ │ ├── lock-unlocked.svg │ │ │ ├── lock.svg │ │ │ ├── menu-hamburger.svg │ │ │ ├── menu.svg │ │ │ ├── news.svg │ │ │ ├── notification-bell.svg │ │ │ ├── pause-borderless.svg │ │ │ ├── pause.svg │ │ │ ├── pic.svg │ │ │ ├── play-borderless.svg │ │ │ ├── play.svg │ │ │ ├── preview.svg │ │ │ ├── profile-default.svg │ │ │ ├── profile-pic.svg │ │ │ ├── publish-all.svg │ │ │ ├── quizzing.svg │ │ │ ├── rubric-graded.svg │ │ │ ├── rubric.svg │ │ │ ├── scorm.svg │ │ │ ├── search.svg │ │ │ ├── stop-borderless.svg │ │ │ ├── stop.svg │ │ │ ├── syllabus.svg │ │ │ ├── upload.svg │ │ │ └── view-submission-list.svg │ ├── slotted-icon-mixin.js │ └── test │ │ ├── getFileIconType.test.js │ │ ├── golden │ │ ├── icon-custom │ │ │ └── chromium │ │ │ │ ├── color-override.png │ │ │ │ ├── fill-circle.png │ │ │ │ ├── fill-mixed.png │ │ │ │ ├── fill-none.png │ │ │ │ ├── rtl-tier1.png │ │ │ │ ├── rtl-tier2.png │ │ │ │ ├── rtl-tier3.png │ │ │ │ ├── size-override.png │ │ │ │ ├── tier1.png │ │ │ │ ├── tier2.png │ │ │ │ └── tier3.png │ │ └── icon │ │ │ └── chromium │ │ │ ├── color-override.png │ │ │ ├── fill-circle.png │ │ │ ├── fill-mixed.png │ │ │ ├── fill-none.png │ │ │ ├── prefixed.png │ │ │ ├── rtl-tier1.png │ │ │ ├── rtl-tier2.png │ │ │ ├── rtl-tier3.png │ │ │ ├── size-override.png │ │ │ ├── tier1.png │ │ │ ├── tier2.png │ │ │ └── tier3.png │ │ ├── icon-custom.test.js │ │ ├── icon-custom.vdiff.js │ │ ├── icon.test.js │ │ ├── icon.vdiff.js │ │ └── slotted-icon-mixin.test.js ├── inputs │ ├── README.md │ ├── demo │ │ ├── input-checkbox.html │ │ ├── input-color-palette.js │ │ ├── input-color.html │ │ ├── input-date-range.html │ │ ├── input-date-time-range.html │ │ ├── input-date-time.html │ │ ├── input-date.html │ │ ├── input-group.html │ │ ├── input-number.html │ │ ├── input-percent.html │ │ ├── input-radio-label-test.js │ │ ├── input-radio-solo-test.js │ │ ├── input-radio.html │ │ ├── input-search.html │ │ ├── input-select-test.js │ │ ├── input-select.html │ │ ├── input-text.html │ │ ├── input-textarea.html │ │ ├── input-time-range.html │ │ └── input-time.html │ ├── docs │ │ ├── form-layout-validation.md │ │ ├── input-checkbox.md │ │ ├── input-color.md │ │ ├── input-date-time.md │ │ ├── input-numeric.md │ │ ├── input-radio.md │ │ ├── input-search.md │ │ ├── input-select-styles.md │ │ ├── input-text.md │ │ └── styling-native-inputs.md │ ├── input-checkbox-group.js │ ├── input-checkbox.js │ ├── input-color.js │ ├── input-date-range.js │ ├── input-date-time-range-to.js │ ├── input-date-time-range.js │ ├── input-date-time.js │ ├── input-date.js │ ├── input-fieldset.js │ ├── input-group.js │ ├── input-inline-help.js │ ├── input-label-styles.js │ ├── input-number.js │ ├── input-percent.js │ ├── input-radio-group.js │ ├── input-radio-spacer.js │ ├── input-radio-styles.js │ ├── input-radio.js │ ├── input-search.js │ ├── input-select-styles.js │ ├── input-styles.js │ ├── input-text.js │ ├── input-textarea.js │ ├── input-time-range.js │ ├── input-time.js │ ├── sass │ │ ├── checkbox.scss │ │ ├── label.scss │ │ ├── radio.scss │ │ ├── select.scss │ │ ├── text.scss │ │ └── textarea.scss │ └── test │ │ ├── golden │ │ ├── input-checkbox-group │ │ │ └── chromium │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── labelled.png │ │ ├── input-checkbox │ │ │ └── chromium │ │ │ │ ├── aria-label-rtl.png │ │ │ │ ├── aria-label.png │ │ │ │ ├── default-checked-focus.png │ │ │ │ ├── default-checked.png │ │ │ │ ├── default-indeterminate-focus.png │ │ │ │ ├── default-indeterminate.png │ │ │ │ ├── default-unchecked-focus.png │ │ │ │ ├── default-unchecked.png │ │ │ │ ├── disabled-checked.png │ │ │ │ ├── disabled-indeterminate.png │ │ │ │ ├── disabled-tooltip-focus.png │ │ │ │ ├── disabled-tooltip-hover.png │ │ │ │ ├── disabled-unchecked.png │ │ │ │ ├── hidden-label-rtl.png │ │ │ │ ├── hidden-label.png │ │ │ │ ├── inline-help-disabled-rtl.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline-rtl.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-rtl.png │ │ │ │ ├── inline-help-skeleton-multiline-rtl.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton-rtl.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── multiline-rtl.png │ │ │ │ ├── multiline-unbreakable-rtl.png │ │ │ │ ├── multiline-unbreakable.png │ │ │ │ ├── multiline.png │ │ │ │ ├── sass-default-checked-focus.png │ │ │ │ ├── sass-default-checked.png │ │ │ │ ├── sass-default-unchecked-focus.png │ │ │ │ ├── sass-default-unchecked.png │ │ │ │ ├── sass-disabled-checked.png │ │ │ │ ├── sass-disabled-unchecked.png │ │ │ │ ├── skeleton-default-checked-focus.png │ │ │ │ ├── skeleton-default-checked.png │ │ │ │ ├── skeleton-default-unchecked-focus.png │ │ │ │ ├── skeleton-default-unchecked.png │ │ │ │ ├── skeleton-disabled-checked.png │ │ │ │ ├── skeleton-disabled-unchecked.png │ │ │ │ ├── supporting-rtl.png │ │ │ │ └── supporting.png │ │ ├── input-color │ │ │ └── chromium │ │ │ │ ├── background-disabled-focus.png │ │ │ │ ├── background-disabled.png │ │ │ │ ├── background-focus.png │ │ │ │ ├── background-none-focus.png │ │ │ │ ├── background-none.png │ │ │ │ ├── background-readonly-focus.png │ │ │ │ ├── background-readonly.png │ │ │ │ ├── background.png │ │ │ │ ├── custom-disabled-focus.png │ │ │ │ ├── custom-disabled.png │ │ │ │ ├── custom-focus.png │ │ │ │ ├── custom-none-focus.png │ │ │ │ ├── custom-none.png │ │ │ │ ├── custom-readonly-focus.png │ │ │ │ ├── custom-readonly.png │ │ │ │ ├── custom.png │ │ │ │ ├── foreground-disabled-focus.png │ │ │ │ ├── foreground-disabled.png │ │ │ │ ├── foreground-focus.png │ │ │ │ ├── foreground-none-focus.png │ │ │ │ ├── foreground-none.png │ │ │ │ ├── foreground-readonly-focus.png │ │ │ │ ├── foreground-readonly.png │ │ │ │ ├── foreground.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── label-hidden-focus.png │ │ │ │ └── label-hidden.png │ │ ├── input-date-range │ │ │ └── chromium │ │ │ │ ├── basic-focus.png │ │ │ │ ├── basic-wrapped.png │ │ │ │ ├── basic.png │ │ │ │ ├── disabled.png │ │ │ │ ├── hidden-labels-skeleton.png │ │ │ │ ├── hidden-labels-wrapped-skeleton.png │ │ │ │ ├── hidden-labels-wrapped.png │ │ │ │ ├── hidden-labels.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-start-value.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── labelled-skeleton.png │ │ │ │ ├── labelled.png │ │ │ │ ├── opened-behavior-end-opened.png │ │ │ │ ├── opened-behavior-intially-start-opened.png │ │ │ │ ├── required-focus-then-blur-then-fix.png │ │ │ │ ├── required-focus-then-blur.png │ │ │ │ ├── required.png │ │ │ │ ├── start-end-label.png │ │ │ │ ├── start-end-value.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-after-max-and-start-after-end-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-after-max-and-start-after-end-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-valid-and-start-after-end-and-after-max-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-valid-and-start-after-end-and-after-max-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-before-min-and-end-before-start-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-before-min-and-end-before-start-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-valid-and-end-before-start-and-before-min-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-valid-and-end-before-start-and-before-min-focus-start.png │ │ │ │ ├── validation-bad-input-function-open.png │ │ │ │ ├── validation-bad-input-start-after-end-basic.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-start.png │ │ │ │ ├── validation-bad-input-start-equals-end-basic.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-start.png │ │ │ │ ├── validation-outside-range-end-after-max-basic.png │ │ │ │ ├── validation-outside-range-end-after-max-focus-end.png │ │ │ │ ├── validation-outside-range-end-after-max-focus-start.png │ │ │ │ ├── validation-outside-range-start-before-min-basic.png │ │ │ │ ├── validation-outside-range-start-before-min-focus-end.png │ │ │ │ ├── validation-outside-range-start-before-min-focus-start.png │ │ │ │ ├── validation-start-changes-when-auto-shift-dates.png │ │ │ │ ├── validation-start-equals-end-when-inclusive.png │ │ │ │ ├── width-change-resizes-correctly-when-width-decreased.png │ │ │ │ ├── width-change-resizes-correctly-when-width-increased.png │ │ │ │ ├── within-custom-elem-is-correct-at-default-width.png │ │ │ │ └── within-custom-elem-is-correct-at-small-width.png │ │ ├── input-date-time-range │ │ │ └── chromium │ │ │ │ ├── basic-focus.png │ │ │ │ ├── basic.png │ │ │ │ ├── disabled.png │ │ │ │ ├── hidden-labels-values-skeleton.png │ │ │ │ ├── hidden-labels-values.png │ │ │ │ ├── hidden-labels.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-start-value.png │ │ │ │ ├── is-correct-when-wrapped-in-a-grid.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── labelled-skeleton.png │ │ │ │ ├── labelled.png │ │ │ │ ├── localized.png │ │ │ │ ├── opened-behavior-end-opened.png │ │ │ │ ├── opened-behavior-intially-start-opened.png │ │ │ │ ├── required.png │ │ │ │ ├── slotted-content.png │ │ │ │ ├── start-end-label.png │ │ │ │ ├── start-end-value.png │ │ │ │ ├── start-value.png │ │ │ │ ├── validation-auto-shift-dates-localized-change-start-date-when-dates-same.png │ │ │ │ ├── validation-auto-shift-dates-localized-change-start-date.png │ │ │ │ ├── validation-auto-shift-dates-localized-change-start-time-to-cause-max-value-to-be-reached.png │ │ │ │ ├── validation-auto-shift-dates-localized-change-start-time.png │ │ │ │ ├── validation-auto-shift-dates-not-localized-change-start-date-when-dates-same.png │ │ │ │ ├── validation-auto-shift-dates-not-localized-change-start-date.png │ │ │ │ ├── validation-auto-shift-dates-not-localized-change-start-time-to-cause-max-value-to-be-reached.png │ │ │ │ ├── validation-auto-shift-dates-not-localized-change-start-time.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-after-max-and-start-after-end-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-after-max-and-start-after-end-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-valid-and-start-after-end-and-after-max-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-end-valid-and-start-after-end-and-after-max-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-before-min-and-end-before-start-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-before-min-and-end-before-start-focus-start.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-valid-and-end-before-start-and-before-min-focus-end.png │ │ │ │ ├── validation-bad-input-and-outside-range-start-valid-and-end-before-start-and-before-min-focus-start.png │ │ │ │ ├── validation-bad-input-function-open.png │ │ │ │ ├── validation-bad-input-start-after-end-basic.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-start.png │ │ │ │ ├── validation-bad-input-start-equals-end-basic.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-start.png │ │ │ │ ├── validation-outside-range-end-after-max-basic.png │ │ │ │ ├── validation-outside-range-end-after-max-focus-end.png │ │ │ │ ├── validation-outside-range-end-after-max-focus-start.png │ │ │ │ ├── validation-outside-range-start-before-min-basic.png │ │ │ │ ├── validation-outside-range-start-before-min-focus-end.png │ │ │ │ ├── validation-outside-range-start-before-min-focus-start.png │ │ │ │ ├── validation-start-equals-end-when-inclusive.png │ │ │ │ ├── wide-basic.png │ │ │ │ ├── wide-hidden-labels-values-skeleton.png │ │ │ │ ├── wide-hidden-labels-values.png │ │ │ │ ├── wide-start-end-value.png │ │ │ │ ├── width-change-resizes-correctly-when-width-decreased-further.png │ │ │ │ ├── width-change-resizes-correctly-when-width-decreased.png │ │ │ │ ├── width-change-resizes-correctly-when-width-increased.png │ │ │ │ ├── within-custom-elem-is-correct-at-default-width.png │ │ │ │ └── within-custom-elem-is-correct-at-small-width.png │ │ ├── input-date-time │ │ │ └── chromium │ │ │ │ ├── basic-focus.png │ │ │ │ ├── basic.png │ │ │ │ ├── disabled.png │ │ │ │ ├── functionality-change-date-localized.png │ │ │ │ ├── functionality-change-date.png │ │ │ │ ├── functionality-change-time-localized.png │ │ │ │ ├── functionality-clear-date.png │ │ │ │ ├── functionality-select-date-after-clear.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-value.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── labelled-skeleton.png │ │ │ │ ├── labelled.png │ │ │ │ ├── localized.png │ │ │ │ ├── no-value.png │ │ │ │ ├── open-behavior-open-date.png │ │ │ │ ├── open-behavior-open-time.png │ │ │ │ ├── opened-behavior-intially-opened.png │ │ │ │ ├── opened-behavior-opened-disabled-remove-disabled.png │ │ │ │ ├── opened-behavior-opened-disabled.png │ │ │ │ ├── opened-behavior-opened-skeleton-remove-skeleton.png │ │ │ │ ├── opened-behavior-opened-skeleton.png │ │ │ │ ├── opened-behavior-opened-with-time.png │ │ │ │ ├── outside-range-date-after-max-basic.png │ │ │ │ ├── outside-range-date-after-max-focus-date.png │ │ │ │ ├── outside-range-date-after-max-focus-time.png │ │ │ │ ├── outside-range-date-before-min-basic.png │ │ │ │ ├── outside-range-date-before-min-focus-date.png │ │ │ │ ├── outside-range-date-before-min-focus-time.png │ │ │ │ ├── outside-range-time-after-max-basic.png │ │ │ │ ├── outside-range-time-after-max-focus-date.png │ │ │ │ ├── outside-range-time-after-max-focus-time.png │ │ │ │ ├── outside-range-time-before-min-basic.png │ │ │ │ ├── outside-range-time-before-min-focus-date.png │ │ │ │ ├── outside-range-time-before-min-focus-time.png │ │ │ │ ├── required-focus-then-blur-then-fix.png │ │ │ │ ├── required-focus-then-blur.png │ │ │ │ ├── required.png │ │ │ │ └── width-change-resizes-correctly-when-width-decreased.png │ │ ├── input-date │ │ │ └── chromium │ │ │ │ ├── calendar-dropdown-disabled-does-not-open.png │ │ │ │ ├── calendar-dropdown-required-click-then-click-away.png │ │ │ │ ├── calendar-dropdown-required-min-max-revert-delete-text-input-then-blur-then-re-focus.png │ │ │ │ ├── calendar-dropdown-required-min-max-revert-delete-text-input-then-blur.png │ │ │ │ ├── calendar-dropdown-required-open-required-with-enter-after-empty-text-input.png │ │ │ │ ├── calendar-dropdown-required-open-then-close-then-open.png │ │ │ │ ├── calendar-dropdown-required-open-then-close.png │ │ │ │ ├── calendar-dropdown-required-required-focus-then-blur-then-fix.png │ │ │ │ ├── calendar-dropdown-required-required-focus-then-blur.png │ │ │ │ ├── calendar-dropdown-required-revert-delete-text-input-then-blur-then-re-focus-then-blur.png │ │ │ │ ├── calendar-dropdown-required-revert-delete-text-input-then-blur-then-re-focus.png │ │ │ │ ├── calendar-dropdown-required-revert-delete-text-input-then-blur.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-open-with-enter.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-open.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-focus.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-after-max-left-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-after-max-right-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-after-max-same-month-as-max-left-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-after-max-same-month-as-max-right-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-before-min-left-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-before-min-right-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-before-min-same-year-left-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-on-key-interaction-value-before-min-same-year-right-arrow.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-open-then-tab.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-open-with-enter.png │ │ │ │ ├── calendar-dropdown-with-min-and-max-out-of-range-date-typed-behavior-open.png │ │ │ │ ├── calendar-dropdown-with-value-clear.png │ │ │ │ ├── calendar-dropdown-with-value-click-date.png │ │ │ │ ├── calendar-dropdown-with-value-open-then-close.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-click-after-empty-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-click-after-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-down-arrow-after-empty-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-down-arrow-after-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-enter-after-empty-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open-with-enter-after-text-input.png │ │ │ │ ├── calendar-dropdown-with-value-open.png │ │ │ │ ├── calendar-dropdown-with-value-opens-then-changes-month-then-closes-then-reopens.png │ │ │ │ ├── calendar-dropdown-with-value-set-to-today.png │ │ │ │ ├── calendar-dropdown-with-value-tab-on-open.png │ │ │ │ ├── defects-de53025.png │ │ │ │ ├── disabled.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── label.png │ │ │ │ ├── localization-ar-empty.png │ │ │ │ ├── localization-ar-value.png │ │ │ │ ├── localization-da-empty.png │ │ │ │ ├── localization-da-value.png │ │ │ │ ├── localization-de-empty.png │ │ │ │ ├── localization-de-value.png │ │ │ │ ├── localization-en-empty.png │ │ │ │ ├── localization-en-value.png │ │ │ │ ├── localization-es-empty.png │ │ │ │ ├── localization-es-value.png │ │ │ │ ├── localization-fr-empty.png │ │ │ │ ├── localization-fr-value.png │ │ │ │ ├── localization-ja-empty.png │ │ │ │ ├── localization-ja-value.png │ │ │ │ ├── localization-ko-empty.png │ │ │ │ ├── localization-ko-value.png │ │ │ │ ├── localization-nl-empty.png │ │ │ │ ├── localization-nl-value.png │ │ │ │ ├── localization-pt-empty.png │ │ │ │ ├── localization-pt-value.png │ │ │ │ ├── localization-sv-empty.png │ │ │ │ ├── localization-sv-value.png │ │ │ │ ├── localization-tr-empty.png │ │ │ │ ├── localization-tr-value.png │ │ │ │ ├── localization-zh-empty.png │ │ │ │ ├── localization-zh-tw-empty.png │ │ │ │ ├── localization-zh-tw-value.png │ │ │ │ ├── localization-zh-value.png │ │ │ │ ├── mobile-open-min-max.png │ │ │ │ ├── mobile-open-placeholder.png │ │ │ │ ├── mobile-open-value.png │ │ │ │ ├── opened-behavior-intially-opened.png │ │ │ │ ├── opened-behavior-opened-disabled-remove-disabled.png │ │ │ │ ├── opened-behavior-opened-disabled.png │ │ │ │ ├── opened-behavior-opened-skeleton-remove-skeleton.png │ │ │ │ ├── opened-behavior-opened-skeleton.png │ │ │ │ ├── placeholder.png │ │ │ │ ├── required.png │ │ │ │ ├── skeleton-label-hidden.png │ │ │ │ ├── skeleton-label.png │ │ │ │ ├── value-focus.png │ │ │ │ └── value.png │ │ ├── input-fieldset │ │ │ └── chromium │ │ │ │ ├── fieldset-label-hidden-style-heading.png │ │ │ │ ├── fieldset-label-hidden.png │ │ │ │ ├── fieldset-label-style-heading.png │ │ │ │ ├── fieldset-manual-required.png │ │ │ │ ├── fieldset-manual.png │ │ │ │ ├── fieldset-required.png │ │ │ │ └── fieldset.png │ │ ├── input-group │ │ │ └── chromium │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── form.png │ │ ├── input-label │ │ │ └── chromium │ │ │ │ ├── ref-required.png │ │ │ │ ├── ref.png │ │ │ │ ├── sass-ref-required.png │ │ │ │ ├── sass-ref.png │ │ │ │ ├── sass-wrap-required.png │ │ │ │ ├── sass-wrap.png │ │ │ │ ├── wrap-required.png │ │ │ │ └── wrap.png │ │ ├── input-number │ │ │ └── chromium │ │ │ │ ├── after-slot.png │ │ │ │ ├── default-value.png │ │ │ │ ├── disabled.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-focus-then-fix-then-blur.png │ │ │ │ ├── invalid-focus-when-required-with-initial-invalid-value.png │ │ │ │ ├── invalid-focus.png │ │ │ │ ├── invalid-no-focus.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── percentage-input-width-after-slot.png │ │ │ │ ├── percentage-input-width.png │ │ │ │ ├── required.png │ │ │ │ ├── right-side-tooltip-with-percentage-input-width.png │ │ │ │ ├── right-side-tooltip.png │ │ │ │ ├── simple-focus.png │ │ │ │ ├── simple.png │ │ │ │ ├── skeleton-after-slot.png │ │ │ │ ├── skeleton-custom-width.png │ │ │ │ ├── skeleton-disabled.png │ │ │ │ ├── skeleton-label-hidden.png │ │ │ │ ├── skeleton-required.png │ │ │ │ ├── skeleton-simple.png │ │ │ │ └── trailing-zeroes.png │ │ ├── input-percent │ │ │ └── chromium │ │ │ │ ├── after-slot-skeleton.png │ │ │ │ ├── after-slot.png │ │ │ │ ├── custom-width-skeleton.png │ │ │ │ ├── default-value.png │ │ │ │ ├── disabled-skeleton.png │ │ │ │ ├── disabled.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-focus-then-fix-then-blur.png │ │ │ │ ├── invalid-focus.png │ │ │ │ ├── invalid-no-focus.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── required-skeleton.png │ │ │ │ ├── required.png │ │ │ │ ├── simple-focus.png │ │ │ │ ├── simple-skeleton.png │ │ │ │ └── simple.png │ │ ├── input-radio │ │ │ └── chromium │ │ │ │ ├── disabled-tooltip-focus.png │ │ │ │ ├── disabled-tooltip-hover.png │ │ │ │ ├── disabled-tooltip.png │ │ │ │ ├── disabled.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── label-rtl.png │ │ │ │ ├── label.png │ │ │ │ ├── labelled-focus.png │ │ │ │ ├── labelled.png │ │ │ │ ├── required-invalid.png │ │ │ │ ├── required.png │ │ │ │ ├── sass-default-checked-focus.png │ │ │ │ ├── sass-default-checked.png │ │ │ │ ├── sass-default-unchecked-focus.png │ │ │ │ ├── sass-default-unchecked.png │ │ │ │ ├── sass-disabled-checked.png │ │ │ │ ├── sass-disabled-unchecked.png │ │ │ │ ├── sass-invalid-checked-focus.png │ │ │ │ ├── sass-invalid-checked.png │ │ │ │ ├── sass-invalid-unchecked-focus.png │ │ │ │ ├── sass-invalid-unchecked.png │ │ │ │ ├── skeleton.png │ │ │ │ ├── solo-default-checked-focus.png │ │ │ │ ├── solo-default-checked.png │ │ │ │ ├── solo-default-unchecked-focus.png │ │ │ │ ├── solo-default-unchecked.png │ │ │ │ ├── solo-disabled-checked.png │ │ │ │ ├── solo-disabled-unchecked.png │ │ │ │ ├── solo-invalid-checked-focus.png │ │ │ │ ├── solo-invalid-checked.png │ │ │ │ ├── solo-invalid-unchecked-focus.png │ │ │ │ ├── solo-invalid-unchecked.png │ │ │ │ ├── supporting-hidden.png │ │ │ │ └── supporting.png │ │ ├── input-search │ │ │ └── chromium │ │ │ │ ├── disabled.png │ │ │ │ ├── flexbox.png │ │ │ │ ├── focus-clear-button.png │ │ │ │ ├── focus-input.png │ │ │ │ ├── focus-search-button.png │ │ │ │ ├── has-value.png │ │ │ │ ├── hover-clear-button.png │ │ │ │ ├── hover-search-button.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── no-clear.png │ │ │ │ ├── no-value.png │ │ │ │ ├── padding.png │ │ │ │ ├── placeholder-disabled.png │ │ │ │ └── placeholder.png │ │ ├── input-select │ │ │ └── chromium │ │ │ │ ├── default-focus.png │ │ │ │ ├── default.png │ │ │ │ ├── disabled.png │ │ │ │ ├── invalid-focus.png │ │ │ │ ├── invalid.png │ │ │ │ ├── overflow-focus.png │ │ │ │ ├── overflow.png │ │ │ │ ├── rtl-focus.png │ │ │ │ ├── rtl-invalid-focus.png │ │ │ │ ├── rtl-invalid.png │ │ │ │ ├── rtl-overflow-focus.png │ │ │ │ ├── rtl-overflow.png │ │ │ │ ├── rtl.png │ │ │ │ ├── sass-default-focus.png │ │ │ │ ├── sass-default.png │ │ │ │ ├── sass-disabled.png │ │ │ │ ├── sass-invalid-focus.png │ │ │ │ ├── sass-invalid.png │ │ │ │ ├── sass-overflow-focus.png │ │ │ │ ├── sass-overflow.png │ │ │ │ ├── sass-rtl-focus.png │ │ │ │ ├── sass-rtl-invalid-focus.png │ │ │ │ ├── sass-rtl-invalid.png │ │ │ │ ├── sass-rtl-overflow-focus.png │ │ │ │ ├── sass-rtl-overflow.png │ │ │ │ ├── sass-rtl.png │ │ │ │ └── skeleton.png │ │ ├── input-text │ │ │ └── chromium │ │ │ │ ├── aria-invalid-disabled.png │ │ │ │ ├── aria-invalid-focus.png │ │ │ │ ├── aria-invalid.png │ │ │ │ ├── basic-focus.png │ │ │ │ ├── basic.png │ │ │ │ ├── button-icon-left.png │ │ │ │ ├── button-icon-right.png │ │ │ │ ├── custom-width-hover-empty.png │ │ │ │ ├── custom-width-hover-input.png │ │ │ │ ├── custom-width-hover-label.png │ │ │ │ ├── custom-width-skeleton.png │ │ │ │ ├── disabled.png │ │ │ │ ├── email.png │ │ │ │ ├── icon-left-label.png │ │ │ │ ├── icon-left-right.png │ │ │ │ ├── icon-left-rtl.png │ │ │ │ ├── icon-left.png │ │ │ │ ├── icon-right-invalid-focus.png │ │ │ │ ├── icon-right-invalid-rtl-focus.png │ │ │ │ ├── icon-right-invalid-rtl.png │ │ │ │ ├── icon-right-invalid.png │ │ │ │ ├── icon-right-label.png │ │ │ │ ├── icon-right-rtl.png │ │ │ │ ├── icon-right.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-rtl.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-disabled.png │ │ │ │ ├── invalid-focus.png │ │ │ │ ├── invalid.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── labelled-focus.png │ │ │ │ ├── labelled-skeleton.png │ │ │ │ ├── labelled.png │ │ │ │ ├── number.png │ │ │ │ ├── overflowing.png │ │ │ │ ├── override-height.png │ │ │ │ ├── override-padding.png │ │ │ │ ├── override-text-align.png │ │ │ │ ├── password.png │ │ │ │ ├── placeholder-disabled.png │ │ │ │ ├── placeholder.png │ │ │ │ ├── required-skeleton.png │ │ │ │ ├── required.png │ │ │ │ ├── sass-aria-invalid-disabled.png │ │ │ │ ├── sass-aria-invalid-focus.png │ │ │ │ ├── sass-aria-invalid.png │ │ │ │ ├── sass-basic-focus.png │ │ │ │ ├── sass-basic.png │ │ │ │ ├── sass-disabled.png │ │ │ │ ├── sass-email.png │ │ │ │ ├── sass-invalid-disabled.png │ │ │ │ ├── sass-invalid-focus.png │ │ │ │ ├── sass-invalid.png │ │ │ │ ├── sass-number.png │ │ │ │ ├── sass-password.png │ │ │ │ ├── sass-placeholder-disabled.png │ │ │ │ ├── sass-placeholder.png │ │ │ │ ├── sass-search.png │ │ │ │ ├── sass-tel.png │ │ │ │ ├── sass-url.png │ │ │ │ ├── search.png │ │ │ │ ├── tel.png │ │ │ │ ├── unit-change.png │ │ │ │ ├── unit-disabled.png │ │ │ │ ├── unit-init-hidden.png │ │ │ │ ├── unit-invalid-focus.png │ │ │ │ ├── unit-invalid-rtl-focus.png │ │ │ │ ├── unit-invalid-rtl.png │ │ │ │ ├── unit-invalid.png │ │ │ │ ├── unit-rtl.png │ │ │ │ ├── unit.png │ │ │ │ └── url.png │ │ ├── input-textarea │ │ │ └── chromium │ │ │ │ ├── custom-width-hover-empty.png │ │ │ │ ├── custom-width-hover-input.png │ │ │ │ ├── custom-width-hover-label.png │ │ │ │ ├── custom-width-skeleton.png │ │ │ │ ├── custom-width.png │ │ │ │ ├── default-focus.png │ │ │ │ ├── default.png │ │ │ │ ├── disabled.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-rtl.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-disabled.png │ │ │ │ ├── invalid-focus.png │ │ │ │ ├── invalid-rtl.png │ │ │ │ ├── invalid.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── max-rows.png │ │ │ │ ├── no-border-padding-focus.png │ │ │ │ ├── no-border-padding.png │ │ │ │ ├── placeholder-disabled.png │ │ │ │ ├── placeholder-focus.png │ │ │ │ ├── placeholder.png │ │ │ │ ├── required.png │ │ │ │ ├── rows.png │ │ │ │ ├── sass-basic-focus.png │ │ │ │ ├── sass-basic.png │ │ │ │ ├── sass-disabled.png │ │ │ │ ├── sass-invalid-disabled.png │ │ │ │ ├── sass-invalid-focus.png │ │ │ │ ├── sass-invalid-rtl.png │ │ │ │ ├── sass-invalid.png │ │ │ │ ├── sass-mirror-does-not-add-additional-container-height.png │ │ │ │ ├── sass-placeholder-disabled.png │ │ │ │ ├── sass-placeholder-focus.png │ │ │ │ ├── sass-placeholder.png │ │ │ │ ├── skeleton.png │ │ │ │ └── wrapping.png │ │ ├── input-time-range │ │ │ └── chromium │ │ │ │ ├── basic-focus.png │ │ │ │ ├── basic-wrapped.png │ │ │ │ ├── basic.png │ │ │ │ ├── disabled.png │ │ │ │ ├── end-value.png │ │ │ │ ├── hidden-labels-skeleton.png │ │ │ │ ├── hidden-labels-wrapped-skeleton.png │ │ │ │ ├── hidden-labels-wrapped.png │ │ │ │ ├── hidden-labels.png │ │ │ │ ├── inline-help-disabled.png │ │ │ │ ├── inline-help-multiline.png │ │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ │ ├── inline-help-skeleton.png │ │ │ │ ├── inline-help.png │ │ │ │ ├── invalid-end-value.png │ │ │ │ ├── label-hidden-skeleton.png │ │ │ │ ├── label-hidden.png │ │ │ │ ├── labelled-skeleton.png │ │ │ │ ├── labelled.png │ │ │ │ ├── required-skeleton.png │ │ │ │ ├── required.png │ │ │ │ ├── start-end-label.png │ │ │ │ ├── start-end-value.png │ │ │ │ ├── start-value.png │ │ │ │ ├── time-interval.png │ │ │ │ ├── validation-bad-input-function-open-end.png │ │ │ │ ├── validation-bad-input-function-open-start.png │ │ │ │ ├── validation-bad-input-invalid-then-fixed.png │ │ │ │ ├── validation-bad-input-start-after-end-basic.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-after-end-focus-start.png │ │ │ │ ├── validation-bad-input-start-equals-end-basic.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-end.png │ │ │ │ ├── validation-bad-input-start-equals-end-focus-start.png │ │ │ │ ├── validation-end-changes-when-auto-shift-times.png │ │ │ │ ├── validation-start-equals-end-when-inclusive.png │ │ │ │ ├── width-change-resizes-correctly-when-width-decreased.png │ │ │ │ ├── width-change-resizes-correctly-when-width-increased.png │ │ │ │ ├── within-custom-elem-is-correct-at-default-width.png │ │ │ │ └── within-custom-elem-is-correct-at-small-width.png │ │ └── input-time │ │ │ └── chromium │ │ │ ├── disabled.png │ │ │ ├── enforce.png │ │ │ ├── focus.png │ │ │ ├── inline-help-disabled.png │ │ │ ├── inline-help-multiline.png │ │ │ ├── inline-help-skeleton-multiline.png │ │ │ ├── inline-help-skeleton.png │ │ │ ├── inline-help.png │ │ │ ├── label-hidden-skeleton.png │ │ │ ├── label-hidden.png │ │ │ ├── labelled-skeleton.png │ │ │ ├── labelled.png │ │ │ ├── localization-ar-am.png │ │ │ ├── localization-ar-pm.png │ │ │ ├── localization-da-am.png │ │ │ ├── localization-da-pm.png │ │ │ ├── localization-de-am.png │ │ │ ├── localization-de-pm.png │ │ │ ├── localization-es-am.png │ │ │ ├── localization-es-pm.png │ │ │ ├── localization-fr-am.png │ │ │ ├── localization-fr-pm.png │ │ │ ├── localization-nl-am.png │ │ │ ├── localization-nl-pm.png │ │ │ ├── localization-pt-am.png │ │ │ ├── localization-pt-pm.png │ │ │ ├── localization-sv-am.png │ │ │ ├── localization-sv-pm.png │ │ │ ├── localization-tr-am.png │ │ │ ├── localization-tr-pm.png │ │ │ ├── localization-zh-am.png │ │ │ ├── localization-zh-pm.png │ │ │ ├── open-behavior-dropdown-open-click.png │ │ │ ├── open-behavior-dropdown-open-enforce-time-intervals.png │ │ │ ├── open-behavior-dropdown-open-keydown-selected.png │ │ │ ├── open-behavior-dropdown-open-keydown-top.png │ │ │ ├── opened-behavior-opened-disabled-remove-disabled.png │ │ │ ├── opened-behavior-opened-disabled.png │ │ │ ├── opened-behavior-opened-skeleton-remove-skeleton.png │ │ │ ├── opened-behavior-opened-skeleton.png │ │ │ └── required.png │ │ ├── input-checkbox-fixtures.js │ │ ├── input-checkbox-group.test.js │ │ ├── input-checkbox-group.vdiff.js │ │ ├── input-checkbox.axe.js │ │ ├── input-checkbox.test.js │ │ ├── input-checkbox.vdiff.js │ │ ├── input-color.axe.js │ │ ├── input-color.test.js │ │ ├── input-color.vdiff.js │ │ ├── input-date-range.axe.js │ │ ├── input-date-range.test.js │ │ ├── input-date-range.vdiff.js │ │ ├── input-date-time-range.axe.js │ │ ├── input-date-time-range.test.js │ │ ├── input-date-time-range.vdiff.js │ │ ├── input-date-time.axe.js │ │ ├── input-date-time.test.js │ │ ├── input-date-time.vdiff.js │ │ ├── input-date.axe.js │ │ ├── input-date.test.js │ │ ├── input-date.vdiff.js │ │ ├── input-fieldset.test.js │ │ ├── input-fieldset.vdiff.js │ │ ├── input-group.test.js │ │ ├── input-group.vdiff.js │ │ ├── input-label.vdiff.js │ │ ├── input-number.axe.js │ │ ├── input-number.test.js │ │ ├── input-number.vdiff.js │ │ ├── input-percent.axe.js │ │ ├── input-percent.test.js │ │ ├── input-percent.vdiff.js │ │ ├── input-radio-fixtures.js │ │ ├── input-radio-group.axe.js │ │ ├── input-radio-group.test.js │ │ ├── input-radio-group.vdiff.js │ │ ├── input-radio-spacer.test.js │ │ ├── input-radio.vdiff.js │ │ ├── input-search.axe.js │ │ ├── input-search.test.js │ │ ├── input-search.vdiff.js │ │ ├── input-select.vdiff.js │ │ ├── input-shared-content.js │ │ ├── input-text.axe.js │ │ ├── input-text.test.js │ │ ├── input-text.vdiff.js │ │ ├── input-textarea.axe.js │ │ ├── input-textarea.test.js │ │ ├── input-textarea.vdiff.js │ │ ├── input-time-range.axe.js │ │ ├── input-time-range.test.js │ │ ├── input-time-range.vdiff.js │ │ ├── input-time.axe.js │ │ ├── input-time.test.js │ │ └── input-time.vdiff.js ├── link │ ├── README.md │ ├── demo │ │ └── link.html │ ├── link-mixin.js │ ├── link-styles.js │ ├── link.js │ ├── link.scss │ └── test │ │ ├── golden │ │ └── link │ │ │ └── chromium │ │ │ ├── print-sass-main.png │ │ │ ├── print-sass-small.png │ │ │ ├── print-sass-standard.png │ │ │ ├── print-wc-block.png │ │ │ ├── print-wc-clamp-one-line.png │ │ │ ├── print-wc-clamp-two-lines.png │ │ │ ├── print-wc-clamp-unbreakable-one-line.png │ │ │ ├── print-wc-clamp-unbreakable-two-lines.png │ │ │ ├── print-wc-disabled-tooltip-not-disabled.png │ │ │ ├── print-wc-disabled-tooltip.png │ │ │ ├── print-wc-disabled.png │ │ │ ├── print-wc-inline-paragraph.png │ │ │ ├── print-wc-inline.png │ │ │ ├── print-wc-main.png │ │ │ ├── print-wc-small-new-window.png │ │ │ ├── print-wc-small.png │ │ │ ├── print-wc-standard-new-window-overflow.png │ │ │ ├── print-wc-standard-new-window-truncated-flex.png │ │ │ ├── print-wc-standard-new-window-truncated-one-flex.png │ │ │ ├── print-wc-standard-new-window-truncated-one.png │ │ │ ├── print-wc-standard-new-window-truncated.png │ │ │ ├── print-wc-standard-new-window.png │ │ │ ├── print-wc-standard.png │ │ │ ├── screen-sass-main-focused.png │ │ │ ├── screen-sass-main-hovered.png │ │ │ ├── screen-sass-main.png │ │ │ ├── screen-sass-small-focused.png │ │ │ ├── screen-sass-small-hovered.png │ │ │ ├── screen-sass-small.png │ │ │ ├── screen-sass-standard-focused.png │ │ │ ├── screen-sass-standard-hovered.png │ │ │ ├── screen-sass-standard.png │ │ │ ├── screen-wc-block-focused.png │ │ │ ├── screen-wc-block-hovered.png │ │ │ ├── screen-wc-block.png │ │ │ ├── screen-wc-clamp-one-line-focused.png │ │ │ ├── screen-wc-clamp-one-line-hovered.png │ │ │ ├── screen-wc-clamp-one-line.png │ │ │ ├── screen-wc-clamp-two-lines-focused.png │ │ │ ├── screen-wc-clamp-two-lines-hovered.png │ │ │ ├── screen-wc-clamp-two-lines.png │ │ │ ├── screen-wc-clamp-unbreakable-one-line-focused.png │ │ │ ├── screen-wc-clamp-unbreakable-one-line-hovered.png │ │ │ ├── screen-wc-clamp-unbreakable-one-line.png │ │ │ ├── screen-wc-clamp-unbreakable-two-lines-focused.png │ │ │ ├── screen-wc-clamp-unbreakable-two-lines-hovered.png │ │ │ ├── screen-wc-clamp-unbreakable-two-lines.png │ │ │ ├── screen-wc-disabled-focused.png │ │ │ ├── screen-wc-disabled-hovered.png │ │ │ ├── screen-wc-disabled-tooltip-focused.png │ │ │ ├── screen-wc-disabled-tooltip-hovered.png │ │ │ ├── screen-wc-disabled-tooltip-not-disabled-focused.png │ │ │ ├── screen-wc-disabled-tooltip-not-disabled-hovered.png │ │ │ ├── screen-wc-disabled-tooltip-not-disabled.png │ │ │ ├── screen-wc-disabled-tooltip.png │ │ │ ├── screen-wc-disabled.png │ │ │ ├── screen-wc-inline-focused.png │ │ │ ├── screen-wc-inline-hovered.png │ │ │ ├── screen-wc-inline-paragraph-focused.png │ │ │ ├── screen-wc-inline-paragraph-hovered.png │ │ │ ├── screen-wc-inline-paragraph.png │ │ │ ├── screen-wc-inline.png │ │ │ ├── screen-wc-main-focused.png │ │ │ ├── screen-wc-main-hovered.png │ │ │ ├── screen-wc-main.png │ │ │ ├── screen-wc-small-focused.png │ │ │ ├── screen-wc-small-hovered.png │ │ │ ├── screen-wc-small-new-window-focused.png │ │ │ ├── screen-wc-small-new-window-hovered.png │ │ │ ├── screen-wc-small-new-window.png │ │ │ ├── screen-wc-small.png │ │ │ ├── screen-wc-standard-focused.png │ │ │ ├── screen-wc-standard-hovered.png │ │ │ ├── screen-wc-standard-new-window-focused.png │ │ │ ├── screen-wc-standard-new-window-hovered.png │ │ │ ├── screen-wc-standard-new-window-overflow-focused.png │ │ │ ├── screen-wc-standard-new-window-overflow-hovered.png │ │ │ ├── screen-wc-standard-new-window-overflow.png │ │ │ ├── screen-wc-standard-new-window-truncated-flex-focused.png │ │ │ ├── screen-wc-standard-new-window-truncated-flex-hovered.png │ │ │ ├── screen-wc-standard-new-window-truncated-flex.png │ │ │ ├── screen-wc-standard-new-window-truncated-focused.png │ │ │ ├── screen-wc-standard-new-window-truncated-hovered.png │ │ │ ├── screen-wc-standard-new-window-truncated-one-flex-focused.png │ │ │ ├── screen-wc-standard-new-window-truncated-one-flex-hovered.png │ │ │ ├── screen-wc-standard-new-window-truncated-one-flex.png │ │ │ ├── screen-wc-standard-new-window-truncated-one-focused.png │ │ │ ├── screen-wc-standard-new-window-truncated-one-hovered.png │ │ │ ├── screen-wc-standard-new-window-truncated-one.png │ │ │ ├── screen-wc-standard-new-window-truncated.png │ │ │ ├── screen-wc-standard-new-window.png │ │ │ └── screen-wc-standard.png │ │ ├── link-mixin.test.js │ │ ├── link.axe.js │ │ ├── link.test.js │ │ └── link.vdiff.js ├── list │ ├── README.md │ ├── demo │ │ ├── demo-list-nav.js │ │ ├── demo-list-nested-iterations-helper.js │ │ ├── demo-list-nested-lazy-load.js │ │ ├── demo-list-nested.js │ │ ├── demo-list.js │ │ ├── list-color.html │ │ ├── list-demo-scenarios.js │ │ ├── list-drag-and-drop-position.js │ │ ├── list-drag-and-drop.html │ │ ├── list-expand-collapse.html │ │ ├── list-item-actions.html │ │ ├── list-item-custom.js │ │ ├── list-item-layouts.html │ │ ├── list-item-scroll.html │ │ ├── list-layout.html │ │ ├── list-nav.html │ │ ├── list-nested.html │ │ ├── list-selection.html │ │ └── list.html │ ├── list-controls.js │ ├── list-item-button-mixin.js │ ├── list-item-button.js │ ├── list-item-checkbox-mixin.js │ ├── list-item-content.js │ ├── list-item-drag-drop-mixin.js │ ├── list-item-drag-handle.js │ ├── list-item-drag-image.js │ ├── list-item-expand-collapse-mixin.js │ ├── list-item-generic-layout.js │ ├── list-item-link-mixin.js │ ├── list-item-mixin.js │ ├── list-item-nav-mixin.js │ ├── list-item-nav.js │ ├── list-item-placement-marker.js │ ├── list-item-role-mixin.js │ ├── list-item.js │ ├── list.js │ └── test │ │ ├── golden │ │ ├── list-item-drag-handle │ │ │ └── chromium │ │ │ │ ├── dragger-focus.png │ │ │ │ ├── dragger-keyboard-mode.png │ │ │ │ └── dragger-simple.png │ │ ├── list-item-drag-image │ │ │ └── chromium │ │ │ │ ├── 1-digit.png │ │ │ │ ├── 2-digit.png │ │ │ │ ├── 4-digit.png │ │ │ │ └── rtl.png │ │ ├── list-item-placement-marker │ │ │ └── chromium │ │ │ │ ├── placement-marker-ltr-and-no-border.png │ │ │ │ └── placement-marker-rtl-and-border.png │ │ ├── list-nested │ │ │ └── chromium │ │ │ │ ├── all-iterations-draggable-force-show-rtl.png │ │ │ │ ├── all-iterations-draggable-force-show.png │ │ │ │ ├── all-iterations-draggable-rtl.png │ │ │ │ ├── all-iterations-draggable.png │ │ │ │ ├── all-iterations-non-draggable-rtl.png │ │ │ │ ├── all-iterations-non-draggable.png │ │ │ │ ├── all-iterations-separators-between-rtl.png │ │ │ │ ├── all-iterations-separators-between.png │ │ │ │ ├── all-iterations-separators-none-rtl.png │ │ │ │ └── all-iterations-separators-none.png │ │ └── list │ │ │ └── chromium │ │ │ ├── action-types-dropdown-open-down.png │ │ │ ├── action-types-tooltip-open-down.png │ │ │ ├── breakpoints-0.png │ │ │ ├── breakpoints-580.png │ │ │ ├── breakpoints-636.png │ │ │ ├── breakpoints-842.png │ │ │ ├── breakpoints-list.png │ │ │ ├── button-disabled-focus-add-button.png │ │ │ ├── button-focus-add-button.png │ │ │ ├── color-extend-separators-nested-selectable-hover.png │ │ │ ├── color-extend-separators-nested-selectable.png │ │ │ ├── color-extend-separators-nested.png │ │ │ ├── color-extend-separators-selectable-draggable-hover.png │ │ │ ├── color-extend-separators-selectable-draggable.png │ │ │ ├── controls-all-selected-pages.png │ │ │ ├── controls-all-selected.png │ │ │ ├── controls-none-selected.png │ │ │ ├── controls-not-selectable-actions.png │ │ │ ├── controls-selectable-actions-color.png │ │ │ ├── controls-selectable-actions-extend-color.png │ │ │ ├── controls-selectable-actions-extend.png │ │ │ ├── controls-selectable-actions.png │ │ │ ├── controls-selectable-no-actions.png │ │ │ ├── controls-some-selected.png │ │ │ ├── controls-sticky-add-button-focus-scrolled.png │ │ │ ├── controls-sticky-add-button-focus.png │ │ │ ├── controls-sticky-add-button-scrolled-hover.png │ │ │ ├── controls-sticky-add-button-scrolled.png │ │ │ ├── controls-sticky-add-button-top.png │ │ │ ├── controls-sticky-color-add-button-scrolled-hover.png │ │ │ ├── controls-sticky-color-add-button-scrolled.png │ │ │ ├── controls-sticky-color-add-button-top.png │ │ │ ├── controls-sticky-color-scrolled-hover.png │ │ │ ├── controls-sticky-color-scrolled.png │ │ │ ├── controls-sticky-color-top.png │ │ │ ├── controls-sticky-extended-separators-add-button-scrolled-hover.png │ │ │ ├── controls-sticky-extended-separators-add-button-scrolled.png │ │ │ ├── controls-sticky-extended-separators-add-button-top.png │ │ │ ├── controls-sticky-extended-separators-color-add-button-scrolled-hover.png │ │ │ ├── controls-sticky-extended-separators-color-add-button-scrolled.png │ │ │ ├── controls-sticky-extended-separators-color-add-button-top.png │ │ │ ├── controls-sticky-extended-separators-color-scrolled-hover.png │ │ │ ├── controls-sticky-extended-separators-color-scrolled.png │ │ │ ├── controls-sticky-extended-separators-color-top.png │ │ │ ├── controls-sticky-extended-separators-scrolled-hover.png │ │ │ ├── controls-sticky-extended-separators-scrolled.png │ │ │ ├── controls-sticky-extended-separators-top.png │ │ │ ├── controls-sticky-scrolled-hover.png │ │ │ ├── controls-sticky-scrolled.png │ │ │ ├── controls-sticky-top.png │ │ │ ├── draggable-add-button-focus.png │ │ │ ├── draggable-add-button-hover.png │ │ │ ├── draggable-add-button.png │ │ │ ├── draggable-color-hover.png │ │ │ ├── draggable-color-selectable-focus-off-color-background.png │ │ │ ├── draggable-color-selectable-focus.png │ │ │ ├── draggable-color-selectable-hover-off-color-background.png │ │ │ ├── draggable-color-selectable-hover.png │ │ │ ├── draggable-default.png │ │ │ ├── draggable-drag-target-handle-only-hover-list-item.png │ │ │ ├── draggable-drag-target-handle-only-hover-outside-control.png │ │ │ ├── draggable-extended-separators-add-button-hover.png │ │ │ ├── draggable-extended-separators-add-button.png │ │ │ ├── draggable-extended-separators-hover.png │ │ │ ├── draggable-extended-separators.png │ │ │ ├── draggable-focus-list-item.png │ │ │ ├── draggable-hover-list-item.png │ │ │ ├── draggable-hover-outside-control.png │ │ │ ├── draggable-selectable-focus-off-color-background.png │ │ │ ├── draggable-selectable-focus.png │ │ │ ├── draggable-selectable-hover-off-color-background.png │ │ │ ├── draggable-selectable-hover.png │ │ │ ├── draggable-selectable-off-color-background.png │ │ │ ├── draggable-selectable.png │ │ │ ├── expand-collapse-add-color.png │ │ │ ├── expand-collapse-button-focus.png │ │ │ ├── expand-collapse-default-expanded-multiple-nested-lists.png │ │ │ ├── expand-collapse-default-expanded.png │ │ │ ├── expand-collapse-default.png │ │ │ ├── expand-collapse-draggable-focus-nested.png │ │ │ ├── expand-collapse-draggable.png │ │ │ ├── expand-collapse-hover-add-button-at-bottom-of-nested-list.png │ │ │ ├── expand-collapse-hover-first-add-button.png │ │ │ ├── expand-collapse-hover-second-add-button,-expanded.png │ │ │ ├── expand-collapse-hover-second-add-button,-not-expanded.png │ │ │ ├── expand-collapse-remove-color.png │ │ │ ├── expand-collapse-selectable-draggable-rtl.png │ │ │ ├── expand-collapse-selectable-draggable.png │ │ │ ├── expand-collapse-selectable.png │ │ │ ├── expand-collapse-skeleton.png │ │ │ ├── general-add-button-add-button-text-focus.png │ │ │ ├── general-add-button-focus-first-item-bottom.png │ │ │ ├── general-add-button-focus-first-item-top.png │ │ │ ├── general-add-button-hover.png │ │ │ ├── general-add-button.png │ │ │ ├── general-no-padding-add-button.png │ │ │ ├── general-simple.png │ │ │ ├── interactive-content-button-default.png │ │ │ ├── interactive-content-button-focus-interactive.png │ │ │ ├── interactive-content-button-focus.png │ │ │ ├── interactive-content-button-hover-interactive.png │ │ │ ├── interactive-content-button-hover.png │ │ │ ├── interactive-content-expandable-default.png │ │ │ ├── interactive-content-expandable-focus-interactive.png │ │ │ ├── interactive-content-expandable-focus.png │ │ │ ├── interactive-content-expandable-hover-interactive.png │ │ │ ├── interactive-content-expandable-hover.png │ │ │ ├── interactive-content-href-default.png │ │ │ ├── interactive-content-href-focus-interactive.png │ │ │ ├── interactive-content-href-focus.png │ │ │ ├── interactive-content-href-hover-interactive.png │ │ │ ├── interactive-content-href-hover.png │ │ │ ├── interactive-content-href-selectable-expandable-color-default.png │ │ │ ├── interactive-content-href-selectable-expandable-color-focus.png │ │ │ ├── interactive-content-href-selectable-expandable-color-hover.png │ │ │ ├── interactive-content-selectable-default.png │ │ │ ├── interactive-content-selectable-focus-interactive.png │ │ │ ├── interactive-content-selectable-focus.png │ │ │ ├── interactive-content-selectable-hover-interactive.png │ │ │ ├── interactive-content-selectable-hover.png │ │ │ ├── list-extend-separators.png │ │ │ ├── list-item-actions-illustration-extend-separators.png │ │ │ ├── list-item-actions-illustration-translucent-rtl.png │ │ │ ├── list-item-actions-illustration-translucent.png │ │ │ ├── list-item-actions-tile-header-extend-separators.png │ │ │ ├── list-item-actions-tile-header-link.png │ │ │ ├── list-item-actions-tile-header-rtl.png │ │ │ ├── list-item-actions-tile-header.png │ │ │ ├── list-item-button-content-focus.png │ │ │ ├── list-item-button-content-hover.png │ │ │ ├── list-item-button-content.png │ │ │ ├── list-item-button-disabled-content-focus.png │ │ │ ├── list-item-button-disabled-content-hover.png │ │ │ ├── list-item-button-disabled-content.png │ │ │ ├── list-item-button-disabled-focus.png │ │ │ ├── list-item-button-disabled-hover.png │ │ │ ├── list-item-button-disabled.png │ │ │ ├── list-item-button-focus.png │ │ │ ├── list-item-button-hover.png │ │ │ ├── list-item-button.png │ │ │ ├── list-item-content-all.png │ │ │ ├── list-item-content-long-multi-line-ellipsis.png │ │ │ ├── list-item-content-long-single-line-ellipsis-nested.png │ │ │ ├── list-item-content-long-single-line-ellipsis.png │ │ │ ├── list-item-content-long-unbreakable-single-line-ellipsis.png │ │ │ ├── list-item-content-long-wrapping.png │ │ │ ├── list-item-content-padding-type-none.png │ │ │ ├── list-item-content-short-single-line-ellipsis.png │ │ │ ├── list-item-illustration-slot-div.png │ │ │ ├── list-item-illustration-slot-icon-custom.png │ │ │ ├── list-item-illustration-slot-icon.png │ │ │ ├── list-item-illustration-slot-img.png │ │ │ ├── list-item-link-content-focus.png │ │ │ ├── list-item-link-content-hover.png │ │ │ ├── list-item-link-content.png │ │ │ ├── list-item-link-focus.png │ │ │ ├── list-item-link-hover.png │ │ │ ├── list-item-link.png │ │ │ ├── list-item-multiple-selectable-illustration-not-selected-focus.png │ │ │ ├── list-item-multiple-selectable-illustration-not-selected-hover.png │ │ │ ├── list-item-multiple-selectable-illustration-rtl.png │ │ │ ├── list-item-multiple-selectable-illustration-selected-focus.png │ │ │ ├── list-item-multiple-selectable-illustration-selected-hover.png │ │ │ ├── list-item-multiple-selectable-illustration-selected.png │ │ │ ├── list-item-multiple-selectable-illustration-selection-disabled-selected.png │ │ │ ├── list-item-multiple-selectable-illustration-selection-disabled.png │ │ │ ├── list-item-multiple-selectable-illustration-skeleton.png │ │ │ ├── list-item-multiple-selectable-illustration.png │ │ │ ├── list-item-multiple-selectable-tile-header-not-selected-focus.png │ │ │ ├── list-item-multiple-selectable-tile-header-not-selected-hover.png │ │ │ ├── list-item-multiple-selectable-tile-header-rtl.png │ │ │ ├── list-item-multiple-selectable-tile-header-selected-focus.png │ │ │ ├── list-item-multiple-selectable-tile-header-selected-hover.png │ │ │ ├── list-item-multiple-selectable-tile-header-selected.png │ │ │ ├── list-item-multiple-selectable-tile-header-selection-disabled-selected.png │ │ │ ├── list-item-multiple-selectable-tile-header-selection-disabled.png │ │ │ ├── list-item-multiple-selectable-tile-header-skeleton.png │ │ │ ├── list-item-multiple-selectable-tile-header.png │ │ │ ├── list-item-padding-type-none.png │ │ │ ├── list-item-selectable-extend-separators.png │ │ │ ├── list-item-selectable-tile-header-illustration.png │ │ │ ├── list-item-single-selectable-illustration-not-selected-focus.png │ │ │ ├── list-item-single-selectable-illustration-not-selected-hover.png │ │ │ ├── list-item-single-selectable-illustration-selected-focus.png │ │ │ ├── list-item-single-selectable-illustration-selected-hover.png │ │ │ ├── list-item-single-selectable-illustration-selected.png │ │ │ ├── list-item-single-selectable-illustration-selection-disabled.png │ │ │ ├── list-item-single-selectable-illustration-skeleton.png │ │ │ ├── list-item-single-selectable-illustration.png │ │ │ ├── list-item-single-selectable-tile-header-not-selected-focus.png │ │ │ ├── list-item-single-selectable-tile-header-not-selected-hover.png │ │ │ ├── list-item-single-selectable-tile-header-selected-focus.png │ │ │ ├── list-item-single-selectable-tile-header-selected-hover.png │ │ │ ├── list-item-single-selectable-tile-header-selected.png │ │ │ ├── list-item-single-selectable-tile-header-selection-disabled.png │ │ │ ├── list-item-single-selectable-tile-header-skeleton.png │ │ │ ├── list-item-single-selectable-tile-header.png │ │ │ ├── list-separators-all.png │ │ │ ├── list-separators-between.png │ │ │ ├── list-separators-none.png │ │ │ ├── list.png │ │ │ ├── nav-add-button-default.png │ │ │ ├── nav-add-button-focus-current.png │ │ │ ├── nav-add-button-focus-second-item-current.png │ │ │ ├── nav-add-button-focus-second-item.png │ │ │ ├── nav-add-button-focus.png │ │ │ ├── nav-add-button-hover.png │ │ │ ├── nav-default-current.png │ │ │ ├── nav-default.png │ │ │ ├── nav-focus-current.png │ │ │ ├── nav-focus.png │ │ │ ├── nav-hover.png │ │ │ ├── nav-nested-default-current.png │ │ │ ├── nav-nested-default.png │ │ │ ├── nav-nested-focus-current.png │ │ │ ├── nav-nested-focus.png │ │ │ ├── nav-nested-focused-secondary.png │ │ │ ├── nav-nested-hover.png │ │ │ ├── nav-nested-indentation.png │ │ │ ├── nested-add-button-all-selected.png │ │ │ ├── nested-add-button-only-on-nested-list.png │ │ │ ├── nested-add-button-only-on-root-list.png │ │ │ ├── nested-add-button-some-selected.png │ │ │ ├── nested-add-button.png │ │ │ ├── nested-all-selected.png │ │ │ ├── nested-indentation-color.png │ │ │ ├── nested-indentation.png │ │ │ ├── nested-none-selected.png │ │ │ ├── nested-some-selected.png │ │ │ ├── pager-default.png │ │ │ ├── pager-extended-separators.png │ │ │ ├── selectable-button-selection-disabled-button-disabled-hover-off-color-background.png │ │ │ ├── selectable-button-selection-disabled-button-disabled-hover.png │ │ │ ├── selectable-button-selection-disabled-hover-off-color-background.png │ │ │ ├── selectable-button-selection-disabled-hover.png │ │ │ ├── selectable-extended-separators-href-off-color-background.png │ │ │ ├── selectable-extended-separators-href.png │ │ │ ├── selectable-extended-separators-off-color-background.png │ │ │ ├── selectable-extended-separators.png │ │ │ ├── selectable-href-hover-href-off-color-background.png │ │ │ ├── selectable-href-hover-href.png │ │ │ ├── selectable-href-hover-secondary-action-off-color-background.png │ │ │ ├── selectable-href-hover-secondary-action.png │ │ │ ├── selectable-href-hover-selection-off-color-background.png │ │ │ ├── selectable-href-hover-selection.png │ │ │ ├── selectable-item-content-off-color-background.png │ │ │ ├── selectable-item-content.png │ │ │ ├── selectable-not-selected-add-button-off-color-background.png │ │ │ ├── selectable-not-selected-add-button.png │ │ │ ├── selectable-not-selected-focus-off-color-background.png │ │ │ ├── selectable-not-selected-focus.png │ │ │ ├── selectable-not-selected-hover-off-color-background.png │ │ │ ├── selectable-not-selected-hover.png │ │ │ ├── selectable-not-selected-off-color-background.png │ │ │ ├── selectable-not-selected.png │ │ │ ├── selectable-selected-add-button-off-color-background.png │ │ │ ├── selectable-selected-add-button.png │ │ │ ├── selectable-selected-focus-off-color-background.png │ │ │ ├── selectable-selected-focus-sibling-off-color-background.png │ │ │ ├── selectable-selected-focus-sibling.png │ │ │ ├── selectable-selected-focus.png │ │ │ ├── selectable-selected-hover-off-color-background.png │ │ │ ├── selectable-selected-hover-sibling-off-color-background.png │ │ │ ├── selectable-selected-hover-sibling.png │ │ │ ├── selectable-selected-hover.png │ │ │ ├── selectable-selected-off-color-background.png │ │ │ ├── selectable-selected.png │ │ │ ├── selectable-selection-disabled-hover-off-color-background.png │ │ │ ├── selectable-selection-disabled-hover.png │ │ │ ├── selectable-skeleton-add-button-off-color-background.png │ │ │ ├── selectable-skeleton-add-button.png │ │ │ ├── selectable-skeleton-off-color-background.png │ │ │ ├── selectable-skeleton.png │ │ │ ├── separators-all-add-button.png │ │ │ ├── separators-all.png │ │ │ ├── separators-between-add-button.png │ │ │ ├── separators-between.png │ │ │ ├── separators-default-add-button.png │ │ │ ├── separators-default.png │ │ │ ├── separators-extended-add-button.png │ │ │ ├── separators-extended.png │ │ │ ├── separators-none-add-button.png │ │ │ ├── separators-none.png │ │ │ ├── tiles-extend-separators.png │ │ │ ├── tiles-item-actions-illustration-extend-separators.png │ │ │ ├── tiles-item-actions-illustration-translucent-rtl.png │ │ │ ├── tiles-item-actions-illustration-translucent.png │ │ │ ├── tiles-item-actions-tile-header-extend-separators.png │ │ │ ├── tiles-item-actions-tile-header-link.png │ │ │ ├── tiles-item-actions-tile-header-rtl.png │ │ │ ├── tiles-item-actions-tile-header.png │ │ │ ├── tiles-item-button-content-focus.png │ │ │ ├── tiles-item-button-content-hover.png │ │ │ ├── tiles-item-button-content.png │ │ │ ├── tiles-item-button-disabled-content-focus.png │ │ │ ├── tiles-item-button-disabled-content-hover.png │ │ │ ├── tiles-item-button-disabled-content.png │ │ │ ├── tiles-item-button-disabled-focus.png │ │ │ ├── tiles-item-button-disabled-hover.png │ │ │ ├── tiles-item-button-disabled.png │ │ │ ├── tiles-item-button-focus.png │ │ │ ├── tiles-item-button-hover.png │ │ │ ├── tiles-item-button.png │ │ │ ├── tiles-item-content-all.png │ │ │ ├── tiles-item-content-long-multi-line-ellipsis.png │ │ │ ├── tiles-item-content-long-single-line-ellipsis-nested.png │ │ │ ├── tiles-item-content-long-single-line-ellipsis.png │ │ │ ├── tiles-item-content-long-unbreakable-single-line-ellipsis.png │ │ │ ├── tiles-item-content-long-wrapping.png │ │ │ ├── tiles-item-content-padding-type-none.png │ │ │ ├── tiles-item-content-short-single-line-ellipsis.png │ │ │ ├── tiles-item-illustration-slot-div.png │ │ │ ├── tiles-item-illustration-slot-icon-custom.png │ │ │ ├── tiles-item-illustration-slot-icon.png │ │ │ ├── tiles-item-illustration-slot-img.png │ │ │ ├── tiles-item-link-content-focus.png │ │ │ ├── tiles-item-link-content-hover.png │ │ │ ├── tiles-item-link-content.png │ │ │ ├── tiles-item-link-focus.png │ │ │ ├── tiles-item-link-hover.png │ │ │ ├── tiles-item-link.png │ │ │ ├── tiles-item-multiple-selectable-illustration-not-selected-focus.png │ │ │ ├── tiles-item-multiple-selectable-illustration-not-selected-hover.png │ │ │ ├── tiles-item-multiple-selectable-illustration-rtl.png │ │ │ ├── tiles-item-multiple-selectable-illustration-selected-focus.png │ │ │ ├── tiles-item-multiple-selectable-illustration-selected-hover.png │ │ │ ├── tiles-item-multiple-selectable-illustration-selected.png │ │ │ ├── tiles-item-multiple-selectable-illustration-selection-disabled-selected.png │ │ │ ├── tiles-item-multiple-selectable-illustration-selection-disabled.png │ │ │ ├── tiles-item-multiple-selectable-illustration-skeleton.png │ │ │ ├── tiles-item-multiple-selectable-illustration.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-not-selected-focus.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-not-selected-hover.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-rtl.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-selected-focus.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-selected-hover.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-selected.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-selection-disabled-selected.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-selection-disabled.png │ │ │ ├── tiles-item-multiple-selectable-tile-header-skeleton.png │ │ │ ├── tiles-item-multiple-selectable-tile-header.png │ │ │ ├── tiles-item-padding-type-none.png │ │ │ ├── tiles-item-selectable-extend-separators.png │ │ │ ├── tiles-item-selectable-tile-header-illustration.png │ │ │ ├── tiles-item-single-selectable-illustration-not-selected-focus.png │ │ │ ├── tiles-item-single-selectable-illustration-not-selected-hover.png │ │ │ ├── tiles-item-single-selectable-illustration-selected-focus.png │ │ │ ├── tiles-item-single-selectable-illustration-selected-hover.png │ │ │ ├── tiles-item-single-selectable-illustration-selected.png │ │ │ ├── tiles-item-single-selectable-illustration-selection-disabled.png │ │ │ ├── tiles-item-single-selectable-illustration-skeleton.png │ │ │ ├── tiles-item-single-selectable-illustration.png │ │ │ ├── tiles-item-single-selectable-tile-header-not-selected-focus.png │ │ │ ├── tiles-item-single-selectable-tile-header-not-selected-hover.png │ │ │ ├── tiles-item-single-selectable-tile-header-selected-focus.png │ │ │ ├── tiles-item-single-selectable-tile-header-selected-hover.png │ │ │ ├── tiles-item-single-selectable-tile-header-selected.png │ │ │ ├── tiles-item-single-selectable-tile-header-selection-disabled.png │ │ │ ├── tiles-item-single-selectable-tile-header-skeleton.png │ │ │ ├── tiles-item-single-selectable-tile-header.png │ │ │ ├── tiles-item-width.png │ │ │ └── tiles.png │ │ ├── list-item-checkbox-mixin.test.js │ │ ├── list-item-components.vdiff.js │ │ ├── list-item-drag-handle.axe.js │ │ ├── list-item-drag-handle.test.js │ │ ├── list-item-drag-mixin.test.js │ │ ├── list-item-expand-collapse-mixin.test.js │ │ ├── list-item-generic-layout.test.js │ │ ├── list-item-nav-mixin.test.js │ │ ├── list-item-placement-marker.axe.js │ │ ├── list-item-role-mixin.test.js │ │ ├── list.axe.js │ │ ├── list.test.js │ │ └── list.vdiff.js ├── loading-spinner │ ├── README.md │ ├── demo │ │ ├── loading-spinner-override.js │ │ └── loading-spinner.html │ ├── loading-spinner.js │ └── test │ │ └── loading-spinner.test.js ├── menu │ ├── README.md │ ├── demo │ │ ├── checkbox-menu.html │ │ ├── custom-menu-item.js │ │ ├── custom-view.js │ │ ├── menu.html │ │ └── radio-menu.html │ ├── menu-item-checkbox.js │ ├── menu-item-link.js │ ├── menu-item-mixin.js │ ├── menu-item-radio-mixin.js │ ├── menu-item-radio.js │ ├── menu-item-return.js │ ├── menu-item-selectable-mixin.js │ ├── menu-item-selectable-styles.js │ ├── menu-item-separator.js │ ├── menu-item-styles.js │ ├── menu-item.js │ ├── menu.js │ └── test │ │ ├── custom-slots.js │ │ ├── custom-view.js │ │ ├── golden │ │ ├── menu-checkbox │ │ │ └── chromium │ │ │ │ ├── dark.png │ │ │ │ ├── disabled.png │ │ │ │ ├── does-not-select-disabled-item.png │ │ │ │ ├── long.png │ │ │ │ ├── normal.png │ │ │ │ ├── rtl.png │ │ │ │ ├── selected.png │ │ │ │ ├── selection-behavior-de-selects-when-clicked-twice.png │ │ │ │ ├── selection-behavior-selects-multiple-when-clicked.png │ │ │ │ ├── selection-behavior-selects-when-clicked.png │ │ │ │ └── supporting.png │ │ ├── menu-radio │ │ │ └── chromium │ │ │ │ ├── dark.png │ │ │ │ ├── disabled.png │ │ │ │ ├── does-not-select-disabled-item.png │ │ │ │ ├── long.png │ │ │ │ ├── normal.png │ │ │ │ ├── rtl.png │ │ │ │ ├── selected.png │ │ │ │ ├── selection-behavior-changes-selection-when-new-selection-clicked.png │ │ │ │ ├── selection-behavior-does-not-deselect-when-clicked-twice.png │ │ │ │ ├── selection-behavior-selects-when-clicked.png │ │ │ │ └── supporting.png │ │ └── menu │ │ │ └── chromium │ │ │ ├── dark-focus.png │ │ │ ├── dark-hover.png │ │ │ ├── dark-simple.png │ │ │ ├── disabled-focus.png │ │ │ ├── disabled-hover.png │ │ │ ├── disabled-simple.png │ │ │ ├── hidden.png │ │ │ ├── lines.png │ │ │ ├── link-long.png │ │ │ ├── link-new-window-long.png │ │ │ ├── link-new-window.png │ │ │ ├── link.png │ │ │ ├── long-unbreakable.png │ │ │ ├── long.png │ │ │ ├── nested-custom-submenu-rtl.png │ │ │ ├── nested-custom-submenu.png │ │ │ ├── nested-leaves-submenu-on-escape.png │ │ │ ├── nested-leaves-submenu-when-return-clicked.png │ │ │ ├── nested-long-menu-item-rtl.png │ │ │ ├── nested-long-menu-item.png │ │ │ ├── nested-opens-custom-submenu-on-click-rtl.png │ │ │ ├── nested-opens-custom-submenu-on-click.png │ │ │ ├── nested-opens-long-menu-item-submenu-on-click-rtl.png │ │ │ ├── nested-opens-long-menu-item-submenu-on-click.png │ │ │ ├── nested-opens-submenu-on-click-rtl.png │ │ │ ├── nested-opens-submenu-on-click.png │ │ │ ├── nested-opens-submenu-on-enter.png │ │ │ ├── nested-simple-rtl.png │ │ │ ├── nested-simple.png │ │ │ ├── normal-first-item-focus.png │ │ │ ├── normal-first-item-hover.png │ │ │ ├── normal-focus.png │ │ │ ├── normal-hover.png │ │ │ ├── normal-last-item-focus.png │ │ │ ├── normal-last-item-hover.png │ │ │ ├── normal-rtl.png │ │ │ ├── normal-simple.png │ │ │ ├── separator.png │ │ │ ├── supporting-rtl.png │ │ │ └── supporting.png │ │ ├── menu-checkbox.vdiff.js │ │ ├── menu-item-checkbox.test.js │ │ ├── menu-item-link.test.js │ │ ├── menu-item-mixin.test.js │ │ ├── menu-item-radio.test.js │ │ ├── menu-item-return.test.js │ │ ├── menu-item-selectable-mixin.test.js │ │ ├── menu-item-separator.test.js │ │ ├── menu-radio.vdiff.js │ │ ├── menu.axe.js │ │ ├── menu.test.js │ │ └── menu.vdiff.js ├── meter │ ├── README.md │ ├── demo │ │ └── meter.html │ ├── meter-circle.js │ ├── meter-linear.js │ ├── meter-mixin.js │ ├── meter-radial.js │ ├── meter-styles.js │ └── test │ │ ├── golden │ │ ├── meter-circle │ │ │ └── chromium │ │ │ │ ├── 100-percent.png │ │ │ │ ├── complete.png │ │ │ │ ├── foreground-light-text.png │ │ │ │ ├── foreground-light.png │ │ │ │ ├── max-zero-with-value.png │ │ │ │ ├── no-progress.png │ │ │ │ ├── percent-rtl.png │ │ │ │ ├── percent.png │ │ │ │ ├── progress-rtl.png │ │ │ │ ├── progress.png │ │ │ │ ├── round-to-zero.png │ │ │ │ ├── scaled-larger.png │ │ │ │ ├── scaled-smaller.png │ │ │ │ ├── text-text-hidden.png │ │ │ │ └── text.png │ │ ├── meter-linear │ │ │ └── chromium │ │ │ │ ├── no-text-text-hidden.png │ │ │ │ ├── normal-complete.png │ │ │ │ ├── normal-foreground-light.png │ │ │ │ ├── normal-max-zero-value-zero.png │ │ │ │ ├── normal-max-zero-with-value.png │ │ │ │ ├── normal-no-progress.png │ │ │ │ ├── normal-over-100.png │ │ │ │ ├── normal-percent.png │ │ │ │ ├── normal-progress.png │ │ │ │ ├── normal-round-to-zero.png │ │ │ │ ├── normal-text-fraction-not-embedded-rtl.png │ │ │ │ ├── normal-text-fraction-not-embedded.png │ │ │ │ ├── normal-text-fraction-rtl.png │ │ │ │ ├── normal-text-fraction-text-hidden.png │ │ │ │ ├── normal-text-fraction.png │ │ │ │ ├── normal-text-percent-not-embedded-rtl.png │ │ │ │ ├── normal-text-percent-not-embedded.png │ │ │ │ ├── normal-text-percent-rtl.png │ │ │ │ ├── normal-text-percent.png │ │ │ │ ├── normal-text.png │ │ │ │ ├── text-inline-complete.png │ │ │ │ ├── text-inline-foreground-light.png │ │ │ │ ├── text-inline-no-progress.png │ │ │ │ ├── text-inline-percent.png │ │ │ │ ├── text-inline-progress.png │ │ │ │ ├── text-inline-text-fraction-rtl.png │ │ │ │ ├── text-inline-text-fraction.png │ │ │ │ ├── text-inline-text-percent-rtl.png │ │ │ │ ├── text-inline-text-percent-text-hidden.png │ │ │ │ └── text-inline-text-percent.png │ │ └── meter-radial │ │ │ └── chromium │ │ │ ├── complete.png │ │ │ ├── foreground-light.png │ │ │ ├── max-zero-with-value.png │ │ │ ├── no-progress.png │ │ │ ├── percent-rtl.png │ │ │ ├── percent.png │ │ │ ├── progress-rtl.png │ │ │ ├── progress.png │ │ │ ├── round-to-zero.png │ │ │ ├── scaled-larger.png │ │ │ ├── scaled-smaller.png │ │ │ ├── text-hidden.png │ │ │ ├── text-rtl.png │ │ │ └── text.png │ │ ├── meter-circle.axe.js │ │ ├── meter-circle.test.js │ │ ├── meter-circle.vdiff.js │ │ ├── meter-linear.axe.js │ │ ├── meter-linear.test.js │ │ ├── meter-linear.vdiff.js │ │ ├── meter-radial.axe.js │ │ ├── meter-radial.test.js │ │ └── meter-radial.vdiff.js ├── more-less │ ├── README.md │ ├── demo │ │ ├── more-less-test.js │ │ └── more-less.html │ ├── more-less.js │ └── test │ │ ├── golden │ │ └── more-less │ │ │ └── chromium │ │ │ ├── auto-collapses-on-focus-out.png │ │ │ ├── auto-expands-on-focus-in-when-scrolled.png │ │ │ ├── collapsed.png │ │ │ ├── collapses-on-click.png │ │ │ ├── does-not-auto-collapse-on-focus-out-when-still-active.png │ │ │ ├── does-not-auto-expand-on-focus-in-when-not-scrolled.png │ │ │ ├── does-not-grow-with-content-when-collapsed.png │ │ │ ├── expanded.png │ │ │ ├── expands-on-click.png │ │ │ ├── grows-with-content-when-expanded.png │ │ │ ├── with-custom-blur.png │ │ │ └── with-custom-height.png │ │ ├── more-less.axe.js │ │ ├── more-less.test.js │ │ └── more-less.vdiff.js ├── object-property-list │ ├── README.md │ ├── demo │ │ └── object-property-list.html │ ├── object-property-list-item-link.js │ ├── object-property-list-item-tooltip-help.js │ ├── object-property-list-item.js │ ├── object-property-list.js │ └── test │ │ ├── golden │ │ └── object-property-list │ │ │ └── chromium │ │ │ ├── all-types.png │ │ │ ├── focus.png │ │ │ ├── hidden-items.png │ │ │ ├── item-skeleton.png │ │ │ ├── list-skeleton.png │ │ │ ├── rtl.png │ │ │ ├── single.png │ │ │ └── word-wrap.png │ │ ├── object-property-list.axe.js │ │ ├── object-property-list.test.js │ │ └── object-property-list.vdiff.js ├── offscreen │ ├── README.md │ ├── demo │ │ ├── offscreen-demo.js │ │ └── offscreen.html │ ├── offscreen.js │ ├── offscreen.scss │ ├── screen-reader-pause.js │ └── test │ │ ├── golden │ │ └── offscreen │ │ │ └── chromium │ │ │ ├── ltr-container-rtl.png │ │ │ ├── ltr-container.png │ │ │ ├── sass-rtl.png │ │ │ ├── sass.png │ │ │ ├── style-rtl.png │ │ │ ├── style.png │ │ │ ├── wc-rtl.png │ │ │ └── wc.png │ │ ├── offscreen.test.js │ │ └── offscreen.vdiff.js ├── overflow-group │ ├── README.md │ ├── demo │ │ ├── demo-overflow-group.js │ │ └── overflow-group.html │ ├── overflow-group-mixin.js │ ├── overflow-group.js │ └── test │ │ ├── golden │ │ └── overflow-group │ │ │ └── chromium │ │ │ ├── all-item-types.png │ │ │ ├── auto-show-add-later.png │ │ │ ├── auto-show-small.png │ │ │ ├── auto-show.png │ │ │ ├── between-min-max-to-show.png │ │ │ ├── exactly-max-to-show.png │ │ │ ├── ignores-hidden-button.png │ │ │ ├── less-than-min-to-show.png │ │ │ ├── more-than-max-to-show.png │ │ │ ├── opener-type-mini-menu.png │ │ │ ├── opener-type-overflow-open-menu.png │ │ │ ├── opener-type-subtle-icon.png │ │ │ └── opener-type-subtle-overflow-menu.png │ │ ├── overflow-group.axe.js │ │ ├── overflow-group.test.js │ │ └── overflow-group.vdiff.js ├── paging │ ├── README.md │ ├── demo │ │ └── pager-load-more.html │ ├── pageable-mixin.js │ ├── pageable-subscriber-mixin.js │ ├── pager-load-more.js │ └── test │ │ ├── golden │ │ └── pager-load-more │ │ │ └── chromium │ │ │ ├── load-more.png │ │ │ ├── states-focus.png │ │ │ ├── states-hover.png │ │ │ ├── states-item-count.png │ │ │ ├── states-no-item-count-or-page-size.png │ │ │ ├── states-no-item-count.png │ │ │ ├── states-no-more.png │ │ │ └── states-no-page-size.png │ │ ├── pageable-component.js │ │ ├── pager-load-more.axe.js │ │ ├── pager-load-more.test.js │ │ └── pager-load-more.vdiff.js ├── popover │ ├── README.md │ ├── demo │ │ └── popover.html │ ├── popover-mixin.js │ └── test │ │ ├── golden │ │ └── popover-mixin │ │ │ └── chromium │ │ │ └── default.png │ │ ├── popover-mixin.axe.js │ │ ├── popover-mixin.test.js │ │ ├── popover-mixin.vdiff.js │ │ └── popover.js ├── progress │ ├── README.md │ ├── demo │ │ └── progress.html │ ├── progress.js │ └── test │ │ ├── golden │ │ └── progress │ │ │ └── chromium │ │ │ ├── hidden-states-rtl.png │ │ │ ├── hidden-states.png │ │ │ ├── large-rtl.png │ │ │ ├── large.png │ │ │ ├── medium-rtl.png │ │ │ ├── medium.png │ │ │ ├── small-rtl.png │ │ │ └── small.png │ │ ├── progress.test.js │ │ └── progress.vdiff.js ├── scroll-wrapper │ ├── README.md │ ├── demo │ │ ├── scroll-wrapper-test.js │ │ └── scroll-wrapper.html │ ├── scroll-wrapper.js │ └── test │ │ ├── golden │ │ └── scroll-wrapper │ │ │ └── chromium │ │ │ ├── focus-show-actions.png │ │ │ ├── focus-split-scrollers.png │ │ │ ├── hide-actions-overflow-both-rtl.png │ │ │ ├── hide-actions-overflow-both.png │ │ │ ├── hide-actions-overflow-left-rtl.png │ │ │ ├── hide-actions-overflow-left.png │ │ │ ├── hide-actions-overflow-right-rtl.png │ │ │ ├── hide-actions-overflow-right.png │ │ │ ├── hide-actions-same-rtl.png │ │ │ ├── hide-actions-same.png │ │ │ ├── hide-actions-smaller-rtl.png │ │ │ ├── hide-actions-smaller.png │ │ │ ├── print-hide-actions.png │ │ │ ├── print-split-scrollers.png │ │ │ ├── show-actions-overflow-both-rtl.png │ │ │ ├── show-actions-overflow-both.png │ │ │ ├── show-actions-overflow-left-rtl.png │ │ │ ├── show-actions-overflow-left.png │ │ │ ├── show-actions-overflow-right-rtl.png │ │ │ ├── show-actions-overflow-right.png │ │ │ ├── show-actions-same-rtl.png │ │ │ ├── show-actions-same.png │ │ │ ├── show-actions-smaller-rtl.png │ │ │ ├── show-actions-smaller.png │ │ │ ├── split-scrollers-overflow-both-rtl.png │ │ │ ├── split-scrollers-overflow-both.png │ │ │ ├── split-scrollers-overflow-left-rtl.png │ │ │ ├── split-scrollers-overflow-left.png │ │ │ ├── split-scrollers-overflow-right-rtl.png │ │ │ ├── split-scrollers-overflow-right.png │ │ │ ├── split-scrollers-same-rtl.png │ │ │ ├── split-scrollers-same.png │ │ │ ├── split-scrollers-secondary-focus-scroll-rtl.png │ │ │ ├── split-scrollers-secondary-focus-scroll.png │ │ │ ├── split-scrollers-smaller-rtl.png │ │ │ └── split-scrollers-smaller.png │ │ ├── scroll-wrapper.axe.js │ │ └── scroll-wrapper.vdiff.js ├── selection │ ├── README.md │ ├── demo │ │ ├── demo-selection.js │ │ └── selection.html │ ├── selection-action-dropdown.js │ ├── selection-action-menu-item.js │ ├── selection-action-mixin.js │ ├── selection-action.js │ ├── selection-controls.js │ ├── selection-input.js │ ├── selection-mixin.js │ ├── selection-observer-mixin.js │ ├── selection-select-all-pages.js │ ├── selection-select-all.js │ ├── selection-summary.js │ └── test │ │ ├── golden │ │ ├── selection-components │ │ │ └── chromium │ │ │ │ ├── action-disabled-focus.png │ │ │ │ ├── action-disabled.png │ │ │ │ ├── action-max-selection-count-focus.png │ │ │ │ ├── action-max-selection-count.png │ │ │ │ ├── action-requires-selection-focus.png │ │ │ │ ├── action-requires-selection.png │ │ │ │ ├── action-text-focus.png │ │ │ │ ├── action-text-icon-focus.png │ │ │ │ ├── action-text-icon.png │ │ │ │ ├── action-text.png │ │ │ │ ├── checkbox-click.png │ │ │ │ ├── checkbox-default.png │ │ │ │ ├── checkbox-focus.png │ │ │ │ ├── checkbox-selected-click.png │ │ │ │ ├── checkbox-selected-focus.png │ │ │ │ ├── checkbox-selected.png │ │ │ │ ├── checkbox-skeleton.png │ │ │ │ ├── controls-minimal.png │ │ │ │ ├── controls-with-actions.png │ │ │ │ ├── controls-with-custom-no-selection-text.png │ │ │ │ ├── controls-with-pageable-more.png │ │ │ │ ├── controls-with-pageable.png │ │ │ │ ├── controls-with-selection-pageable.png │ │ │ │ ├── dropdown-disabled-focus.png │ │ │ │ ├── dropdown-disabled.png │ │ │ │ ├── dropdown-max-selection-count-focus.png │ │ │ │ ├── dropdown-max-selection-count.png │ │ │ │ ├── dropdown-requires-selection-focus.png │ │ │ │ ├── dropdown-requires-selection.png │ │ │ │ ├── dropdown-text-focus.png │ │ │ │ ├── dropdown-text.png │ │ │ │ ├── radio-click.png │ │ │ │ ├── radio-default.png │ │ │ │ ├── radio-focus.png │ │ │ │ ├── radio-selected-click.png │ │ │ │ ├── radio-selected-focus.png │ │ │ │ ├── radio-selected-space.png │ │ │ │ ├── radio-selected.png │ │ │ │ ├── radio-skeleton.png │ │ │ │ ├── radio-space.png │ │ │ │ ├── select-all-all-selected.png │ │ │ │ ├── select-all-default.png │ │ │ │ ├── select-all-disabled.png │ │ │ │ ├── select-all-focus.png │ │ │ │ ├── select-all-none-selected.png │ │ │ │ ├── select-all-pages-add-item.png │ │ │ │ ├── select-all-pages-all-selected.png │ │ │ │ ├── select-all-pages-none-selected.png │ │ │ │ ├── select-all-pages-select-all-pages.png │ │ │ │ ├── select-all-pages-some-selected.png │ │ │ │ ├── select-all-pages-unselect-item.png │ │ │ │ ├── select-all-some-selected.png │ │ │ │ ├── summary-all-selected.png │ │ │ │ ├── summary-count-formatted-for-locale.png │ │ │ │ ├── summary-count-plus-formatted-for-locale.png │ │ │ │ ├── summary-no-selection-text-selected.png │ │ │ │ ├── summary-no-selection-text.png │ │ │ │ ├── summary-none-selected.png │ │ │ │ └── summary-some-selected.png │ │ └── selection-mixin │ │ │ └── chromium │ │ │ ├── all-selected-one-disabled-select-all.png │ │ │ ├── all-selected-one-disabled.png │ │ │ ├── disabled-and-some-selected-select-item.png │ │ │ ├── disabled-item-others-selected-select-all.png │ │ │ ├── disabled-item-others-selected.png │ │ │ ├── disabled-item-some-selected-select-all.png │ │ │ ├── disabled-item-some-selected-select-item.png │ │ │ ├── disabled-selected-select-all.png │ │ │ ├── external-multiple-all-selected.png │ │ │ ├── external-multiple-none-selected.png │ │ │ ├── external-multiple-select-all-from-some.png │ │ │ ├── external-multiple-select-all.png │ │ │ ├── external-multiple-select-none.png │ │ │ ├── external-multiple-some-selected.png │ │ │ ├── external-single-none-selected.png │ │ │ ├── external-single-one-selected.png │ │ │ ├── external-single-select.png │ │ │ ├── multiple-all-selected.png │ │ │ ├── multiple-none-selected.png │ │ │ ├── multiple-select-all-from-some.png │ │ │ ├── multiple-select-all.png │ │ │ ├── multiple-select-none.png │ │ │ ├── multiple-some-selected.png │ │ │ ├── single-down-arrow-no-keyup-behavior.png │ │ │ ├── single-down-arrow.png │ │ │ ├── single-left-arrow-rtl.png │ │ │ ├── single-left-arrow.png │ │ │ ├── single-none-selected.png │ │ │ ├── single-one-selected.png │ │ │ ├── single-right-arrow-rtl.png │ │ │ ├── single-right-arrow.png │ │ │ ├── single-select.png │ │ │ ├── single-up-arrow-no-keyup-behavior.png │ │ │ ├── single-up-arrow.png │ │ │ ├── single-wrap-first.png │ │ │ └── single-wrap-last.png │ │ ├── selection-component.js │ │ ├── selection.axe.js │ │ ├── selection.test.js │ │ └── selection.vdiff.js ├── skeleton │ ├── README.md │ ├── demo │ │ ├── skeleton-group-nested-test.js │ │ ├── skeleton-group-test-wrapper.js │ │ ├── skeleton-group-test.js │ │ ├── skeleton-mixin.html │ │ ├── skeleton-test-box.js │ │ ├── skeleton-test-container.js │ │ ├── skeleton-test-heading.js │ │ ├── skeleton-test-link.js │ │ ├── skeleton-test-paragraph.js │ │ ├── skeleton-test-stack.js │ │ └── skeleton-test-width.js │ ├── skeleton-group-mixin.js │ ├── skeleton-mixin.js │ └── test │ │ ├── golden │ │ ├── skeleton-group │ │ │ └── chromium │ │ │ │ ├── add-element.png │ │ │ │ ├── all-skeleton.png │ │ │ │ ├── make-one-not-skeleton.png │ │ │ │ ├── make-one-skeleton.png │ │ │ │ ├── mixed-elements-skeleton.png │ │ │ │ ├── mixed-elements.png │ │ │ │ ├── nested-groups-inner-skeleton.png │ │ │ │ ├── nested-groups-inner.png │ │ │ │ ├── nested-groups-middle-skeleton.png │ │ │ │ ├── nested-groups-middle.png │ │ │ │ ├── nested-groups-outer-skeleton.png │ │ │ │ ├── nested-groups-outer.png │ │ │ │ ├── nested-groups-remove-all-after.png │ │ │ │ ├── nested-groups-remove-all-before.png │ │ │ │ ├── nested-groups-remove-inner.png │ │ │ │ ├── nested-groups-remove-middle.png │ │ │ │ ├── nested-groups-remove-outer.png │ │ │ │ ├── no-skeleton.png │ │ │ │ ├── one-skeleton.png │ │ │ │ └── remove-element.png │ │ └── skeleton │ │ │ └── chromium │ │ │ ├── ltr-box.png │ │ │ ├── ltr-container.png │ │ │ ├── ltr-heading-1-multiline.png │ │ │ ├── ltr-heading-1.png │ │ │ ├── ltr-heading-2-multiline.png │ │ │ ├── ltr-heading-2.png │ │ │ ├── ltr-heading-3-multiline.png │ │ │ ├── ltr-heading-3.png │ │ │ ├── ltr-heading-4-multiline.png │ │ │ ├── ltr-heading-4.png │ │ │ ├── ltr-link-main.png │ │ │ ├── ltr-link-normal.png │ │ │ ├── ltr-link-small.png │ │ │ ├── ltr-stack.png │ │ │ ├── ltr-typography-compact-paragraph-2.png │ │ │ ├── ltr-typography-compact-paragraph-3.png │ │ │ ├── ltr-typography-compact-paragraph-5.png │ │ │ ├── ltr-typography-compact.png │ │ │ ├── ltr-typography-label-paragraph-2.png │ │ │ ├── ltr-typography-label-paragraph-3.png │ │ │ ├── ltr-typography-label-paragraph-5.png │ │ │ ├── ltr-typography-label.png │ │ │ ├── ltr-typography-small-paragraph-2.png │ │ │ ├── ltr-typography-small-paragraph-3.png │ │ │ ├── ltr-typography-small-paragraph-5.png │ │ │ ├── ltr-typography-small.png │ │ │ ├── ltr-typography-standard-paragraph-2.png │ │ │ ├── ltr-typography-standard-paragraph-3.png │ │ │ ├── ltr-typography-standard-paragraph-5.png │ │ │ ├── ltr-typography-standard.png │ │ │ ├── ltr-width.png │ │ │ ├── rtl-box.png │ │ │ ├── rtl-container.png │ │ │ ├── rtl-heading-1-multiline.png │ │ │ ├── rtl-heading-1.png │ │ │ ├── rtl-heading-2-multiline.png │ │ │ ├── rtl-heading-2.png │ │ │ ├── rtl-heading-3-multiline.png │ │ │ ├── rtl-heading-3.png │ │ │ ├── rtl-heading-4-multiline.png │ │ │ ├── rtl-heading-4.png │ │ │ ├── rtl-link-main.png │ │ │ ├── rtl-link-normal.png │ │ │ ├── rtl-link-small.png │ │ │ ├── rtl-stack.png │ │ │ ├── rtl-typography-compact-paragraph-2.png │ │ │ ├── rtl-typography-compact-paragraph-3.png │ │ │ ├── rtl-typography-compact-paragraph-5.png │ │ │ ├── rtl-typography-compact.png │ │ │ ├── rtl-typography-label-paragraph-2.png │ │ │ ├── rtl-typography-label-paragraph-3.png │ │ │ ├── rtl-typography-label-paragraph-5.png │ │ │ ├── rtl-typography-label.png │ │ │ ├── rtl-typography-small-paragraph-2.png │ │ │ ├── rtl-typography-small-paragraph-3.png │ │ │ ├── rtl-typography-small-paragraph-5.png │ │ │ ├── rtl-typography-small.png │ │ │ ├── rtl-typography-standard-paragraph-2.png │ │ │ ├── rtl-typography-standard-paragraph-3.png │ │ │ ├── rtl-typography-standard-paragraph-5.png │ │ │ ├── rtl-typography-standard.png │ │ │ └── rtl-width.png │ │ ├── skeleton-group.vdiff.js │ │ └── skeleton.vdiff.js ├── sorting │ ├── README.md │ ├── demo │ │ └── sort.html │ ├── sort-item.js │ ├── sort.js │ └── test │ │ ├── golden │ │ └── sort │ │ │ └── chromium │ │ │ ├── closed.png │ │ │ ├── disabled.png │ │ │ ├── focused.png │ │ │ └── opened.png │ │ ├── sort-fixtures.js │ │ ├── sort.test.js │ │ └── sort.vdiff.js ├── status-indicator │ ├── README.md │ ├── demo │ │ └── status-indicator.html │ ├── status-indicator.js │ └── test │ │ ├── golden │ │ └── status-indicator │ │ │ └── chromium │ │ │ ├── alert-bold.png │ │ │ ├── alert-subtle.png │ │ │ ├── default-bold.png │ │ │ ├── default-subtle.png │ │ │ ├── no-state-bold.png │ │ │ ├── no-state-subtle.png │ │ │ ├── none-bold.png │ │ │ ├── none-subtle.png │ │ │ ├── success-bold.png │ │ │ └── success-subtle.png │ │ ├── status-indicator.axe.js │ │ ├── status-indicator.test.js │ │ └── status-indicator.vdiff.js ├── switch │ ├── README.md │ ├── demo │ │ └── switch.html │ ├── switch-mixin.js │ ├── switch-visibility.js │ ├── switch.js │ └── test │ │ ├── golden │ │ ├── switch-visibility │ │ │ └── chromium │ │ │ │ ├── ltr-off-text-overridden.png │ │ │ │ ├── ltr-off-with-conditions.png │ │ │ │ ├── ltr-off-with-conditons-text-overridden.png │ │ │ │ ├── ltr-off.png │ │ │ │ ├── ltr-on-text-overridden.png │ │ │ │ ├── ltr-on-text-position-hidden-text-overridden.png │ │ │ │ ├── ltr-on-text-position-hidden.png │ │ │ │ ├── ltr-on-with-conditions-and-conditions-focused.png │ │ │ │ ├── ltr-on-with-conditions-text-overridden.png │ │ │ │ ├── ltr-on-with-conditions-text-position-hidden-text-overridden.png │ │ │ │ ├── ltr-on-with-conditions-text-position-hidden.png │ │ │ │ ├── ltr-on-with-conditions-text-position-start-text-overridden.png │ │ │ │ ├── ltr-on-with-conditions-text-position-start.png │ │ │ │ ├── ltr-on-with-conditions.png │ │ │ │ ├── ltr-on-with-only-whitespace-conditions.png │ │ │ │ ├── ltr-on.png │ │ │ │ ├── rtl-off-text-overridden.png │ │ │ │ ├── rtl-off-with-conditions.png │ │ │ │ ├── rtl-off-with-conditons-text-overridden.png │ │ │ │ ├── rtl-off.png │ │ │ │ ├── rtl-on-text-overridden.png │ │ │ │ ├── rtl-on-text-position-hidden-text-overridden.png │ │ │ │ ├── rtl-on-text-position-hidden.png │ │ │ │ ├── rtl-on-with-conditions-and-conditions-focused.png │ │ │ │ ├── rtl-on-with-conditions-text-overridden.png │ │ │ │ ├── rtl-on-with-conditions-text-position-hidden-text-overridden.png │ │ │ │ ├── rtl-on-with-conditions-text-position-hidden.png │ │ │ │ ├── rtl-on-with-conditions-text-position-start-text-overridden.png │ │ │ │ ├── rtl-on-with-conditions-text-position-start.png │ │ │ │ ├── rtl-on-with-conditions.png │ │ │ │ ├── rtl-on-with-only-whitespace-conditions.png │ │ │ │ └── rtl-on.png │ │ └── switch │ │ │ └── chromium │ │ │ ├── basic-background-color.png │ │ │ ├── basic-disabled-hover.png │ │ │ ├── basic-focus-sibling.png │ │ │ ├── basic-off-disabled.png │ │ │ ├── basic-off-focus.png │ │ │ ├── basic-off-hover.png │ │ │ ├── basic-off.png │ │ │ ├── basic-on-disabled.png │ │ │ ├── basic-on-focus.png │ │ │ ├── basic-on-hover.png │ │ │ ├── basic-on.png │ │ │ ├── basic-text-end.png │ │ │ ├── basic-text-hidden.png │ │ │ ├── basic-text-start.png │ │ │ ├── basic-toggle-off.png │ │ │ ├── basic-toggle-on.png │ │ │ ├── rtl-off.png │ │ │ └── rtl-on.png │ │ ├── switch-visibility.axe.js │ │ ├── switch-visibility.test.js │ │ ├── switch-visibility.vdiff.js │ │ ├── switch.axe.js │ │ ├── switch.test.js │ │ └── switch.vdiff.js ├── table │ ├── README.md │ ├── demo │ │ ├── table-test.js │ │ └── table.html │ ├── table-col-sort-button-item.js │ ├── table-col-sort-button.js │ ├── table-controls.js │ ├── table-wrapper.js │ └── test │ │ ├── golden │ │ └── table │ │ │ └── chromium │ │ │ ├── ltr-default-nonstick-col-sort-button-centered.png │ │ │ ├── ltr-default-nonstick-col-sort-button-dropdown-open-short.png │ │ │ ├── ltr-default-nonstick-col-sort-button-dropdown-open.png │ │ │ ├── ltr-default-nonstick-col-sort-button-dropdown.png │ │ │ ├── ltr-default-nonstick-col-sort-button-end.png │ │ │ ├── ltr-default-nonstick-col-sort-button-focus-middle.png │ │ │ ├── ltr-default-nonstick-col-sort-button-focus.png │ │ │ ├── ltr-default-nonstick-col-sort-button-hover-focus.png │ │ │ ├── ltr-default-nonstick-col-sort-button-hover-middle.png │ │ │ ├── ltr-default-nonstick-col-sort-button-hover.png │ │ │ ├── ltr-default-nonstick-col-sort-button-icon-button-focus-first.png │ │ │ ├── ltr-default-nonstick-col-sort-button-icon-button-focus-second.png │ │ │ ├── ltr-default-nonstick-col-sort-button-icon-button.png │ │ │ ├── ltr-default-nonstick-col-sort-button.png │ │ │ ├── ltr-default-nonstick-empty.png │ │ │ ├── ltr-default-nonstick-footer.png │ │ │ ├── ltr-default-nonstick-no-column-border-legacy.png │ │ │ ├── ltr-default-nonstick-no-column-border.png │ │ │ ├── ltr-default-nonstick-no-header-no-tbody.png │ │ │ ├── ltr-default-nonstick-no-header-tbody.png │ │ │ ├── ltr-default-nonstick-one-cell.png │ │ │ ├── ltr-default-nonstick-one-column.png │ │ │ ├── ltr-default-nonstick-overflow.png │ │ │ ├── ltr-default-nonstick-rowspan.png │ │ │ ├── ltr-default-nonstick-selected-all.png │ │ │ ├── ltr-default-nonstick-selected-one-row.png │ │ │ ├── ltr-default-nonstick-selected-top-bottom.png │ │ │ ├── ltr-default-nonstick-standard-no-thead-attr.png │ │ │ ├── ltr-default-nonstick-standard-no-thead-class.png │ │ │ ├── ltr-default-nonstick-standard-thead.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-focus-first.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-focus-hover-reverse.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-focus-hover.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-focus-second.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-hover-first.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-hover-second.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-wrap-focus-hover-long.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-wrap-focus-hover-reverse.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button-wrap.png │ │ │ ├── ltr-default-nonstick-two-col-sort-button.png │ │ │ ├── ltr-default-nonstick-vertical-align.png │ │ │ ├── ltr-default-nonstick-wrapper-component.png │ │ │ ├── ltr-default-paging-table-with-paging.png │ │ │ ├── ltr-default-sticky-fixed-column-attr-down.png │ │ │ ├── ltr-default-sticky-fixed-column-attr-over.png │ │ │ ├── ltr-default-sticky-fixed-column-attr-top.png │ │ │ ├── ltr-default-sticky-fixed-column-class-down.png │ │ │ ├── ltr-default-sticky-fixed-column-class-over.png │ │ │ ├── ltr-default-sticky-fixed-column-class-top.png │ │ │ ├── ltr-default-sticky-grades-column-header-over.png │ │ │ ├── ltr-default-sticky-grades-column-header-top.png │ │ │ ├── ltr-default-sticky-grades-row-header-over.png │ │ │ ├── ltr-default-sticky-grades-row-header-top.png │ │ │ ├── ltr-default-sticky-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── ltr-default-sticky-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── ltr-default-sticky-multi-row-no-thead-attr-down.png │ │ │ ├── ltr-default-sticky-multi-row-no-thead-attr-top.png │ │ │ ├── ltr-default-sticky-multi-row-no-thead-class-down.png │ │ │ ├── ltr-default-sticky-multi-row-no-thead-class-top.png │ │ │ ├── ltr-default-sticky-multi-row-thead-down.png │ │ │ ├── ltr-default-sticky-multi-row-thead-top.png │ │ │ ├── ltr-default-sticky-one-column.png │ │ │ ├── ltr-default-sticky-one-row-no-thead-attr-down.png │ │ │ ├── ltr-default-sticky-one-row-no-thead-attr-top.png │ │ │ ├── ltr-default-sticky-one-row-no-thead-class-down.png │ │ │ ├── ltr-default-sticky-one-row-no-thead-class-top.png │ │ │ ├── ltr-default-sticky-one-row-thead-down.png │ │ │ ├── ltr-default-sticky-one-row-thead-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-attr-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-attr-over.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-attr-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-class-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-class-over.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-fixed-column-class-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-no-thead-attr-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-no-thead-class-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-thead-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-multi-row-thead-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-one-column.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-one-row-no-thead-attr-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-one-row-no-thead-class-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-one-row-thead-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-one-row-thead-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-selected-all-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-selected-one-row-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-selected-top-bottom-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-column-header-over.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-column-header-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-row-header-over.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-row-header-top.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-multi-row-no-thead-attr-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-multi-row-no-thead-class-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-one-row-no-thead-attr-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-one-row-no-thead-class-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-all-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-one-row-down.png │ │ │ ├── ltr-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-top-bottom-down.png │ │ │ ├── ltr-default-sticky-selected-all-down.png │ │ │ ├── ltr-default-sticky-selected-all-top.png │ │ │ ├── ltr-default-sticky-selected-one-row-down.png │ │ │ ├── ltr-default-sticky-selected-one-row-top.png │ │ │ ├── ltr-default-sticky-selected-top-bottom-down.png │ │ │ ├── ltr-default-sticky-selected-top-bottom-top.png │ │ │ ├── ltr-default-table-controls-all-sticky-1-top.png │ │ │ ├── ltr-default-table-controls-all-sticky-2-scrolled.png │ │ │ ├── ltr-default-table-controls-no-sticky-1-top.png │ │ │ ├── ltr-default-table-controls-no-sticky-2-scrolled.png │ │ │ ├── ltr-default-table-controls-sticky-controls-1-top.png │ │ │ ├── ltr-default-table-controls-sticky-controls-2-scrolled.png │ │ │ ├── ltr-default-table-controls-visible-background-1-top.png │ │ │ ├── ltr-default-table-controls-visible-background-2-scrolled.png │ │ │ ├── ltr-light-nonstick-col-sort-button-centered.png │ │ │ ├── ltr-light-nonstick-col-sort-button-dropdown-open-short.png │ │ │ ├── ltr-light-nonstick-col-sort-button-dropdown-open.png │ │ │ ├── ltr-light-nonstick-col-sort-button-dropdown.png │ │ │ ├── ltr-light-nonstick-col-sort-button-end.png │ │ │ ├── ltr-light-nonstick-col-sort-button-focus-middle.png │ │ │ ├── ltr-light-nonstick-col-sort-button-focus.png │ │ │ ├── ltr-light-nonstick-col-sort-button-hover-focus.png │ │ │ ├── ltr-light-nonstick-col-sort-button-hover-middle.png │ │ │ ├── ltr-light-nonstick-col-sort-button-hover.png │ │ │ ├── ltr-light-nonstick-col-sort-button-icon-button-focus-first.png │ │ │ ├── ltr-light-nonstick-col-sort-button-icon-button-focus-second.png │ │ │ ├── ltr-light-nonstick-col-sort-button-icon-button.png │ │ │ ├── ltr-light-nonstick-col-sort-button.png │ │ │ ├── ltr-light-nonstick-empty.png │ │ │ ├── ltr-light-nonstick-footer.png │ │ │ ├── ltr-light-nonstick-no-column-border-legacy.png │ │ │ ├── ltr-light-nonstick-no-column-border.png │ │ │ ├── ltr-light-nonstick-no-header-no-tbody.png │ │ │ ├── ltr-light-nonstick-no-header-tbody.png │ │ │ ├── ltr-light-nonstick-one-cell.png │ │ │ ├── ltr-light-nonstick-one-column.png │ │ │ ├── ltr-light-nonstick-overflow.png │ │ │ ├── ltr-light-nonstick-rowspan.png │ │ │ ├── ltr-light-nonstick-selected-all.png │ │ │ ├── ltr-light-nonstick-selected-one-row.png │ │ │ ├── ltr-light-nonstick-selected-top-bottom.png │ │ │ ├── ltr-light-nonstick-standard-no-thead-attr.png │ │ │ ├── ltr-light-nonstick-standard-no-thead-class.png │ │ │ ├── ltr-light-nonstick-standard-thead.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-focus-first.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-focus-hover-reverse.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-focus-hover.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-focus-second.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-hover-first.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-hover-second.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-wrap-focus-hover-long.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-wrap-focus-hover-reverse.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button-wrap.png │ │ │ ├── ltr-light-nonstick-two-col-sort-button.png │ │ │ ├── ltr-light-nonstick-vertical-align.png │ │ │ ├── ltr-light-nonstick-wrapper-component.png │ │ │ ├── ltr-light-paging-table-with-paging.png │ │ │ ├── ltr-light-sticky-fixed-column-attr-down.png │ │ │ ├── ltr-light-sticky-fixed-column-attr-over.png │ │ │ ├── ltr-light-sticky-fixed-column-attr-top.png │ │ │ ├── ltr-light-sticky-fixed-column-class-down.png │ │ │ ├── ltr-light-sticky-fixed-column-class-over.png │ │ │ ├── ltr-light-sticky-fixed-column-class-top.png │ │ │ ├── ltr-light-sticky-grades-column-header-over.png │ │ │ ├── ltr-light-sticky-grades-column-header-top.png │ │ │ ├── ltr-light-sticky-grades-row-header-over.png │ │ │ ├── ltr-light-sticky-grades-row-header-top.png │ │ │ ├── ltr-light-sticky-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── ltr-light-sticky-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── ltr-light-sticky-multi-row-no-thead-attr-down.png │ │ │ ├── ltr-light-sticky-multi-row-no-thead-attr-top.png │ │ │ ├── ltr-light-sticky-multi-row-no-thead-class-down.png │ │ │ ├── ltr-light-sticky-multi-row-no-thead-class-top.png │ │ │ ├── ltr-light-sticky-multi-row-thead-down.png │ │ │ ├── ltr-light-sticky-multi-row-thead-top.png │ │ │ ├── ltr-light-sticky-one-column.png │ │ │ ├── ltr-light-sticky-one-row-no-thead-attr-down.png │ │ │ ├── ltr-light-sticky-one-row-no-thead-attr-top.png │ │ │ ├── ltr-light-sticky-one-row-no-thead-class-down.png │ │ │ ├── ltr-light-sticky-one-row-no-thead-class-top.png │ │ │ ├── ltr-light-sticky-one-row-thead-down.png │ │ │ ├── ltr-light-sticky-one-row-thead-top.png │ │ │ ├── ltr-light-sticky-selected-all-down.png │ │ │ ├── ltr-light-sticky-selected-all-top.png │ │ │ ├── ltr-light-sticky-selected-one-row-down.png │ │ │ ├── ltr-light-sticky-selected-one-row-top.png │ │ │ ├── ltr-light-sticky-selected-top-bottom-down.png │ │ │ ├── ltr-light-sticky-selected-top-bottom-top.png │ │ │ ├── ltr-light-table-controls-all-sticky-1-top.png │ │ │ ├── ltr-light-table-controls-all-sticky-2-scrolled.png │ │ │ ├── ltr-light-table-controls-no-sticky-1-top.png │ │ │ ├── ltr-light-table-controls-no-sticky-2-scrolled.png │ │ │ ├── ltr-light-table-controls-sticky-controls-1-top.png │ │ │ ├── ltr-light-table-controls-sticky-controls-2-scrolled.png │ │ │ ├── ltr-light-table-controls-visible-background-1-top.png │ │ │ ├── ltr-light-table-controls-visible-background-2-scrolled.png │ │ │ ├── mutations-rounded-corners-add-column.png │ │ │ ├── mutations-rounded-corners-add-then-remove-column.png │ │ │ ├── mutations-rounded-corners-first-removed.png │ │ │ ├── mutations-rounded-corners-last-removed.png │ │ │ ├── mutations-selection-first-removed.png │ │ │ ├── mutations-selection-last-removed.png │ │ │ ├── rtl-default-nonstick-col-sort-button-centered.png │ │ │ ├── rtl-default-nonstick-col-sort-button-dropdown-open-short.png │ │ │ ├── rtl-default-nonstick-col-sort-button-dropdown-open.png │ │ │ ├── rtl-default-nonstick-col-sort-button-dropdown.png │ │ │ ├── rtl-default-nonstick-col-sort-button-end.png │ │ │ ├── rtl-default-nonstick-col-sort-button-focus-middle.png │ │ │ ├── rtl-default-nonstick-col-sort-button-focus.png │ │ │ ├── rtl-default-nonstick-col-sort-button-hover-focus.png │ │ │ ├── rtl-default-nonstick-col-sort-button-hover-middle.png │ │ │ ├── rtl-default-nonstick-col-sort-button-hover.png │ │ │ ├── rtl-default-nonstick-col-sort-button-icon-button-focus-first.png │ │ │ ├── rtl-default-nonstick-col-sort-button-icon-button-focus-second.png │ │ │ ├── rtl-default-nonstick-col-sort-button-icon-button.png │ │ │ ├── rtl-default-nonstick-col-sort-button.png │ │ │ ├── rtl-default-nonstick-empty.png │ │ │ ├── rtl-default-nonstick-footer.png │ │ │ ├── rtl-default-nonstick-no-column-border-legacy.png │ │ │ ├── rtl-default-nonstick-no-column-border.png │ │ │ ├── rtl-default-nonstick-no-header-no-tbody.png │ │ │ ├── rtl-default-nonstick-no-header-tbody.png │ │ │ ├── rtl-default-nonstick-one-cell.png │ │ │ ├── rtl-default-nonstick-one-column.png │ │ │ ├── rtl-default-nonstick-overflow.png │ │ │ ├── rtl-default-nonstick-rowspan.png │ │ │ ├── rtl-default-nonstick-selected-all.png │ │ │ ├── rtl-default-nonstick-selected-one-row.png │ │ │ ├── rtl-default-nonstick-selected-top-bottom.png │ │ │ ├── rtl-default-nonstick-standard-no-thead-attr.png │ │ │ ├── rtl-default-nonstick-standard-no-thead-class.png │ │ │ ├── rtl-default-nonstick-standard-thead.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-focus-first.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-focus-hover-reverse.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-focus-hover.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-focus-second.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-hover-first.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-hover-second.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-wrap-focus-hover-long.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-wrap-focus-hover-reverse.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button-wrap.png │ │ │ ├── rtl-default-nonstick-two-col-sort-button.png │ │ │ ├── rtl-default-nonstick-vertical-align.png │ │ │ ├── rtl-default-nonstick-wrapper-component.png │ │ │ ├── rtl-default-paging-table-with-paging.png │ │ │ ├── rtl-default-sticky-fixed-column-attr-down.png │ │ │ ├── rtl-default-sticky-fixed-column-attr-over.png │ │ │ ├── rtl-default-sticky-fixed-column-attr-top.png │ │ │ ├── rtl-default-sticky-fixed-column-class-down.png │ │ │ ├── rtl-default-sticky-fixed-column-class-over.png │ │ │ ├── rtl-default-sticky-fixed-column-class-top.png │ │ │ ├── rtl-default-sticky-grades-column-header-over.png │ │ │ ├── rtl-default-sticky-grades-column-header-top.png │ │ │ ├── rtl-default-sticky-grades-row-header-over.png │ │ │ ├── rtl-default-sticky-grades-row-header-top.png │ │ │ ├── rtl-default-sticky-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── rtl-default-sticky-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── rtl-default-sticky-multi-row-no-thead-attr-down.png │ │ │ ├── rtl-default-sticky-multi-row-no-thead-attr-top.png │ │ │ ├── rtl-default-sticky-multi-row-no-thead-class-down.png │ │ │ ├── rtl-default-sticky-multi-row-no-thead-class-top.png │ │ │ ├── rtl-default-sticky-multi-row-thead-down.png │ │ │ ├── rtl-default-sticky-multi-row-thead-top.png │ │ │ ├── rtl-default-sticky-one-column.png │ │ │ ├── rtl-default-sticky-one-row-no-thead-attr-down.png │ │ │ ├── rtl-default-sticky-one-row-no-thead-attr-top.png │ │ │ ├── rtl-default-sticky-one-row-no-thead-class-down.png │ │ │ ├── rtl-default-sticky-one-row-no-thead-class-top.png │ │ │ ├── rtl-default-sticky-one-row-thead-down.png │ │ │ ├── rtl-default-sticky-one-row-thead-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-attr-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-attr-over.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-attr-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-class-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-class-over.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-fixed-column-class-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-no-thead-attr-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-no-thead-class-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-thead-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-multi-row-thead-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-one-column.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-one-row-no-thead-attr-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-one-row-no-thead-class-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-one-row-thead-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-one-row-thead-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-selected-all-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-selected-one-row-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-selected-top-bottom-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-column-header-over.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-column-header-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-row-header-over.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-dropdown-is-cutoff-grades-row-header-top.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-multi-row-no-thead-attr-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-multi-row-no-thead-class-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-one-row-no-thead-attr-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-one-row-no-thead-class-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-all-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-one-row-down.png │ │ │ ├── rtl-default-sticky-scroll-wrapper-warning-headings-are-missing-selected-top-bottom-down.png │ │ │ ├── rtl-default-sticky-selected-all-down.png │ │ │ ├── rtl-default-sticky-selected-all-top.png │ │ │ ├── rtl-default-sticky-selected-one-row-down.png │ │ │ ├── rtl-default-sticky-selected-one-row-top.png │ │ │ ├── rtl-default-sticky-selected-top-bottom-down.png │ │ │ ├── rtl-default-sticky-selected-top-bottom-top.png │ │ │ ├── rtl-default-table-controls-all-sticky-1-top.png │ │ │ ├── rtl-default-table-controls-all-sticky-2-scrolled.png │ │ │ ├── rtl-default-table-controls-no-sticky-1-top.png │ │ │ ├── rtl-default-table-controls-no-sticky-2-scrolled.png │ │ │ ├── rtl-default-table-controls-sticky-controls-1-top.png │ │ │ ├── rtl-default-table-controls-sticky-controls-2-scrolled.png │ │ │ ├── rtl-default-table-controls-visible-background-1-top.png │ │ │ ├── rtl-default-table-controls-visible-background-2-scrolled.png │ │ │ ├── rtl-light-nonstick-col-sort-button-centered.png │ │ │ ├── rtl-light-nonstick-col-sort-button-dropdown-open-short.png │ │ │ ├── rtl-light-nonstick-col-sort-button-dropdown-open.png │ │ │ ├── rtl-light-nonstick-col-sort-button-dropdown.png │ │ │ ├── rtl-light-nonstick-col-sort-button-end.png │ │ │ ├── rtl-light-nonstick-col-sort-button-focus-middle.png │ │ │ ├── rtl-light-nonstick-col-sort-button-focus.png │ │ │ ├── rtl-light-nonstick-col-sort-button-hover-focus.png │ │ │ ├── rtl-light-nonstick-col-sort-button-hover-middle.png │ │ │ ├── rtl-light-nonstick-col-sort-button-hover.png │ │ │ ├── rtl-light-nonstick-col-sort-button-icon-button-focus-first.png │ │ │ ├── rtl-light-nonstick-col-sort-button-icon-button-focus-second.png │ │ │ ├── rtl-light-nonstick-col-sort-button-icon-button.png │ │ │ ├── rtl-light-nonstick-col-sort-button.png │ │ │ ├── rtl-light-nonstick-empty.png │ │ │ ├── rtl-light-nonstick-footer.png │ │ │ ├── rtl-light-nonstick-no-column-border-legacy.png │ │ │ ├── rtl-light-nonstick-no-column-border.png │ │ │ ├── rtl-light-nonstick-no-header-no-tbody.png │ │ │ ├── rtl-light-nonstick-no-header-tbody.png │ │ │ ├── rtl-light-nonstick-one-cell.png │ │ │ ├── rtl-light-nonstick-one-column.png │ │ │ ├── rtl-light-nonstick-overflow.png │ │ │ ├── rtl-light-nonstick-rowspan.png │ │ │ ├── rtl-light-nonstick-selected-all.png │ │ │ ├── rtl-light-nonstick-selected-one-row.png │ │ │ ├── rtl-light-nonstick-selected-top-bottom.png │ │ │ ├── rtl-light-nonstick-standard-no-thead-attr.png │ │ │ ├── rtl-light-nonstick-standard-no-thead-class.png │ │ │ ├── rtl-light-nonstick-standard-thead.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-focus-first.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-focus-hover-reverse.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-focus-hover.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-focus-second.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-hover-first.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-hover-second.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-wrap-focus-hover-long.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-wrap-focus-hover-reverse.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button-wrap.png │ │ │ ├── rtl-light-nonstick-two-col-sort-button.png │ │ │ ├── rtl-light-nonstick-vertical-align.png │ │ │ ├── rtl-light-nonstick-wrapper-component.png │ │ │ ├── rtl-light-paging-table-with-paging.png │ │ │ ├── rtl-light-sticky-fixed-column-attr-down.png │ │ │ ├── rtl-light-sticky-fixed-column-attr-over.png │ │ │ ├── rtl-light-sticky-fixed-column-attr-top.png │ │ │ ├── rtl-light-sticky-fixed-column-class-down.png │ │ │ ├── rtl-light-sticky-fixed-column-class-over.png │ │ │ ├── rtl-light-sticky-fixed-column-class-top.png │ │ │ ├── rtl-light-sticky-grades-column-header-over.png │ │ │ ├── rtl-light-sticky-grades-column-header-top.png │ │ │ ├── rtl-light-sticky-grades-row-header-over.png │ │ │ ├── rtl-light-sticky-grades-row-header-top.png │ │ │ ├── rtl-light-sticky-multi-row-col-sort-button-dropdown-open.png │ │ │ ├── rtl-light-sticky-multi-row-col-sort-button-tooltip-open.png │ │ │ ├── rtl-light-sticky-multi-row-no-thead-attr-down.png │ │ │ ├── rtl-light-sticky-multi-row-no-thead-attr-top.png │ │ │ ├── rtl-light-sticky-multi-row-no-thead-class-down.png │ │ │ ├── rtl-light-sticky-multi-row-no-thead-class-top.png │ │ │ ├── rtl-light-sticky-multi-row-thead-down.png │ │ │ ├── rtl-light-sticky-multi-row-thead-top.png │ │ │ ├── rtl-light-sticky-one-column.png │ │ │ ├── rtl-light-sticky-one-row-no-thead-attr-down.png │ │ │ ├── rtl-light-sticky-one-row-no-thead-attr-top.png │ │ │ ├── rtl-light-sticky-one-row-no-thead-class-down.png │ │ │ ├── rtl-light-sticky-one-row-no-thead-class-top.png │ │ │ ├── rtl-light-sticky-one-row-thead-down.png │ │ │ ├── rtl-light-sticky-one-row-thead-top.png │ │ │ ├── rtl-light-sticky-selected-all-down.png │ │ │ ├── rtl-light-sticky-selected-all-top.png │ │ │ ├── rtl-light-sticky-selected-one-row-down.png │ │ │ ├── rtl-light-sticky-selected-one-row-top.png │ │ │ ├── rtl-light-sticky-selected-top-bottom-down.png │ │ │ ├── rtl-light-sticky-selected-top-bottom-top.png │ │ │ ├── rtl-light-table-controls-all-sticky-1-top.png │ │ │ ├── rtl-light-table-controls-all-sticky-2-scrolled.png │ │ │ ├── rtl-light-table-controls-no-sticky-1-top.png │ │ │ ├── rtl-light-table-controls-no-sticky-2-scrolled.png │ │ │ ├── rtl-light-table-controls-sticky-controls-1-top.png │ │ │ ├── rtl-light-table-controls-sticky-controls-2-scrolled.png │ │ │ ├── rtl-light-table-controls-visible-background-1-top.png │ │ │ └── rtl-light-table-controls-visible-background-2-scrolled.png │ │ ├── table-col-sort-button.axe.js │ │ ├── table.test.js │ │ └── table.vdiff.js ├── tabs │ ├── README.md │ ├── demo │ │ ├── tab-custom.js │ │ ├── tabs-array.js │ │ └── tabs.html │ ├── tab-internal.js │ ├── tab-mixin.js │ ├── tab-panel-mixin.js │ ├── tab-panel.js │ ├── tab.js │ ├── tabs.js │ └── test │ │ ├── golden │ │ └── tabs │ │ │ └── chromium │ │ │ ├── basic-action-slot.png │ │ │ ├── basic-all-tabs-hidden.png │ │ │ ├── basic-clicked-with-state-managed-by-consumer-then-reset.png │ │ │ ├── basic-clicked-with-state-managed-by-consumer-then-selected.png │ │ │ ├── basic-clicked-with-state-managed-by-consumer.png │ │ │ ├── basic-ellipsis.png │ │ │ ├── basic-hidden-tab.png │ │ │ ├── basic-hide-another-tab.png │ │ │ ├── basic-no-padding.png │ │ │ ├── basic-no-panel-selected.png │ │ │ ├── basic-non-selected-tab-focus.png │ │ │ ├── basic-one-tab.png │ │ │ ├── basic-panel-selected.png │ │ │ ├── basic-selected-tab-focus.png │ │ │ ├── basic-skeleton-no-text.png │ │ │ ├── basic-skeleton.png │ │ │ ├── basic-unhide-all-tabs.png │ │ │ ├── basic-unhide-hidden-tab.png │ │ │ ├── deprecated-structure-basic-no-panel-selected.png │ │ │ ├── deprecated-structure-basic-one-tab.png │ │ │ ├── deprecated-structure-basic-panel-selected.png │ │ │ ├── deprecated-structure-keyboard-focuses-next-on-right-arrow.png │ │ │ ├── deprecated-structure-keyboard-selects-on-enter.png │ │ │ ├── deprecated-structure-keyboard-selects-on-space.png │ │ │ ├── deprecated-structure-overflow-ltr-action-slot.png │ │ │ ├── deprecated-structure-overflow-ltr-focus-next.png │ │ │ ├── deprecated-structure-overflow-ltr-scroll-next.png │ │ │ ├── deprecated-structure-overflow-ltr-scrolls-next-on-click.png │ │ │ ├── deprecated-structure-overflow-rtl-action-slot.png │ │ │ ├── deprecated-structure-overflow-rtl-focus-next.png │ │ │ ├── deprecated-structure-overflow-rtl-scroll-next.png │ │ │ ├── deprecated-structure-overflow-rtl-scrolls-next-on-click.png │ │ │ ├── keyboard-focuses-first-on-right-arrow-from-last.png │ │ │ ├── keyboard-focuses-last-on-left-arrow-from-first.png │ │ │ ├── keyboard-focuses-next-on-right-arrow.png │ │ │ ├── keyboard-focuses-previous-on-left-arrow.png │ │ │ ├── keyboard-selects-on-enter.png │ │ │ ├── keyboard-selects-on-space.png │ │ │ ├── max-to-show-expands-on-focus-to-overflow.png │ │ │ ├── max-to-show-expands-on-scroll-next-click.png │ │ │ ├── max-to-show-initial.png │ │ │ ├── overflow-ltr-action-slot.png │ │ │ ├── overflow-ltr-focus-next.png │ │ │ ├── overflow-ltr-focus-previous.png │ │ │ ├── overflow-ltr-scroll-next.png │ │ │ ├── overflow-ltr-scroll-previous.png │ │ │ ├── overflow-ltr-scrolls-next-on-click.png │ │ │ ├── overflow-ltr-scrolls-previous-on-click.png │ │ │ ├── overflow-rtl-action-slot.png │ │ │ ├── overflow-rtl-focus-next.png │ │ │ ├── overflow-rtl-focus-previous.png │ │ │ ├── overflow-rtl-scroll-next.png │ │ │ ├── overflow-rtl-scroll-previous.png │ │ │ ├── overflow-rtl-scrolls-next-on-click.png │ │ │ ├── overflow-rtl-scrolls-previous-on-click.png │ │ │ ├── slots-default.png │ │ │ ├── slots-focus-both-slots.png │ │ │ ├── slots-focus.png │ │ │ ├── slots-handles-multiples-correctly.png │ │ │ ├── slots-hover-with-icon-when-not-selected.png │ │ │ ├── slots-hover-with-icon-when-selected.png │ │ │ ├── slots-skeleton-no-text.png │ │ │ └── slots-skeleton.png │ │ ├── tabs.axe.js │ │ ├── tabs.test.js │ │ └── tabs.vdiff.js ├── tag-list │ ├── README.md │ ├── demo │ │ └── tag-list.html │ ├── tag-list-item-mixin.js │ ├── tag-list-item.js │ ├── tag-list.js │ └── test │ │ ├── golden │ │ └── tag-list │ │ │ └── chromium │ │ │ ├── clear-button-hidden.png │ │ │ ├── clearable-behavior-click-clear-all.png │ │ │ ├── clearable-behavior-delete-first-item.png │ │ │ ├── clearable-behavior-delete-last-visible-item.png │ │ │ ├── clearable-width-320-add-items.png │ │ │ ├── clearable-width-320-show-more.png │ │ │ ├── clearable-width-320.png │ │ │ ├── clearable-width-440-add-items.png │ │ │ ├── clearable-width-440-show-more.png │ │ │ ├── clearable-width-440.png │ │ │ ├── clearable-width-599-add-items.png │ │ │ ├── clearable-width-599-show-more.png │ │ │ ├── clearable-width-599.png │ │ │ ├── clearable-width-601-add-items.png │ │ │ ├── clearable-width-601-show-more.png │ │ │ ├── clearable-width-601.png │ │ │ ├── clearable-width-969-add-items.png │ │ │ ├── clearable-width-969-show-more.png │ │ │ ├── clearable-width-969.png │ │ │ ├── clearable-width-980-add-items.png │ │ │ ├── clearable-width-980-show-more.png │ │ │ ├── clearable-width-980.png │ │ │ ├── default-width-320-add-items.png │ │ │ ├── default-width-320-show-more.png │ │ │ ├── default-width-320.png │ │ │ ├── default-width-440-add-items.png │ │ │ ├── default-width-440-show-more.png │ │ │ ├── default-width-440.png │ │ │ ├── default-width-599-add-items.png │ │ │ ├── default-width-599-show-more.png │ │ │ ├── default-width-599.png │ │ │ ├── default-width-601-add-items.png │ │ │ ├── default-width-601-show-more.png │ │ │ ├── default-width-601.png │ │ │ ├── default-width-969-add-items.png │ │ │ ├── default-width-969-show-more.png │ │ │ ├── default-width-969.png │ │ │ ├── default-width-980-add-items.png │ │ │ ├── default-width-980-show-more.png │ │ │ ├── default-width-980.png │ │ │ ├── interactive-focus.png │ │ │ ├── interactive-normal.png │ │ │ ├── large-page-width.png │ │ │ ├── tag-list-item-style-focus-and-hover.png │ │ │ ├── tag-list-item-style-focus-first-elem-long.png │ │ │ ├── tag-list-item-style-focus-twice.png │ │ │ ├── tag-list-item-style-focus.png │ │ │ ├── tag-list-item-style-hover-first-elem-description.png │ │ │ ├── tag-list-item-style-hover-first-elem-long.png │ │ │ ├── tag-list-item-style-hover-then-focus-first-elem-long.png │ │ │ └── tag-list-item-style-hover.png │ │ ├── tag-list-item-mixin-consumer.js │ │ ├── tag-list.axe.js │ │ ├── tag-list.test.js │ │ └── tag-list.vdiff.js ├── tooltip │ ├── README.md │ ├── demo │ │ └── tooltip.html │ ├── test │ │ ├── golden │ │ │ ├── tooltip-help │ │ │ │ └── chromium │ │ │ │ │ ├── clicked.png │ │ │ │ │ ├── focused.png │ │ │ │ │ ├── hidden.png │ │ │ │ │ ├── hovered-and-focused.png │ │ │ │ │ ├── hovered.png │ │ │ │ │ ├── icon-property-icon.png │ │ │ │ │ ├── icon-slotted-icon.png │ │ │ │ │ ├── inherit-font-style-in-paragraph-en.png │ │ │ │ │ ├── inherit-font-style-in-sentence-ar.png │ │ │ │ │ ├── inherit-font-style-in-sentence-en.png │ │ │ │ │ ├── ordered-list.png │ │ │ │ │ ├── skeleton-and-focused.png │ │ │ │ │ ├── skeleton-and-hovered-and-focused.png │ │ │ │ │ ├── skeleton-and-hovered.png │ │ │ │ │ ├── skeleton.png │ │ │ │ │ ├── unordered-list.png │ │ │ │ │ ├── wrapping-text-default.png │ │ │ │ │ └── wrapping-text-hover.png │ │ │ ├── tooltip-truncating │ │ │ │ └── chromium │ │ │ │ │ ├── button-not-truncating.png │ │ │ │ │ ├── button-truncating.png │ │ │ │ │ ├── link-not-truncating.png │ │ │ │ │ └── link-truncating.png │ │ │ └── tooltip │ │ │ │ └── chromium │ │ │ │ ├── align-end-narrow.png │ │ │ │ ├── align-end-rtl.png │ │ │ │ ├── align-end.png │ │ │ │ ├── align-start-narrow.png │ │ │ │ ├── align-start-rtl.png │ │ │ │ ├── align-start.png │ │ │ │ ├── bottom-left.png │ │ │ │ ├── bottom-middle.png │ │ │ │ ├── bottom-right.png │ │ │ │ ├── boundary-bottom-left.png │ │ │ │ ├── boundary-top-right.png │ │ │ │ ├── bounded.png │ │ │ │ ├── dark-background-position-bottom.png │ │ │ │ ├── dark-background-position-left.png │ │ │ │ ├── dark-background-position-right.png │ │ │ │ ├── dark-background-position-top.png │ │ │ │ ├── dialog-odd-width.png │ │ │ │ ├── horizontal-rtl.png │ │ │ │ ├── horizontal.png │ │ │ │ ├── long-text-wrap.png │ │ │ │ ├── max-width.png │ │ │ │ ├── middle-left.png │ │ │ │ ├── middle-right.png │ │ │ │ ├── min-width.png │ │ │ │ ├── position-bottom.png │ │ │ │ ├── position-left-rtl.png │ │ │ │ ├── position-left.png │ │ │ │ ├── position-right-rtl.png │ │ │ │ ├── position-right.png │ │ │ │ ├── position-top.png │ │ │ │ ├── scrolling-boundingcontainer-(0,100).png │ │ │ │ ├── scrolling-boundingcontainer-(25,100).png │ │ │ │ ├── scrolling-boundingcontainer-(50,100).png │ │ │ │ ├── scrolling-offsetparent-(0,100).png │ │ │ │ ├── scrolling-offsetparent-(25,100).png │ │ │ │ ├── scrolling-offsetparent-(50,100).png │ │ │ │ ├── too-big-for-space.png │ │ │ │ ├── top-left.png │ │ │ │ ├── top-middle.png │ │ │ │ ├── top-right.png │ │ │ │ ├── wide-target-horizontal.png │ │ │ │ └── wide-target-vertical.png │ │ ├── tooltip-help.axe.js │ │ ├── tooltip-help.test.js │ │ ├── tooltip-help.vdiff.js │ │ ├── tooltip-truncating.vdiff.js │ │ ├── tooltip.axe.js │ │ ├── tooltip.test.js │ │ └── tooltip.vdiff.js │ ├── tooltip-help.js │ └── tooltip.js ├── typography │ ├── README.md │ ├── demo │ │ └── typography.html │ ├── styles.js │ ├── test │ │ ├── golden │ │ │ └── typography │ │ │ │ └── chromium │ │ │ │ ├── narrow-bcsans.png │ │ │ │ ├── narrow-blockquote-rtl.png │ │ │ │ ├── narrow-blockquote.png │ │ │ │ ├── narrow-body-compact.png │ │ │ │ ├── narrow-body-small.png │ │ │ │ ├── narrow-body-standard.png │ │ │ │ ├── narrow-heading-1-focus.png │ │ │ │ ├── narrow-heading-1.png │ │ │ │ ├── narrow-heading-2-focus.png │ │ │ │ ├── narrow-heading-2.png │ │ │ │ ├── narrow-heading-3-focus.png │ │ │ │ ├── narrow-heading-3.png │ │ │ │ ├── narrow-heading-4-focus.png │ │ │ │ ├── narrow-heading-4.png │ │ │ │ ├── narrow-label.png │ │ │ │ ├── narrow-paragraph.png │ │ │ │ ├── wide-bcsans.png │ │ │ │ ├── wide-blockquote-rtl.png │ │ │ │ ├── wide-blockquote.png │ │ │ │ ├── wide-body-compact.png │ │ │ │ ├── wide-body-small.png │ │ │ │ ├── wide-body-standard.png │ │ │ │ ├── wide-heading-1-focus.png │ │ │ │ ├── wide-heading-1.png │ │ │ │ ├── wide-heading-2-focus.png │ │ │ │ ├── wide-heading-2.png │ │ │ │ ├── wide-heading-3-focus.png │ │ │ │ ├── wide-heading-3.png │ │ │ │ ├── wide-heading-4-focus.png │ │ │ │ ├── wide-heading-4.png │ │ │ │ ├── wide-label.png │ │ │ │ └── wide-paragraph.png │ │ ├── styles.test.js │ │ ├── typography-shared-contents.js │ │ └── typography.vdiff.js │ ├── typography.js │ └── typography.scss └── validation │ ├── README.md │ ├── test │ └── validation-custom.test.js │ ├── validation-custom-mixin.js │ └── validation-custom.js ├── controllers └── subscriber │ ├── README.md │ ├── subscriberControllers.js │ └── test │ └── subscriberControllers.test.js ├── core.serge.json ├── d2l-test-reporting.config.json ├── d2l-test-runner.config.js ├── directives ├── animate │ ├── README.md │ ├── animate.js │ ├── demo │ │ ├── animate-test.js │ │ └── index.html │ └── test │ │ └── animate.test.js └── run-async │ ├── run-async.js │ └── test │ └── run-async.test.js ├── eslint.config.js ├── helpers ├── README.md ├── announce.js ├── asyncStateEvent.js ├── color.js ├── composeMixins.js ├── contrast.js ├── dateTime.js ├── demo │ ├── announce-test.js │ ├── announce.html │ ├── dismissible-test.js │ ├── dismissible.html │ ├── gestures.html │ ├── prism.html │ └── template-tags.html ├── dismissible.js ├── dom.js ├── embeds.js ├── error.js ├── flags.js ├── focus.js ├── framed.js ├── gestures.js ├── getLocalizeResources.js ├── ifrauBackdropService.js ├── interactive.js ├── internal │ ├── css.js │ └── waitForElem.js ├── localize-core-element.js ├── mathjax.js ├── offsetParent-legacy.js ├── overflow.js ├── perfMonitor.js ├── plugins.js ├── prism.js ├── queueMicrotask.js ├── requestIdleCallback.js ├── svg-to-css.js ├── template-tags.js ├── test │ ├── color.test.js │ ├── contrast.test.js │ ├── dateTime.test.js │ ├── dismissible.test.js │ ├── dom.test.js │ ├── error.test.js │ ├── flags.test.js │ ├── focus.test.js │ ├── golden │ │ └── prism-helper │ │ │ └── chromium │ │ │ ├── general-block-dark.png │ │ │ ├── general-block-light.png │ │ │ ├── general-block-line-numbers-dark.png │ │ │ ├── general-block-line-numbers-light.png │ │ │ ├── general-inline-dark.png │ │ │ ├── general-inline-light.png │ │ │ ├── tokens-atrule-dark.png │ │ │ ├── tokens-atrule-light.png │ │ │ ├── tokens-attribute-dark.png │ │ │ ├── tokens-attribute-light.png │ │ │ ├── tokens-boolean-dark.png │ │ │ ├── tokens-boolean-light.png │ │ │ ├── tokens-builtin-dark.png │ │ │ ├── tokens-builtin-light.png │ │ │ ├── tokens-cdata-dark.png │ │ │ ├── tokens-cdata-light.png │ │ │ ├── tokens-class-name-dark.png │ │ │ ├── tokens-class-name-light.png │ │ │ ├── tokens-color-dark.png │ │ │ ├── tokens-color-light.png │ │ │ ├── tokens-comment-dark.png │ │ │ ├── tokens-comment-light.png │ │ │ ├── tokens-constant-dark.png │ │ │ ├── tokens-constant-light.png │ │ │ ├── tokens-doctype-dark.png │ │ │ ├── tokens-doctype-light.png │ │ │ ├── tokens-entity-dark.png │ │ │ ├── tokens-entity-light.png │ │ │ ├── tokens-function-dark.png │ │ │ ├── tokens-function-light.png │ │ │ ├── tokens-important-dark.png │ │ │ ├── tokens-important-light.png │ │ │ ├── tokens-interpolation-dark.png │ │ │ ├── tokens-interpolation-light.png │ │ │ ├── tokens-keyword-dark.png │ │ │ ├── tokens-keyword-light.png │ │ │ ├── tokens-namespace-dark.png │ │ │ ├── tokens-namespace-light.png │ │ │ ├── tokens-null-dark.png │ │ │ ├── tokens-null-light.png │ │ │ ├── tokens-number-dark.png │ │ │ ├── tokens-number-light.png │ │ │ ├── tokens-operator-dark.png │ │ │ ├── tokens-operator-light.png │ │ │ ├── tokens-parameter-dark.png │ │ │ ├── tokens-parameter-light.png │ │ │ ├── tokens-prolog-dark.png │ │ │ ├── tokens-prolog-light.png │ │ │ ├── tokens-property-dark.png │ │ │ ├── tokens-property-light.png │ │ │ ├── tokens-punctuation-dark.png │ │ │ ├── tokens-punctuation-light.png │ │ │ ├── tokens-regex-dark.png │ │ │ ├── tokens-regex-light.png │ │ │ ├── tokens-selector-dark.png │ │ │ ├── tokens-selector-light.png │ │ │ ├── tokens-string-dark.png │ │ │ ├── tokens-string-light.png │ │ │ ├── tokens-tag-dark.png │ │ │ ├── tokens-tag-light.png │ │ │ ├── tokens-template-string-dark.png │ │ │ ├── tokens-template-string-light.png │ │ │ ├── tokens-url-dark.png │ │ │ ├── tokens-url-light.png │ │ │ ├── tokens-variable-dark.png │ │ │ └── tokens-variable-light.png │ ├── interactive.test.js │ ├── overflow.test.js │ ├── plugins.test.js │ ├── prism.vdiff.js │ └── template-tags.test.js ├── uniqueId.js ├── viewport-size.js └── visualReady.js ├── index.html ├── index.js ├── lang ├── ar.js ├── cy.js ├── da.js ├── de.js ├── en-gb.js ├── en.js ├── es-es.js ├── es.js ├── fr-fr.js ├── fr.js ├── haw.js ├── hi.js ├── ja.js ├── ko.js ├── mi.js ├── nl.js ├── pt.js ├── sv.js ├── th.js ├── tr.js ├── vi.js ├── zh-cn.js └── zh-tw.js ├── mixins ├── arrow-keys │ ├── README.md │ ├── arrow-keys-mixin.js │ ├── demo │ │ ├── arrow-keys-mixin.html │ │ └── arrow-keys-test.js │ └── test │ │ └── arrow-keys-mixin.test.js ├── async-container │ ├── README.md │ ├── async-container-mixin.js │ ├── demo │ │ ├── async-container.html │ │ ├── async-container.js │ │ └── async-item.js │ └── test │ │ ├── async-container-mixin.vdiff.js │ │ └── golden │ │ └── async-container-mixin │ │ └── chromium │ │ ├── complete.png │ │ ├── failure.png │ │ ├── initial.png │ │ ├── mixed.png │ │ ├── pending-delay.png │ │ └── pending.png ├── collection │ ├── README.md │ └── collection-mixin.js ├── focus-mixin.js ├── focus │ ├── README.md │ ├── focus-mixin.js │ └── test │ │ └── focus-mixin.test.js ├── interactive │ ├── README.md │ ├── interactive-mixin.js │ └── test │ │ └── interactive-mixin.test.js ├── labelled-mixin.js ├── labelled │ ├── README.md │ ├── demo │ │ └── labelled-mixin.html │ ├── labelled-mixin.js │ └── test │ │ └── label-mixin.test.js ├── loading-complete │ ├── README.md │ ├── loading-complete-mixin.js │ └── test │ │ └── loading-complete-mixin.test.js ├── localize-dynamic-mixin.js ├── localize-mixin.js ├── localize │ ├── README.md │ ├── demo │ │ ├── localize-mixin-greeting.js │ │ ├── localize-mixin-mission.js │ │ └── localize-mixin.html │ ├── localize-mixin.js │ └── test │ │ └── localize-mixin.test.js ├── property-required │ ├── README.md │ ├── property-required-mixin.js │ └── test │ │ └── property-required-mixin.test.js ├── provider-mixin.js ├── provider │ ├── README.md │ ├── provider-mixin.js │ └── test │ │ └── provider-mixin.test.js ├── rtl-mixin.js ├── rtl │ ├── README.md │ ├── rtl-mixin.js │ └── test │ │ └── rtl-mixin.test.js ├── theme │ └── theme-mixin.js └── visible-on-ancestor │ ├── README.md │ ├── test │ └── visible-on-ancestor-mixin.test.js │ └── visible-on-ancestor-mixin.js ├── package.json ├── rollup └── rollup.config.js ├── templates └── primary-secondary │ ├── README.md │ ├── demo │ ├── form.html │ ├── index.html │ ├── integration.html │ ├── overflow-hidden.html │ └── width-type-normal.html │ ├── primary-secondary.js │ └── test │ ├── golden │ └── primary-secondary │ │ └── chromium │ │ ├── desktop-background-shading-primary-rtl.png │ │ ├── desktop-background-shading-primary.png │ │ ├── desktop-background-shading-secondary-rtl.png │ │ ├── desktop-background-shading-secondary.png │ │ ├── desktop-collapsed.png │ │ ├── desktop-expanded.png │ │ ├── desktop-fixed-secondary-first.png │ │ ├── desktop-fixed.png │ │ ├── desktop-focus-collapsed-rtl-secondary-first.png │ │ ├── desktop-focus-collapsed-rtl.png │ │ ├── desktop-focus-collapsed-secondary-first.png │ │ ├── desktop-focus-collapsed.png │ │ ├── desktop-focus-expanded-rtl-secondary-first.png │ │ ├── desktop-focus-expanded-rtl.png │ │ ├── desktop-focus-expanded-secondary-first.png │ │ ├── desktop-focus-expanded.png │ │ ├── desktop-focus.png │ │ ├── desktop-hidden-footer.png │ │ ├── desktop-resizable.png │ │ ├── desktop-short-content.png │ │ ├── desktop-width-fullscreen.png │ │ ├── desktop-width-normal-collapsed.png │ │ ├── desktop-width-normal.png │ │ ├── mobile-collapsed.png │ │ ├── mobile-default.png │ │ ├── mobile-expanded.png │ │ ├── mobile-focus-rtl.png │ │ ├── mobile-focus.png │ │ ├── mobile-hidden-footer-collapsed.png │ │ ├── mobile-hidden-footer-expanded.png │ │ ├── mobile-hidden-footer.png │ │ ├── mobile-middle.png │ │ ├── mobile-rtl.png │ │ ├── mobile-short-content.png │ │ ├── persist-divider-size-on-reload.png │ │ ├── print-resizable.png │ │ └── stacking-opt-in.png │ ├── primary-secondary.axe.js │ ├── primary-secondary.test.js │ └── primary-secondary.vdiff.js ├── test ├── load-sass.js └── sass.scss └── tools ├── constructor-test-helper.js ├── mathjax-test-context.js └── resize-observer-test-error-handler.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/license-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/license-checker.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/translation.yml -------------------------------------------------------------------------------- /.github/workflows/update-package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/update-package-lock.yml -------------------------------------------------------------------------------- /.github/workflows/vdiff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.github/workflows/vdiff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.lmsrelease: -------------------------------------------------------------------------------- 1 | 20.26.1 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vdiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/.vdiff.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/README.md -------------------------------------------------------------------------------- /cli/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/cli/clean.js -------------------------------------------------------------------------------- /cli/cleanDir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/cli/cleanDir.js -------------------------------------------------------------------------------- /cli/empty-state-illustration-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/cli/empty-state-illustration-generator.js -------------------------------------------------------------------------------- /cli/icon-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/cli/icon-generator.js -------------------------------------------------------------------------------- /cli/validate-wca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/cli/validate-wca.js -------------------------------------------------------------------------------- /components/alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/README.md -------------------------------------------------------------------------------- /components/alert/alert-toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/alert-toast.js -------------------------------------------------------------------------------- /components/alert/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/alert.js -------------------------------------------------------------------------------- /components/alert/demo/alert-toast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/demo/alert-toast.html -------------------------------------------------------------------------------- /components/alert/demo/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/demo/alert.html -------------------------------------------------------------------------------- /components/alert/test/alert-toast.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert-toast.axe.js -------------------------------------------------------------------------------- /components/alert/test/alert-toast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert-toast.test.js -------------------------------------------------------------------------------- /components/alert/test/alert-toast.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert-toast.vdiff.js -------------------------------------------------------------------------------- /components/alert/test/alert.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert.axe.js -------------------------------------------------------------------------------- /components/alert/test/alert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert.test.js -------------------------------------------------------------------------------- /components/alert/test/alert.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/alert/test/alert.vdiff.js -------------------------------------------------------------------------------- /components/backdrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/backdrop/README.md -------------------------------------------------------------------------------- /components/backdrop/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/backdrop/backdrop.js -------------------------------------------------------------------------------- /components/backdrop/demo/backdrop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/backdrop/demo/backdrop.html -------------------------------------------------------------------------------- /components/backdrop/test/backdrop.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/backdrop/test/backdrop.test.js -------------------------------------------------------------------------------- /components/backdrop/test/backdrop.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/backdrop/test/backdrop.vdiff.js -------------------------------------------------------------------------------- /components/breadcrumbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/breadcrumbs/README.md -------------------------------------------------------------------------------- /components/breadcrumbs/breadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/breadcrumbs/breadcrumb.js -------------------------------------------------------------------------------- /components/breadcrumbs/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/breadcrumbs/breadcrumbs.js -------------------------------------------------------------------------------- /components/breadcrumbs/demo/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/breadcrumbs/demo/breadcrumbs.html -------------------------------------------------------------------------------- /components/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/README.md -------------------------------------------------------------------------------- /components/button/button-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-add.js -------------------------------------------------------------------------------- /components/button/button-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-copy.js -------------------------------------------------------------------------------- /components/button/button-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-icon.js -------------------------------------------------------------------------------- /components/button/button-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-mixin.js -------------------------------------------------------------------------------- /components/button/button-move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-move.js -------------------------------------------------------------------------------- /components/button/button-split-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-split-item.js -------------------------------------------------------------------------------- /components/button/button-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-split.js -------------------------------------------------------------------------------- /components/button/button-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-styles.js -------------------------------------------------------------------------------- /components/button/button-subtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-subtle.js -------------------------------------------------------------------------------- /components/button/button-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button-toggle.js -------------------------------------------------------------------------------- /components/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/button.js -------------------------------------------------------------------------------- /components/button/demo/button-add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-add.html -------------------------------------------------------------------------------- /components/button/demo/button-copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-copy.html -------------------------------------------------------------------------------- /components/button/demo/button-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-icon.html -------------------------------------------------------------------------------- /components/button/demo/button-move.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-move.html -------------------------------------------------------------------------------- /components/button/demo/button-split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-split.html -------------------------------------------------------------------------------- /components/button/demo/button-subtle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-subtle.html -------------------------------------------------------------------------------- /components/button/demo/button-toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button-toggle.html -------------------------------------------------------------------------------- /components/button/demo/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/button.html -------------------------------------------------------------------------------- /components/button/demo/floating-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/demo/floating-buttons.html -------------------------------------------------------------------------------- /components/button/floating-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/floating-buttons.js -------------------------------------------------------------------------------- /components/button/test/button-add.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-add.axe.js -------------------------------------------------------------------------------- /components/button/test/button-add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-add.test.js -------------------------------------------------------------------------------- /components/button/test/button-add.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-add.vdiff.js -------------------------------------------------------------------------------- /components/button/test/button-copy.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-copy.axe.js -------------------------------------------------------------------------------- /components/button/test/button-copy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-copy.test.js -------------------------------------------------------------------------------- /components/button/test/button-copy.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-copy.vdiff.js -------------------------------------------------------------------------------- /components/button/test/button-icon.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-icon.axe.js -------------------------------------------------------------------------------- /components/button/test/button-icon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-icon.test.js -------------------------------------------------------------------------------- /components/button/test/button-icon.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-icon.vdiff.js -------------------------------------------------------------------------------- /components/button/test/button-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-mixin.test.js -------------------------------------------------------------------------------- /components/button/test/button-move.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-move.axe.js -------------------------------------------------------------------------------- /components/button/test/button-move.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-move.test.js -------------------------------------------------------------------------------- /components/button/test/button-move.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-move.vdiff.js -------------------------------------------------------------------------------- /components/button/test/button-split.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-split.axe.js -------------------------------------------------------------------------------- /components/button/test/button-split.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-split.test.js -------------------------------------------------------------------------------- /components/button/test/button-split.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-split.vdiff.js -------------------------------------------------------------------------------- /components/button/test/button-subtle.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-subtle.axe.js -------------------------------------------------------------------------------- /components/button/test/button-subtle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-subtle.test.js -------------------------------------------------------------------------------- /components/button/test/button-toggle.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-toggle.axe.js -------------------------------------------------------------------------------- /components/button/test/button-toggle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button-toggle.test.js -------------------------------------------------------------------------------- /components/button/test/button.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button.axe.js -------------------------------------------------------------------------------- /components/button/test/button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button.test.js -------------------------------------------------------------------------------- /components/button/test/button.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/button/test/button.vdiff.js -------------------------------------------------------------------------------- /components/calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/README.md -------------------------------------------------------------------------------- /components/calendar/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/calendar.js -------------------------------------------------------------------------------- /components/calendar/demo/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/demo/calendar.html -------------------------------------------------------------------------------- /components/calendar/test/calendar.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/test/calendar.axe.js -------------------------------------------------------------------------------- /components/calendar/test/calendar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/test/calendar.test.js -------------------------------------------------------------------------------- /components/calendar/test/calendar.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/calendar/test/calendar.vdiff.js -------------------------------------------------------------------------------- /components/card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/README.md -------------------------------------------------------------------------------- /components/card/card-content-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/card-content-meta.js -------------------------------------------------------------------------------- /components/card/card-content-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/card-content-title.js -------------------------------------------------------------------------------- /components/card/card-footer-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/card-footer-link.js -------------------------------------------------------------------------------- /components/card/card-loading-shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/card-loading-shimmer.js -------------------------------------------------------------------------------- /components/card/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/card.js -------------------------------------------------------------------------------- /components/card/demo/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/demo/card.html -------------------------------------------------------------------------------- /components/card/test/card-content.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/test/card-content.vdiff.js -------------------------------------------------------------------------------- /components/card/test/card-footer-link.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/test/card-footer-link.axe.js -------------------------------------------------------------------------------- /components/card/test/card.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/test/card.axe.js -------------------------------------------------------------------------------- /components/card/test/card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/test/card.test.js -------------------------------------------------------------------------------- /components/card/test/card.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/card/test/card.vdiff.js -------------------------------------------------------------------------------- /components/collapsible-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/collapsible-panel/README.md -------------------------------------------------------------------------------- /components/colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/README.md -------------------------------------------------------------------------------- /components/colors/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/colors.js -------------------------------------------------------------------------------- /components/colors/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/colors.scss -------------------------------------------------------------------------------- /components/colors/demo/color-swatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/demo/color-swatch.js -------------------------------------------------------------------------------- /components/colors/demo/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/demo/colors.html -------------------------------------------------------------------------------- /components/colors/test/colors.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/colors/test/colors.vdiff.js -------------------------------------------------------------------------------- /components/count-badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/count-badge/README.md -------------------------------------------------------------------------------- /components/count-badge/count-badge-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/count-badge/count-badge-icon.js -------------------------------------------------------------------------------- /components/count-badge/count-badge-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/count-badge/count-badge-mixin.js -------------------------------------------------------------------------------- /components/count-badge/count-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/count-badge/count-badge.js -------------------------------------------------------------------------------- /components/count-badge/demo/count-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/count-badge/demo/count-badge.html -------------------------------------------------------------------------------- /components/demo/code-dark-plus-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/code-dark-plus-styles.js -------------------------------------------------------------------------------- /components/demo/code-tomorrow-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/code-tomorrow-styles.js -------------------------------------------------------------------------------- /components/demo/code-view-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/code-view-styles.js -------------------------------------------------------------------------------- /components/demo/code-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/code-view.js -------------------------------------------------------------------------------- /components/demo/demo-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo-flags.js -------------------------------------------------------------------------------- /components/demo/demo-page-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo-page-settings.js -------------------------------------------------------------------------------- /components/demo/demo-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo-page.js -------------------------------------------------------------------------------- /components/demo/demo-passthrough-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo-passthrough-mixin.js -------------------------------------------------------------------------------- /components/demo/demo-snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo-snippet.js -------------------------------------------------------------------------------- /components/demo/demo/demo-snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/demo/demo-snippet.html -------------------------------------------------------------------------------- /components/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/styles.css -------------------------------------------------------------------------------- /components/demo/test/demo-page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/demo/test/demo-page.test.js -------------------------------------------------------------------------------- /components/description-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/description-list/README.md -------------------------------------------------------------------------------- /components/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/README.md -------------------------------------------------------------------------------- /components/dialog/demo/dialog-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/demo/dialog-confirm.html -------------------------------------------------------------------------------- /components/dialog/demo/dialog-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/demo/dialog-container.js -------------------------------------------------------------------------------- /components/dialog/demo/dialog-nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/demo/dialog-nested.html -------------------------------------------------------------------------------- /components/dialog/demo/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/demo/dialog.html -------------------------------------------------------------------------------- /components/dialog/dialog-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/dialog-confirm.js -------------------------------------------------------------------------------- /components/dialog/dialog-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/dialog-fullscreen.js -------------------------------------------------------------------------------- /components/dialog/dialog-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/dialog-mixin.js -------------------------------------------------------------------------------- /components/dialog/dialog-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/dialog-styles.js -------------------------------------------------------------------------------- /components/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/dialog.js -------------------------------------------------------------------------------- /components/dialog/test/dialog-confirm.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog-confirm.axe.js -------------------------------------------------------------------------------- /components/dialog/test/dialog-ifrau.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog-ifrau.vdiff.js -------------------------------------------------------------------------------- /components/dialog/test/dialog-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog-mixin.test.js -------------------------------------------------------------------------------- /components/dialog/test/dialog-mixin.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog-mixin.vdiff.js -------------------------------------------------------------------------------- /components/dialog/test/dialog.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog.axe.js -------------------------------------------------------------------------------- /components/dialog/test/dialog.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog.test.js -------------------------------------------------------------------------------- /components/dialog/test/dialog.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dialog/test/dialog.vdiff.js -------------------------------------------------------------------------------- /components/dropdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/README.md -------------------------------------------------------------------------------- /components/dropdown/demo/dropdown-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/demo/dropdown-menu.html -------------------------------------------------------------------------------- /components/dropdown/demo/dropdown-more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/demo/dropdown-more.html -------------------------------------------------------------------------------- /components/dropdown/demo/dropdown-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/demo/dropdown-tabs.html -------------------------------------------------------------------------------- /components/dropdown/demo/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/demo/dropdown.html -------------------------------------------------------------------------------- /components/dropdown/dropdown-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-button.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-content.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-context-menu.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-menu.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-more.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-opener-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-opener-mixin.js -------------------------------------------------------------------------------- /components/dropdown/dropdown-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown-tabs.js -------------------------------------------------------------------------------- /components/dropdown/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/dropdown/dropdown.js -------------------------------------------------------------------------------- /components/empty-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/README.md -------------------------------------------------------------------------------- /components/empty-state/demo/empty-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/demo/empty-state.html -------------------------------------------------------------------------------- /components/empty-state/empty-state-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/empty-state-mixin.js -------------------------------------------------------------------------------- /components/empty-state/empty-state-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/empty-state-simple.js -------------------------------------------------------------------------------- /components/empty-state/empty-state-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/empty-state-styles.js -------------------------------------------------------------------------------- /components/empty-state/images/blueprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/blueprint.svg -------------------------------------------------------------------------------- /components/empty-state/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/calendar.svg -------------------------------------------------------------------------------- /components/empty-state/images/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/checklist.svg -------------------------------------------------------------------------------- /components/empty-state/images/fish-hook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/fish-hook.svg -------------------------------------------------------------------------------- /components/empty-state/images/oven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/oven.svg -------------------------------------------------------------------------------- /components/empty-state/images/pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/pipeline.svg -------------------------------------------------------------------------------- /components/empty-state/images/race.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/race.svg -------------------------------------------------------------------------------- /components/empty-state/images/rockets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/rockets.svg -------------------------------------------------------------------------------- /components/empty-state/images/tumbleweed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/empty-state/images/tumbleweed.svg -------------------------------------------------------------------------------- /components/expand-collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/expand-collapse/README.md -------------------------------------------------------------------------------- /components/filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/README.md -------------------------------------------------------------------------------- /components/filter/demo/filter-search-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/demo/filter-search-demo.js -------------------------------------------------------------------------------- /components/filter/demo/filter-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/demo/filter-tags.html -------------------------------------------------------------------------------- /components/filter/demo/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/demo/filter.html -------------------------------------------------------------------------------- /components/filter/filter-dimension-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/filter-dimension-set.js -------------------------------------------------------------------------------- /components/filter/filter-overflow-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/filter-overflow-group.js -------------------------------------------------------------------------------- /components/filter/filter-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/filter-tags.js -------------------------------------------------------------------------------- /components/filter/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/filter.js -------------------------------------------------------------------------------- /components/filter/test/filter-tags.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter-tags.axe.js -------------------------------------------------------------------------------- /components/filter/test/filter-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter-tags.test.js -------------------------------------------------------------------------------- /components/filter/test/filter-tags.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter-tags.vdiff.js -------------------------------------------------------------------------------- /components/filter/test/filter.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter.axe.js -------------------------------------------------------------------------------- /components/filter/test/filter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter.test.js -------------------------------------------------------------------------------- /components/filter/test/filter.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/filter/test/filter.vdiff.js -------------------------------------------------------------------------------- /components/focus-trap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/focus-trap/README.md -------------------------------------------------------------------------------- /components/focus-trap/demo/focus-trap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/focus-trap/demo/focus-trap.html -------------------------------------------------------------------------------- /components/focus-trap/focus-trap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/focus-trap/focus-trap.js -------------------------------------------------------------------------------- /components/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/README.md -------------------------------------------------------------------------------- /components/form/demo/form-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/demo/form-demo.js -------------------------------------------------------------------------------- /components/form/demo/form-dialog-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/demo/form-dialog-demo.js -------------------------------------------------------------------------------- /components/form/demo/form-panel-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/demo/form-panel-demo.js -------------------------------------------------------------------------------- /components/form/demo/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/demo/form.html -------------------------------------------------------------------------------- /components/form/docs/form-element-mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/docs/form-element-mixin.md -------------------------------------------------------------------------------- /components/form/docs/form-element-nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/docs/form-element-nesting.md -------------------------------------------------------------------------------- /components/form/form-element-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/form-element-mixin.js -------------------------------------------------------------------------------- /components/form/form-error-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/form-error-summary.js -------------------------------------------------------------------------------- /components/form/form-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/form-helper.js -------------------------------------------------------------------------------- /components/form/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/form.js -------------------------------------------------------------------------------- /components/form/test/form-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/test/form-element.js -------------------------------------------------------------------------------- /components/form/test/form-element.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/test/form-element.test.js -------------------------------------------------------------------------------- /components/form/test/form-helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/test/form-helper.test.js -------------------------------------------------------------------------------- /components/form/test/form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/test/form.test.js -------------------------------------------------------------------------------- /components/form/test/nested-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/form/test/nested-form.js -------------------------------------------------------------------------------- /components/hierarchical-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/hierarchical-view/README.md -------------------------------------------------------------------------------- /components/html-block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/html-block/README.md -------------------------------------------------------------------------------- /components/html-block/demo/html-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/html-block/demo/html-block.html -------------------------------------------------------------------------------- /components/html-block/html-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/html-block/html-block.js -------------------------------------------------------------------------------- /components/html-block/test/html-block.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/html-block/test/html-block.axe.js -------------------------------------------------------------------------------- /components/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/README.md -------------------------------------------------------------------------------- /components/icons/catalogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/catalogue.md -------------------------------------------------------------------------------- /components/icons/demo/icon-color-override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/demo/icon-color-override.js -------------------------------------------------------------------------------- /components/icons/demo/icon-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/demo/icon-custom.html -------------------------------------------------------------------------------- /components/icons/demo/icon-size-override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/demo/icon-size-override.js -------------------------------------------------------------------------------- /components/icons/demo/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/demo/icon.html -------------------------------------------------------------------------------- /components/icons/fix-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/fix-svg.js -------------------------------------------------------------------------------- /components/icons/getFileIconType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/getFileIconType.js -------------------------------------------------------------------------------- /components/icons/icon-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/icon-custom.js -------------------------------------------------------------------------------- /components/icons/icon-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/icon-styles.js -------------------------------------------------------------------------------- /components/icons/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/icon.js -------------------------------------------------------------------------------- /components/icons/images/emoji/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/angry.svg -------------------------------------------------------------------------------- /components/icons/images/emoji/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/happy.svg -------------------------------------------------------------------------------- /components/icons/images/emoji/lol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/lol.svg -------------------------------------------------------------------------------- /components/icons/images/emoji/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/meh.svg -------------------------------------------------------------------------------- /components/icons/images/emoji/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/sad.svg -------------------------------------------------------------------------------- /components/icons/images/emoji/shout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/emoji/shout.svg -------------------------------------------------------------------------------- /components/icons/images/html-editor/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/html-editor/bold.svg -------------------------------------------------------------------------------- /components/icons/images/html-editor/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/html-editor/cut.svg -------------------------------------------------------------------------------- /components/icons/images/html-editor/h5p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/html-editor/h5p.svg -------------------------------------------------------------------------------- /components/icons/images/html-editor/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/html-editor/link.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/add-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/add-file.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/add-to-lor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/add-to-lor.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/add-user.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/add.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/ai.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/alarmbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/alarmbell.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/alert.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/attach.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/attendance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/attendance.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/awards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/awards.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/binder.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/blocked.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/blog.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/browser.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/bullet.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/bullseye.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/calculate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/calculate.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/calendar.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/chat.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/check-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/check-user.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/check.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/checklist.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/chevron-up.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/class.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/classlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/classlist.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/configure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/configure.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/contacts.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/copy.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/course.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/course.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/delete.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/disable.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/dot.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/download.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/draft.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/dragger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/dragger.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/edit-bulk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/edit-bulk.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/edit.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/email-read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/email-read.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/email.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/enable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/enable.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/enrollment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/enrollment.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/eportfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/eportfolio.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/event-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/event-log.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/export.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/external.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/feed.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/feedback.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/filter.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/folder.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/forms.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/forward.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/game.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/gear.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/glossary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/glossary.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/grabber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/grabber.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/grade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/grade.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/group.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/help.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/history.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/home.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/import.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/link.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/location.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/locker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/locker.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/lor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/lor.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/messages.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/mic.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/mobile.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/more.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/move-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/move-to.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/move-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/move-up.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/navigate.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/news.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/no-entry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/no-entry.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/online.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/outcomes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/outcomes.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/password.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/pause.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/pic.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/play.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/preview.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/print.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/quizzing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/quizzing.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/read.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/reading.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/redo.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/refresh.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/reorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/reorder.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/repeat.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/replied.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/replied.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/reply.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/reports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/reports.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/rss.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/rubric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/rubric.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/save.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/scorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/scorm.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/search.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/seating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/seating.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/send.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/share.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/style.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/support.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/surveys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/surveys.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/syllabus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/syllabus.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/tag.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/time.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/tools.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/turnitin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/turnitin.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/undo.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/unsaved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/unsaved.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/upload.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/volume.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/widgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/widgets.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/wizard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/wizard.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/zoom-in.svg -------------------------------------------------------------------------------- /components/icons/images/tier1/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier1/zoom-out.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/add-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/add-file.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/add-user.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/add.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/ai.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/alert.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/attach.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/awards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/awards.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/binder.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/blocked.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/blog.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/browser.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/bullseye.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/calendar.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/capture.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/chat.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/check.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/classes.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/contacts.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/content.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/copy.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/delete.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/divider.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/dot.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/download.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/draft.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/edit.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/email.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/external.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/feedback.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/filter.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/folder.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/forms.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/game.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/gear.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/glossary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/glossary.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/grade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/grade.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/help.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/history.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/home.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/link.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/location.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/lock.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/locker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/locker.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/lor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/lor.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/media.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/merge.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/messages.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/mic.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/module.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/module.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/move-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/move-to.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/move-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/move-up.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/navigate.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/news.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/online.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/outcomes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/outcomes.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/password.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/pic.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/preview.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/print.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/project.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/quizzing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/quizzing.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/read.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/reading.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/refresh.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/reorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/reorder.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/reply.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/rss.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/rubrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/rubrics.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/save.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/scorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/scorm.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/search.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/seating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/seating.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/send.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/share.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/style.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/surveys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/surveys.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/syllabus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/syllabus.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/tag.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/time.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/tools.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/undo.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/unsaved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/unsaved.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/upload.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/validate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/validate.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/volume.svg -------------------------------------------------------------------------------- /components/icons/images/tier2/wizard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier2/wizard.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/ai.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/alert.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/bookmark.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/bullseye.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/calendar.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/chat.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/classes.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/close.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/copy.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/download.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/email.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/export.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/external.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/feed.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/game.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/gear.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/grade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/grade.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/help.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/home.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/image.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/import.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/lock.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/menu.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/news.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/pause.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/pic.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/play.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/preview.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/quizzing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/quizzing.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/rubric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/rubric.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/scorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/scorm.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/search.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/stop.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/syllabus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/syllabus.svg -------------------------------------------------------------------------------- /components/icons/images/tier3/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/images/tier3/upload.svg -------------------------------------------------------------------------------- /components/icons/slotted-icon-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/slotted-icon-mixin.js -------------------------------------------------------------------------------- /components/icons/test/icon-custom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/test/icon-custom.test.js -------------------------------------------------------------------------------- /components/icons/test/icon-custom.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/test/icon-custom.vdiff.js -------------------------------------------------------------------------------- /components/icons/test/icon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/test/icon.test.js -------------------------------------------------------------------------------- /components/icons/test/icon.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/icons/test/icon.vdiff.js -------------------------------------------------------------------------------- /components/inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/README.md -------------------------------------------------------------------------------- /components/inputs/demo/input-checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-checkbox.html -------------------------------------------------------------------------------- /components/inputs/demo/input-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-color.html -------------------------------------------------------------------------------- /components/inputs/demo/input-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-date.html -------------------------------------------------------------------------------- /components/inputs/demo/input-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-group.html -------------------------------------------------------------------------------- /components/inputs/demo/input-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-number.html -------------------------------------------------------------------------------- /components/inputs/demo/input-percent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-percent.html -------------------------------------------------------------------------------- /components/inputs/demo/input-radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-radio.html -------------------------------------------------------------------------------- /components/inputs/demo/input-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-search.html -------------------------------------------------------------------------------- /components/inputs/demo/input-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-select.html -------------------------------------------------------------------------------- /components/inputs/demo/input-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-text.html -------------------------------------------------------------------------------- /components/inputs/demo/input-textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-textarea.html -------------------------------------------------------------------------------- /components/inputs/demo/input-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/demo/input-time.html -------------------------------------------------------------------------------- /components/inputs/docs/input-checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-checkbox.md -------------------------------------------------------------------------------- /components/inputs/docs/input-color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-color.md -------------------------------------------------------------------------------- /components/inputs/docs/input-date-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-date-time.md -------------------------------------------------------------------------------- /components/inputs/docs/input-numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-numeric.md -------------------------------------------------------------------------------- /components/inputs/docs/input-radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-radio.md -------------------------------------------------------------------------------- /components/inputs/docs/input-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-search.md -------------------------------------------------------------------------------- /components/inputs/docs/input-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/docs/input-text.md -------------------------------------------------------------------------------- /components/inputs/input-checkbox-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-checkbox-group.js -------------------------------------------------------------------------------- /components/inputs/input-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-checkbox.js -------------------------------------------------------------------------------- /components/inputs/input-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-color.js -------------------------------------------------------------------------------- /components/inputs/input-date-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-date-range.js -------------------------------------------------------------------------------- /components/inputs/input-date-time-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-date-time-range.js -------------------------------------------------------------------------------- /components/inputs/input-date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-date-time.js -------------------------------------------------------------------------------- /components/inputs/input-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-date.js -------------------------------------------------------------------------------- /components/inputs/input-fieldset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-fieldset.js -------------------------------------------------------------------------------- /components/inputs/input-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-group.js -------------------------------------------------------------------------------- /components/inputs/input-inline-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-inline-help.js -------------------------------------------------------------------------------- /components/inputs/input-label-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-label-styles.js -------------------------------------------------------------------------------- /components/inputs/input-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-number.js -------------------------------------------------------------------------------- /components/inputs/input-percent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-percent.js -------------------------------------------------------------------------------- /components/inputs/input-radio-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-radio-group.js -------------------------------------------------------------------------------- /components/inputs/input-radio-spacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-radio-spacer.js -------------------------------------------------------------------------------- /components/inputs/input-radio-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-radio-styles.js -------------------------------------------------------------------------------- /components/inputs/input-radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-radio.js -------------------------------------------------------------------------------- /components/inputs/input-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-search.js -------------------------------------------------------------------------------- /components/inputs/input-select-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-select-styles.js -------------------------------------------------------------------------------- /components/inputs/input-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-styles.js -------------------------------------------------------------------------------- /components/inputs/input-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-text.js -------------------------------------------------------------------------------- /components/inputs/input-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-textarea.js -------------------------------------------------------------------------------- /components/inputs/input-time-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-time-range.js -------------------------------------------------------------------------------- /components/inputs/input-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/input-time.js -------------------------------------------------------------------------------- /components/inputs/sass/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/checkbox.scss -------------------------------------------------------------------------------- /components/inputs/sass/label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/label.scss -------------------------------------------------------------------------------- /components/inputs/sass/radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/radio.scss -------------------------------------------------------------------------------- /components/inputs/sass/select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/select.scss -------------------------------------------------------------------------------- /components/inputs/sass/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/text.scss -------------------------------------------------------------------------------- /components/inputs/sass/textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/sass/textarea.scss -------------------------------------------------------------------------------- /components/inputs/test/input-color.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-color.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-color.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-color.test.js -------------------------------------------------------------------------------- /components/inputs/test/input-date.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-date.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-date.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-date.test.js -------------------------------------------------------------------------------- /components/inputs/test/input-date.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-date.vdiff.js -------------------------------------------------------------------------------- /components/inputs/test/input-group.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-group.test.js -------------------------------------------------------------------------------- /components/inputs/test/input-number.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-number.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-search.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-search.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-text.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-text.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-text.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-text.test.js -------------------------------------------------------------------------------- /components/inputs/test/input-text.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-text.vdiff.js -------------------------------------------------------------------------------- /components/inputs/test/input-time.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-time.axe.js -------------------------------------------------------------------------------- /components/inputs/test/input-time.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-time.test.js -------------------------------------------------------------------------------- /components/inputs/test/input-time.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/inputs/test/input-time.vdiff.js -------------------------------------------------------------------------------- /components/link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/README.md -------------------------------------------------------------------------------- /components/link/demo/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/demo/link.html -------------------------------------------------------------------------------- /components/link/link-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/link-mixin.js -------------------------------------------------------------------------------- /components/link/link-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/link-styles.js -------------------------------------------------------------------------------- /components/link/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/link.js -------------------------------------------------------------------------------- /components/link/link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/link.scss -------------------------------------------------------------------------------- /components/link/test/link-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/test/link-mixin.test.js -------------------------------------------------------------------------------- /components/link/test/link.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/test/link.axe.js -------------------------------------------------------------------------------- /components/link/test/link.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/test/link.test.js -------------------------------------------------------------------------------- /components/link/test/link.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/link/test/link.vdiff.js -------------------------------------------------------------------------------- /components/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/README.md -------------------------------------------------------------------------------- /components/list/demo/demo-list-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/demo-list-nav.js -------------------------------------------------------------------------------- /components/list/demo/demo-list-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/demo-list-nested.js -------------------------------------------------------------------------------- /components/list/demo/demo-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/demo-list.js -------------------------------------------------------------------------------- /components/list/demo/list-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-color.html -------------------------------------------------------------------------------- /components/list/demo/list-item-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-item-custom.js -------------------------------------------------------------------------------- /components/list/demo/list-item-scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-item-scroll.html -------------------------------------------------------------------------------- /components/list/demo/list-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-layout.html -------------------------------------------------------------------------------- /components/list/demo/list-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-nav.html -------------------------------------------------------------------------------- /components/list/demo/list-nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-nested.html -------------------------------------------------------------------------------- /components/list/demo/list-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list-selection.html -------------------------------------------------------------------------------- /components/list/demo/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/demo/list.html -------------------------------------------------------------------------------- /components/list/list-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-controls.js -------------------------------------------------------------------------------- /components/list/list-item-button-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-button-mixin.js -------------------------------------------------------------------------------- /components/list/list-item-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-button.js -------------------------------------------------------------------------------- /components/list/list-item-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-content.js -------------------------------------------------------------------------------- /components/list/list-item-drag-handle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-drag-handle.js -------------------------------------------------------------------------------- /components/list/list-item-drag-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-drag-image.js -------------------------------------------------------------------------------- /components/list/list-item-link-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-link-mixin.js -------------------------------------------------------------------------------- /components/list/list-item-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-mixin.js -------------------------------------------------------------------------------- /components/list/list-item-nav-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-nav-mixin.js -------------------------------------------------------------------------------- /components/list/list-item-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-nav.js -------------------------------------------------------------------------------- /components/list/list-item-role-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item-role-mixin.js -------------------------------------------------------------------------------- /components/list/list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list-item.js -------------------------------------------------------------------------------- /components/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/list.js -------------------------------------------------------------------------------- /components/list/test/list.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/test/list.axe.js -------------------------------------------------------------------------------- /components/list/test/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/test/list.test.js -------------------------------------------------------------------------------- /components/list/test/list.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/list/test/list.vdiff.js -------------------------------------------------------------------------------- /components/loading-spinner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/loading-spinner/README.md -------------------------------------------------------------------------------- /components/menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/README.md -------------------------------------------------------------------------------- /components/menu/demo/checkbox-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/demo/checkbox-menu.html -------------------------------------------------------------------------------- /components/menu/demo/custom-menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/demo/custom-menu-item.js -------------------------------------------------------------------------------- /components/menu/demo/custom-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/demo/custom-view.js -------------------------------------------------------------------------------- /components/menu/demo/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/demo/menu.html -------------------------------------------------------------------------------- /components/menu/demo/radio-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/demo/radio-menu.html -------------------------------------------------------------------------------- /components/menu/menu-item-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-checkbox.js -------------------------------------------------------------------------------- /components/menu/menu-item-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-link.js -------------------------------------------------------------------------------- /components/menu/menu-item-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-mixin.js -------------------------------------------------------------------------------- /components/menu/menu-item-radio-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-radio-mixin.js -------------------------------------------------------------------------------- /components/menu/menu-item-radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-radio.js -------------------------------------------------------------------------------- /components/menu/menu-item-return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-return.js -------------------------------------------------------------------------------- /components/menu/menu-item-separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-separator.js -------------------------------------------------------------------------------- /components/menu/menu-item-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item-styles.js -------------------------------------------------------------------------------- /components/menu/menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu-item.js -------------------------------------------------------------------------------- /components/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/menu.js -------------------------------------------------------------------------------- /components/menu/test/custom-slots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/custom-slots.js -------------------------------------------------------------------------------- /components/menu/test/custom-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/custom-view.js -------------------------------------------------------------------------------- /components/menu/test/menu-radio.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/menu-radio.vdiff.js -------------------------------------------------------------------------------- /components/menu/test/menu.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/menu.axe.js -------------------------------------------------------------------------------- /components/menu/test/menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/menu.test.js -------------------------------------------------------------------------------- /components/menu/test/menu.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/menu/test/menu.vdiff.js -------------------------------------------------------------------------------- /components/meter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/README.md -------------------------------------------------------------------------------- /components/meter/demo/meter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/demo/meter.html -------------------------------------------------------------------------------- /components/meter/meter-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/meter-circle.js -------------------------------------------------------------------------------- /components/meter/meter-linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/meter-linear.js -------------------------------------------------------------------------------- /components/meter/meter-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/meter-mixin.js -------------------------------------------------------------------------------- /components/meter/meter-radial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/meter-radial.js -------------------------------------------------------------------------------- /components/meter/meter-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/meter-styles.js -------------------------------------------------------------------------------- /components/meter/test/meter-circle.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-circle.axe.js -------------------------------------------------------------------------------- /components/meter/test/meter-circle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-circle.test.js -------------------------------------------------------------------------------- /components/meter/test/meter-linear.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-linear.axe.js -------------------------------------------------------------------------------- /components/meter/test/meter-linear.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-linear.test.js -------------------------------------------------------------------------------- /components/meter/test/meter-radial.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-radial.axe.js -------------------------------------------------------------------------------- /components/meter/test/meter-radial.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/meter/test/meter-radial.test.js -------------------------------------------------------------------------------- /components/more-less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/more-less/README.md -------------------------------------------------------------------------------- /components/more-less/demo/more-less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/more-less/demo/more-less.html -------------------------------------------------------------------------------- /components/more-less/more-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/more-less/more-less.js -------------------------------------------------------------------------------- /components/more-less/test/more-less.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/more-less/test/more-less.axe.js -------------------------------------------------------------------------------- /components/object-property-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/object-property-list/README.md -------------------------------------------------------------------------------- /components/offscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/offscreen/README.md -------------------------------------------------------------------------------- /components/offscreen/demo/offscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/offscreen/demo/offscreen.html -------------------------------------------------------------------------------- /components/offscreen/offscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/offscreen/offscreen.js -------------------------------------------------------------------------------- /components/offscreen/offscreen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/offscreen/offscreen.scss -------------------------------------------------------------------------------- /components/overflow-group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/overflow-group/README.md -------------------------------------------------------------------------------- /components/paging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/paging/README.md -------------------------------------------------------------------------------- /components/paging/pageable-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/paging/pageable-mixin.js -------------------------------------------------------------------------------- /components/paging/pager-load-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/paging/pager-load-more.js -------------------------------------------------------------------------------- /components/popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/popover/README.md -------------------------------------------------------------------------------- /components/popover/demo/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/popover/demo/popover.html -------------------------------------------------------------------------------- /components/popover/popover-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/popover/popover-mixin.js -------------------------------------------------------------------------------- /components/popover/test/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/popover/test/popover.js -------------------------------------------------------------------------------- /components/progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/progress/README.md -------------------------------------------------------------------------------- /components/progress/demo/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/progress/demo/progress.html -------------------------------------------------------------------------------- /components/progress/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/progress/progress.js -------------------------------------------------------------------------------- /components/progress/test/progress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/progress/test/progress.test.js -------------------------------------------------------------------------------- /components/progress/test/progress.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/progress/test/progress.vdiff.js -------------------------------------------------------------------------------- /components/scroll-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/scroll-wrapper/README.md -------------------------------------------------------------------------------- /components/selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/README.md -------------------------------------------------------------------------------- /components/selection/demo/selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/demo/selection.html -------------------------------------------------------------------------------- /components/selection/selection-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/selection-action.js -------------------------------------------------------------------------------- /components/selection/selection-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/selection-controls.js -------------------------------------------------------------------------------- /components/selection/selection-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/selection-input.js -------------------------------------------------------------------------------- /components/selection/selection-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/selection-mixin.js -------------------------------------------------------------------------------- /components/selection/selection-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/selection-summary.js -------------------------------------------------------------------------------- /components/selection/test/selection.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/selection/test/selection.axe.js -------------------------------------------------------------------------------- /components/skeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/skeleton/README.md -------------------------------------------------------------------------------- /components/skeleton/skeleton-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/skeleton/skeleton-mixin.js -------------------------------------------------------------------------------- /components/skeleton/test/skeleton.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/skeleton/test/skeleton.vdiff.js -------------------------------------------------------------------------------- /components/sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/README.md -------------------------------------------------------------------------------- /components/sorting/demo/sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/demo/sort.html -------------------------------------------------------------------------------- /components/sorting/sort-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/sort-item.js -------------------------------------------------------------------------------- /components/sorting/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/sort.js -------------------------------------------------------------------------------- /components/sorting/test/sort-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/test/sort-fixtures.js -------------------------------------------------------------------------------- /components/sorting/test/sort.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/test/sort.test.js -------------------------------------------------------------------------------- /components/sorting/test/sort.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/sorting/test/sort.vdiff.js -------------------------------------------------------------------------------- /components/status-indicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/status-indicator/README.md -------------------------------------------------------------------------------- /components/switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/README.md -------------------------------------------------------------------------------- /components/switch/demo/switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/demo/switch.html -------------------------------------------------------------------------------- /components/switch/switch-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/switch-mixin.js -------------------------------------------------------------------------------- /components/switch/switch-visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/switch-visibility.js -------------------------------------------------------------------------------- /components/switch/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/switch.js -------------------------------------------------------------------------------- /components/switch/test/switch.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/test/switch.axe.js -------------------------------------------------------------------------------- /components/switch/test/switch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/test/switch.test.js -------------------------------------------------------------------------------- /components/switch/test/switch.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/switch/test/switch.vdiff.js -------------------------------------------------------------------------------- /components/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/README.md -------------------------------------------------------------------------------- /components/table/demo/table-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/demo/table-test.js -------------------------------------------------------------------------------- /components/table/demo/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/demo/table.html -------------------------------------------------------------------------------- /components/table/table-col-sort-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/table-col-sort-button.js -------------------------------------------------------------------------------- /components/table/table-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/table-controls.js -------------------------------------------------------------------------------- /components/table/table-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/table-wrapper.js -------------------------------------------------------------------------------- /components/table/test/table.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/test/table.test.js -------------------------------------------------------------------------------- /components/table/test/table.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/table/test/table.vdiff.js -------------------------------------------------------------------------------- /components/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/README.md -------------------------------------------------------------------------------- /components/tabs/demo/tab-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/demo/tab-custom.js -------------------------------------------------------------------------------- /components/tabs/demo/tabs-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/demo/tabs-array.js -------------------------------------------------------------------------------- /components/tabs/demo/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/demo/tabs.html -------------------------------------------------------------------------------- /components/tabs/tab-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tab-internal.js -------------------------------------------------------------------------------- /components/tabs/tab-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tab-mixin.js -------------------------------------------------------------------------------- /components/tabs/tab-panel-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tab-panel-mixin.js -------------------------------------------------------------------------------- /components/tabs/tab-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tab-panel.js -------------------------------------------------------------------------------- /components/tabs/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tab.js -------------------------------------------------------------------------------- /components/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/tabs.js -------------------------------------------------------------------------------- /components/tabs/test/tabs.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/test/tabs.axe.js -------------------------------------------------------------------------------- /components/tabs/test/tabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/test/tabs.test.js -------------------------------------------------------------------------------- /components/tabs/test/tabs.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tabs/test/tabs.vdiff.js -------------------------------------------------------------------------------- /components/tag-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/README.md -------------------------------------------------------------------------------- /components/tag-list/demo/tag-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/demo/tag-list.html -------------------------------------------------------------------------------- /components/tag-list/tag-list-item-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/tag-list-item-mixin.js -------------------------------------------------------------------------------- /components/tag-list/tag-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/tag-list-item.js -------------------------------------------------------------------------------- /components/tag-list/tag-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/tag-list.js -------------------------------------------------------------------------------- /components/tag-list/test/tag-list.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/test/tag-list.axe.js -------------------------------------------------------------------------------- /components/tag-list/test/tag-list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/test/tag-list.test.js -------------------------------------------------------------------------------- /components/tag-list/test/tag-list.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tag-list/test/tag-list.vdiff.js -------------------------------------------------------------------------------- /components/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/README.md -------------------------------------------------------------------------------- /components/tooltip/demo/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/demo/tooltip.html -------------------------------------------------------------------------------- /components/tooltip/test/tooltip.axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/test/tooltip.axe.js -------------------------------------------------------------------------------- /components/tooltip/test/tooltip.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/test/tooltip.test.js -------------------------------------------------------------------------------- /components/tooltip/test/tooltip.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/test/tooltip.vdiff.js -------------------------------------------------------------------------------- /components/tooltip/tooltip-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/tooltip-help.js -------------------------------------------------------------------------------- /components/tooltip/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/tooltip/tooltip.js -------------------------------------------------------------------------------- /components/typography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/README.md -------------------------------------------------------------------------------- /components/typography/demo/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/demo/typography.html -------------------------------------------------------------------------------- /components/typography/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/styles.js -------------------------------------------------------------------------------- /components/typography/test/styles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/test/styles.test.js -------------------------------------------------------------------------------- /components/typography/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/typography.js -------------------------------------------------------------------------------- /components/typography/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/typography/typography.scss -------------------------------------------------------------------------------- /components/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/validation/README.md -------------------------------------------------------------------------------- /components/validation/validation-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/components/validation/validation-custom.js -------------------------------------------------------------------------------- /controllers/subscriber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/controllers/subscriber/README.md -------------------------------------------------------------------------------- /core.serge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/core.serge.json -------------------------------------------------------------------------------- /d2l-test-reporting.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/d2l-test-reporting.config.json -------------------------------------------------------------------------------- /d2l-test-runner.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | pattern: type => `**/test/*.${type}.js` 3 | }; 4 | -------------------------------------------------------------------------------- /directives/animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/animate/README.md -------------------------------------------------------------------------------- /directives/animate/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/animate/animate.js -------------------------------------------------------------------------------- /directives/animate/demo/animate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/animate/demo/animate-test.js -------------------------------------------------------------------------------- /directives/animate/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/animate/demo/index.html -------------------------------------------------------------------------------- /directives/animate/test/animate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/animate/test/animate.test.js -------------------------------------------------------------------------------- /directives/run-async/run-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/directives/run-async/run-async.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/eslint.config.js -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/announce.js -------------------------------------------------------------------------------- /helpers/asyncStateEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/asyncStateEvent.js -------------------------------------------------------------------------------- /helpers/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/color.js -------------------------------------------------------------------------------- /helpers/composeMixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/composeMixins.js -------------------------------------------------------------------------------- /helpers/contrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/contrast.js -------------------------------------------------------------------------------- /helpers/dateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/dateTime.js -------------------------------------------------------------------------------- /helpers/demo/announce-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/announce-test.js -------------------------------------------------------------------------------- /helpers/demo/announce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/announce.html -------------------------------------------------------------------------------- /helpers/demo/dismissible-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/dismissible-test.js -------------------------------------------------------------------------------- /helpers/demo/dismissible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/dismissible.html -------------------------------------------------------------------------------- /helpers/demo/gestures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/gestures.html -------------------------------------------------------------------------------- /helpers/demo/prism.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/prism.html -------------------------------------------------------------------------------- /helpers/demo/template-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/demo/template-tags.html -------------------------------------------------------------------------------- /helpers/dismissible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/dismissible.js -------------------------------------------------------------------------------- /helpers/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/dom.js -------------------------------------------------------------------------------- /helpers/embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/embeds.js -------------------------------------------------------------------------------- /helpers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/error.js -------------------------------------------------------------------------------- /helpers/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/flags.js -------------------------------------------------------------------------------- /helpers/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/focus.js -------------------------------------------------------------------------------- /helpers/framed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/framed.js -------------------------------------------------------------------------------- /helpers/gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/gestures.js -------------------------------------------------------------------------------- /helpers/getLocalizeResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/getLocalizeResources.js -------------------------------------------------------------------------------- /helpers/ifrauBackdropService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/ifrauBackdropService.js -------------------------------------------------------------------------------- /helpers/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/interactive.js -------------------------------------------------------------------------------- /helpers/internal/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/internal/css.js -------------------------------------------------------------------------------- /helpers/internal/waitForElem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/internal/waitForElem.js -------------------------------------------------------------------------------- /helpers/localize-core-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/localize-core-element.js -------------------------------------------------------------------------------- /helpers/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/mathjax.js -------------------------------------------------------------------------------- /helpers/offsetParent-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/offsetParent-legacy.js -------------------------------------------------------------------------------- /helpers/overflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/overflow.js -------------------------------------------------------------------------------- /helpers/perfMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/perfMonitor.js -------------------------------------------------------------------------------- /helpers/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/plugins.js -------------------------------------------------------------------------------- /helpers/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/prism.js -------------------------------------------------------------------------------- /helpers/queueMicrotask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/queueMicrotask.js -------------------------------------------------------------------------------- /helpers/requestIdleCallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/requestIdleCallback.js -------------------------------------------------------------------------------- /helpers/svg-to-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/svg-to-css.js -------------------------------------------------------------------------------- /helpers/template-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/template-tags.js -------------------------------------------------------------------------------- /helpers/test/color.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/color.test.js -------------------------------------------------------------------------------- /helpers/test/contrast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/contrast.test.js -------------------------------------------------------------------------------- /helpers/test/dateTime.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/dateTime.test.js -------------------------------------------------------------------------------- /helpers/test/dismissible.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/dismissible.test.js -------------------------------------------------------------------------------- /helpers/test/dom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/dom.test.js -------------------------------------------------------------------------------- /helpers/test/error.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/error.test.js -------------------------------------------------------------------------------- /helpers/test/flags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/flags.test.js -------------------------------------------------------------------------------- /helpers/test/focus.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/focus.test.js -------------------------------------------------------------------------------- /helpers/test/interactive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/interactive.test.js -------------------------------------------------------------------------------- /helpers/test/overflow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/overflow.test.js -------------------------------------------------------------------------------- /helpers/test/plugins.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/plugins.test.js -------------------------------------------------------------------------------- /helpers/test/prism.vdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/prism.vdiff.js -------------------------------------------------------------------------------- /helpers/test/template-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/test/template-tags.test.js -------------------------------------------------------------------------------- /helpers/uniqueId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/uniqueId.js -------------------------------------------------------------------------------- /helpers/viewport-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/viewport-size.js -------------------------------------------------------------------------------- /helpers/visualReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/helpers/visualReady.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/index.js -------------------------------------------------------------------------------- /lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/ar.js -------------------------------------------------------------------------------- /lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/cy.js -------------------------------------------------------------------------------- /lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/da.js -------------------------------------------------------------------------------- /lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/de.js -------------------------------------------------------------------------------- /lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/en-gb.js -------------------------------------------------------------------------------- /lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/en.js -------------------------------------------------------------------------------- /lang/es-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/es-es.js -------------------------------------------------------------------------------- /lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/es.js -------------------------------------------------------------------------------- /lang/fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/fr-fr.js -------------------------------------------------------------------------------- /lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/fr.js -------------------------------------------------------------------------------- /lang/haw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/haw.js -------------------------------------------------------------------------------- /lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/hi.js -------------------------------------------------------------------------------- /lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/ja.js -------------------------------------------------------------------------------- /lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/ko.js -------------------------------------------------------------------------------- /lang/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/mi.js -------------------------------------------------------------------------------- /lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/nl.js -------------------------------------------------------------------------------- /lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/pt.js -------------------------------------------------------------------------------- /lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/sv.js -------------------------------------------------------------------------------- /lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/th.js -------------------------------------------------------------------------------- /lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/tr.js -------------------------------------------------------------------------------- /lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/vi.js -------------------------------------------------------------------------------- /lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/zh-cn.js -------------------------------------------------------------------------------- /lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/lang/zh-tw.js -------------------------------------------------------------------------------- /mixins/arrow-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/arrow-keys/README.md -------------------------------------------------------------------------------- /mixins/arrow-keys/arrow-keys-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/arrow-keys/arrow-keys-mixin.js -------------------------------------------------------------------------------- /mixins/arrow-keys/demo/arrow-keys-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/arrow-keys/demo/arrow-keys-test.js -------------------------------------------------------------------------------- /mixins/async-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/async-container/README.md -------------------------------------------------------------------------------- /mixins/async-container/demo/async-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/async-container/demo/async-item.js -------------------------------------------------------------------------------- /mixins/collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/collection/README.md -------------------------------------------------------------------------------- /mixins/collection/collection-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/collection/collection-mixin.js -------------------------------------------------------------------------------- /mixins/focus-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/focus-mixin.js -------------------------------------------------------------------------------- /mixins/focus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/focus/README.md -------------------------------------------------------------------------------- /mixins/focus/focus-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/focus/focus-mixin.js -------------------------------------------------------------------------------- /mixins/focus/test/focus-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/focus/test/focus-mixin.test.js -------------------------------------------------------------------------------- /mixins/interactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/interactive/README.md -------------------------------------------------------------------------------- /mixins/interactive/interactive-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/interactive/interactive-mixin.js -------------------------------------------------------------------------------- /mixins/labelled-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/labelled-mixin.js -------------------------------------------------------------------------------- /mixins/labelled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/labelled/README.md -------------------------------------------------------------------------------- /mixins/labelled/demo/labelled-mixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/labelled/demo/labelled-mixin.html -------------------------------------------------------------------------------- /mixins/labelled/labelled-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/labelled/labelled-mixin.js -------------------------------------------------------------------------------- /mixins/labelled/test/label-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/labelled/test/label-mixin.test.js -------------------------------------------------------------------------------- /mixins/loading-complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/loading-complete/README.md -------------------------------------------------------------------------------- /mixins/localize-dynamic-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/localize-dynamic-mixin.js -------------------------------------------------------------------------------- /mixins/localize-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/localize-mixin.js -------------------------------------------------------------------------------- /mixins/localize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/localize/README.md -------------------------------------------------------------------------------- /mixins/localize/demo/localize-mixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/localize/demo/localize-mixin.html -------------------------------------------------------------------------------- /mixins/localize/localize-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/localize/localize-mixin.js -------------------------------------------------------------------------------- /mixins/property-required/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/property-required/README.md -------------------------------------------------------------------------------- /mixins/provider-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/provider-mixin.js -------------------------------------------------------------------------------- /mixins/provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/provider/README.md -------------------------------------------------------------------------------- /mixins/provider/provider-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/provider/provider-mixin.js -------------------------------------------------------------------------------- /mixins/rtl-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/rtl-mixin.js -------------------------------------------------------------------------------- /mixins/rtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/rtl/README.md -------------------------------------------------------------------------------- /mixins/rtl/rtl-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/rtl/rtl-mixin.js -------------------------------------------------------------------------------- /mixins/rtl/test/rtl-mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/rtl/test/rtl-mixin.test.js -------------------------------------------------------------------------------- /mixins/theme/theme-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/theme/theme-mixin.js -------------------------------------------------------------------------------- /mixins/visible-on-ancestor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/mixins/visible-on-ancestor/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/package.json -------------------------------------------------------------------------------- /rollup/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/rollup/rollup.config.js -------------------------------------------------------------------------------- /templates/primary-secondary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/templates/primary-secondary/README.md -------------------------------------------------------------------------------- /templates/primary-secondary/demo/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/templates/primary-secondary/demo/form.html -------------------------------------------------------------------------------- /test/load-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/test/load-sass.js -------------------------------------------------------------------------------- /test/sass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/test/sass.scss -------------------------------------------------------------------------------- /tools/constructor-test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/tools/constructor-test-helper.js -------------------------------------------------------------------------------- /tools/mathjax-test-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrightspaceUI/core/HEAD/tools/mathjax-test-context.js --------------------------------------------------------------------------------