├── .babelrc.js ├── .eslintrc.json ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .nojekyll ├── .travis.yml ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── aurelia_project ├── aurelia.json ├── environments │ ├── dev.js │ ├── prod.js │ └── stage.js ├── generators │ ├── attribute.js │ ├── attribute.json │ ├── binding-behavior.js │ ├── binding-behavior.json │ ├── component.js │ ├── component.json │ ├── element.js │ ├── element.json │ ├── generator.js │ ├── generator.json │ ├── task.js │ ├── task.json │ ├── value-converter.js │ └── value-converter.json └── tasks │ ├── build-plugin.js │ ├── build.js │ ├── build.json │ ├── copy-files.js │ ├── lint.js │ ├── process-css.js │ ├── process-markup.js │ ├── process-scss.js │ ├── run.js │ ├── run.json │ ├── test.js │ ├── test.json │ ├── transpile.js │ └── watch.js ├── dist ├── components │ ├── checkbox │ │ ├── mdc-checkbox.html │ │ └── mdc-checkbox.js │ ├── chip │ │ ├── mdc-chip.html │ │ └── mdc-chip.js │ ├── menu │ │ ├── mdc-menu.html │ │ └── mdc-menu.js │ ├── progress │ │ ├── mdc-progress.html │ │ └── mdc-progress.js │ ├── radio │ │ ├── mdc-radio.html │ │ └── mdc-radio.js │ ├── select │ │ ├── mdc-select.html │ │ └── mdc-select.js │ ├── snackbar │ │ ├── mdc-snackbar.html │ │ └── mdc-snackbar.js │ ├── switch │ │ ├── mdc-switch.html │ │ └── mdc-switch.js │ ├── textarea │ │ ├── mdc-textarea.html │ │ └── mdc-textarea.js │ └── textfield │ │ ├── mdc-text-field.html │ │ └── mdc-text-field.js └── index.js ├── index.html ├── karma.conf.js ├── node_modules ├── @material │ ├── animation │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _animation.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── animationframe.d.ts │ │ ├── animationframe.js │ │ ├── animationframe.js.map │ │ ├── dist │ │ │ ├── mdc.animation.js │ │ │ ├── mdc.animation.js.map │ │ │ └── mdc.animation.min.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── auto-init │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.autoInit.js │ │ │ ├── mdc.autoInit.js.map │ │ │ └── mdc.autoInit.min.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── banner │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _banner-theme.scss │ │ ├── _banner.scss │ │ ├── _index.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.banner.css │ │ │ ├── mdc.banner.css.map │ │ │ ├── mdc.banner.js │ │ │ ├── mdc.banner.js.map │ │ │ ├── mdc.banner.min.css │ │ │ ├── mdc.banner.min.css.map │ │ │ └── mdc.banner.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ └── banner.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── styles.scss │ ├── base │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── dist │ │ │ ├── mdc.base.js │ │ │ ├── mdc.base.js.map │ │ │ └── mdc.base.min.js │ │ ├── externs.d.ts │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── observer-foundation.d.ts │ │ ├── observer-foundation.js │ │ ├── observer-foundation.js.map │ │ ├── observer-proxy.d.ts │ │ ├── observer-proxy.js │ │ ├── observer-proxy.js.map │ │ ├── observer.d.ts │ │ ├── observer.js │ │ ├── observer.js.map │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── button │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _button-base.scss │ │ ├── _button-filled-theme.scss │ │ ├── _button-filled.scss │ │ ├── _button-outlined-theme.scss │ │ ├── _button-outlined.scss │ │ ├── _button-protected-theme.scss │ │ ├── _button-protected.scss │ │ ├── _button-ripple.scss │ │ ├── _button-shared-theme.scss │ │ ├── _button-text-theme.scss │ │ ├── _button-text.scss │ │ ├── _button-theme.scss │ │ ├── _button.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.button.css │ │ │ ├── mdc.button.css.map │ │ │ ├── mdc.button.min.css │ │ │ └── mdc.button.min.css.map │ │ ├── images │ │ │ ├── button-theming.png │ │ │ ├── buttons_types.png │ │ │ ├── contained-button.png │ │ │ ├── contained-icon-button.png │ │ │ ├── outlined-button.png │ │ │ ├── outlined-icon-button.png │ │ │ ├── text-button.png │ │ │ ├── text-icon-button.png │ │ │ └── toggle-bar.png │ │ ├── mdc-button.import.scss │ │ ├── mdc-button.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-button.scss.test.ts │ ├── card │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.card.css │ │ │ ├── mdc.card.css.map │ │ │ ├── mdc.card.min.css │ │ │ └── mdc.card.min.css.map │ │ ├── images │ │ │ ├── card-elevated.png │ │ │ └── card-outlined.png │ │ ├── mdc-card.import.scss │ │ ├── mdc-card.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-card.scss.test.ts │ ├── checkbox │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _checkbox-custom-properties.scss │ │ ├── _checkbox-theme.scss │ │ ├── _checkbox.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _keyframes.import.scss │ │ ├── _keyframes.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.checkbox.css │ │ │ ├── mdc.checkbox.css.map │ │ │ ├── mdc.checkbox.js │ │ │ ├── mdc.checkbox.js.map │ │ │ ├── mdc.checkbox.min.css │ │ │ ├── mdc.checkbox.min.css.map │ │ │ └── mdc.checkbox.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── checkbox-hero.png │ │ │ └── checkbox-states.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-checkbox.import.scss │ │ ├── mdc-checkbox.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── chips │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _assist-chip-theme.scss │ │ ├── _chip-set-theme.scss │ │ ├── _chip-set.scss │ │ ├── _chip-theme.scss │ │ ├── _chip.scss │ │ ├── _filter-chip-theme.scss │ │ ├── _index.scss │ │ ├── _input-chip-theme.scss │ │ ├── _suggestion-chip-theme.scss │ │ ├── action │ │ │ ├── README.md │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component-ripple.d.ts │ │ │ ├── component-ripple.js │ │ │ ├── component-ripple.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── primary-foundation.d.ts │ │ │ ├── primary-foundation.js │ │ │ ├── primary-foundation.js.map │ │ │ ├── trailing-foundation.d.ts │ │ │ ├── trailing-foundation.js │ │ │ ├── trailing-foundation.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ └── types.js.map │ │ ├── chip-set │ │ │ ├── README.md │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ └── types.js.map │ │ ├── chip │ │ │ ├── README.md │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ └── types.js.map │ │ ├── deprecated │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.import.scss │ │ │ ├── _variables.scss │ │ │ ├── chip-set │ │ │ │ ├── adapter.d.ts │ │ │ │ ├── adapter.js │ │ │ │ ├── adapter.js.map │ │ │ │ ├── component.d.ts │ │ │ │ ├── component.js │ │ │ │ ├── component.js.map │ │ │ │ ├── constants.d.ts │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── foundation.d.ts │ │ │ │ ├── foundation.js │ │ │ │ ├── foundation.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mdc-chip-set.import.scss │ │ │ │ └── mdc-chip-set.scss │ │ │ ├── chip │ │ │ │ ├── adapter.d.ts │ │ │ │ ├── adapter.js │ │ │ │ ├── adapter.js.map │ │ │ │ ├── component.d.ts │ │ │ │ ├── component.js │ │ │ │ ├── component.js.map │ │ │ │ ├── constants.d.ts │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── foundation.d.ts │ │ │ │ ├── foundation.js │ │ │ │ ├── foundation.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mdc-chip.import.scss │ │ │ │ ├── mdc-chip.scss │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ └── types.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mdc-chips.import.scss │ │ │ ├── mdc-chips.scss │ │ │ ├── test │ │ │ │ └── feature-targeting-any.test.scss │ │ │ └── trailingaction │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── adapter.d.ts │ │ │ │ ├── adapter.js │ │ │ │ ├── adapter.js.map │ │ │ │ ├── component.d.ts │ │ │ │ ├── component.js │ │ │ │ ├── component.js.map │ │ │ │ ├── constants.d.ts │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── foundation.d.ts │ │ │ │ ├── foundation.js │ │ │ │ ├── foundation.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mdc-chip-trailing-action.scss │ │ │ │ ├── test │ │ │ │ └── feature-targeting-any.test.scss │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ └── types.js.map │ │ ├── dist │ │ │ ├── mdc.chips.css │ │ │ ├── mdc.chips.css.map │ │ │ ├── mdc.chips.js │ │ │ ├── mdc.chips.js.map │ │ │ ├── mdc.chips.min.css │ │ │ ├── mdc.chips.min.css.map │ │ │ └── mdc.chips.min.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── styles.scss │ ├── circular-progress │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _keyframes.import.scss │ │ ├── _keyframes.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.circular-progress.css │ │ │ ├── mdc.circular-progress.css.map │ │ │ ├── mdc.circular-progress.min.css │ │ │ ├── mdc.circular-progress.min.css.map │ │ │ ├── mdc.circularProgress.js │ │ │ ├── mdc.circularProgress.js.map │ │ │ └── mdc.circularProgress.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-circular-progress.import.scss │ │ ├── mdc-circular-progress.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── data-table │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _data-table-cell.scss │ │ ├── _data-table-header-cell.scss │ │ ├── _data-table-pagination.scss │ │ ├── _data-table-progress-indicator.scss │ │ ├── _data-table-theme.scss │ │ ├── _data-table.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.data-table.css │ │ │ ├── mdc.data-table.css.map │ │ │ ├── mdc.data-table.min.css │ │ │ ├── mdc.data-table.min.css.map │ │ │ ├── mdc.dataTable.js │ │ │ ├── mdc.dataTable.js.map │ │ │ └── mdc.dataTable.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ └── data-table-hero.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-data-table.import.scss │ │ ├── mdc-data-table.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── density │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _density.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── dialog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _dialog-custom-properties.scss │ │ ├── _dialog-theme.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.dialog.css │ │ │ ├── mdc.dialog.css.map │ │ │ ├── mdc.dialog.js │ │ │ ├── mdc.dialog.js.map │ │ │ ├── mdc.dialog.min.css │ │ │ ├── mdc.dialog.min.css.map │ │ │ └── mdc.dialog.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── alert-dialog.png │ │ │ ├── confirmation-dialog.png │ │ │ ├── full-screen-dialog.png │ │ │ └── simple-dialog.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-dialog.import.scss │ │ ├── mdc-dialog.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── dom │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _dom.scss │ │ ├── _index.scss │ │ ├── _mixins.scss │ │ ├── announce.d.ts │ │ ├── announce.js │ │ ├── announce.js.map │ │ ├── dist │ │ │ ├── mdc.dom.js │ │ │ ├── mdc.dom.js.map │ │ │ └── mdc.dom.min.js │ │ ├── events.d.ts │ │ ├── events.js │ │ ├── events.js.map │ │ ├── focus-trap.d.ts │ │ ├── focus-trap.js │ │ ├── focus-trap.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── keyboard.d.ts │ │ ├── keyboard.js │ │ ├── keyboard.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── ponyfill.d.ts │ │ ├── ponyfill.js │ │ └── ponyfill.js.map │ ├── drawer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── common.import.scss │ │ ├── common.scss │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dismissible │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── mdc-drawer-dismissible.import.scss │ │ │ └── mdc-drawer-dismissible.scss │ │ ├── dist │ │ │ ├── mdc.drawer.css │ │ │ ├── mdc.drawer.css.map │ │ │ ├── mdc.drawer.js │ │ │ ├── mdc.drawer.js.map │ │ │ ├── mdc.drawer.min.css │ │ │ ├── mdc.drawer.min.css.map │ │ │ └── mdc.drawer.min.js │ │ ├── images │ │ │ ├── drawer-composite.png │ │ │ └── drawer-hero.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-drawer.import.scss │ │ ├── mdc-drawer.scss │ │ ├── modal │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── mdc-drawer-modal.import.scss │ │ │ └── mdc-drawer-modal.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── elevation │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _elevation-theme.scss │ │ ├── _elevation.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.elevation.css │ │ │ ├── mdc.elevation.css.map │ │ │ ├── mdc.elevation.min.css │ │ │ └── mdc.elevation.min.css.map │ │ ├── mdc-elevation.import.scss │ │ ├── mdc-elevation.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── overlay-styles.scss │ │ ├── package.json │ │ ├── styles.scss │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-elevation.scss.test.ts │ ├── fab │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _extended-fab-theme.scss │ │ ├── _fab-custom-properties.scss │ │ ├── _fab-small-theme.scss │ │ ├── _fab-theme.scss │ │ ├── _fab.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.fab.css │ │ │ ├── mdc.fab.css.map │ │ │ ├── mdc.fab.min.css │ │ │ └── mdc.fab.min.css.map │ │ ├── images │ │ │ └── FAB_types.png │ │ ├── mdc-fab.import.scss │ │ ├── mdc-fab.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-fab.scss.test.ts │ ├── feature-targeting │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _feature-targeting.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── floating-label │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.floating-label.css │ │ │ ├── mdc.floating-label.css.map │ │ │ ├── mdc.floating-label.min.css │ │ │ ├── mdc.floating-label.min.css.map │ │ │ ├── mdc.floatingLabel.js │ │ │ ├── mdc.floatingLabel.js.map │ │ │ └── mdc.floatingLabel.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-floating-label.import.scss │ │ ├── mdc-floating-label.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── focus-ring │ │ ├── LICENSE │ │ ├── _focus-ring.scss │ │ └── package.json │ ├── form-field │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.form-field.css │ │ │ ├── mdc.form-field.css.map │ │ │ ├── mdc.form-field.min.css │ │ │ ├── mdc.form-field.min.css.map │ │ │ ├── mdc.formField.js │ │ │ ├── mdc.formField.js.map │ │ │ └── mdc.formField.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-form-field.import.scss │ │ ├── mdc-form-field.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── icon-button │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _icon-button-all-deprecated.scss │ │ ├── _icon-button-theme.scss │ │ ├── _icon-button.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.icon-button.css │ │ │ ├── mdc.icon-button.css.map │ │ │ ├── mdc.icon-button.min.css │ │ │ ├── mdc.icon-button.min.css.map │ │ │ ├── mdc.iconButton.js │ │ │ ├── mdc.iconButton.js.map │ │ │ └── mdc.iconButton.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-icon-button.import.scss │ │ ├── mdc-icon-button.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── image-list │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.image-list.css │ │ │ ├── mdc.image-list.css.map │ │ │ ├── mdc.image-list.min.css │ │ │ └── mdc.image-list.min.css.map │ │ ├── mdc-image-list.import.scss │ │ ├── mdc-image-list.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── test │ │ │ ├── feature-targeting-all.test.scss │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-image-list.scss.test.ts │ ├── layout-grid │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.layout-grid.css │ │ │ ├── mdc.layout-grid.css.map │ │ │ ├── mdc.layout-grid.min.css │ │ │ └── mdc.layout-grid.min.css.map │ │ ├── mdc-layout-grid.import.scss │ │ ├── mdc-layout-grid.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── line-ripple │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.line-ripple.css │ │ │ ├── mdc.line-ripple.css.map │ │ │ ├── mdc.line-ripple.min.css │ │ │ ├── mdc.line-ripple.min.css.map │ │ │ ├── mdc.lineRipple.js │ │ │ ├── mdc.lineRipple.js.map │ │ │ └── mdc.lineRipple.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-line-ripple.import.scss │ │ ├── mdc-line-ripple.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── linear-progress │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _keyframes.import.scss │ │ ├── _keyframes.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.linear-progress.css │ │ │ ├── mdc.linear-progress.css.map │ │ │ ├── mdc.linear-progress.min.css │ │ │ ├── mdc.linear-progress.min.css.map │ │ │ ├── mdc.linearProgress.js │ │ │ ├── mdc.linearProgress.js.map │ │ │ └── mdc.linearProgress.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-linear-progress.import.scss │ │ ├── mdc-linear-progress.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── list │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _evolution-mixins.scss │ │ ├── _evolution-variables.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.list.css │ │ │ ├── mdc.list.css.map │ │ │ ├── mdc.list.js │ │ │ ├── mdc.list.js.map │ │ │ ├── mdc.list.min.css │ │ │ ├── mdc.list.min.css.map │ │ │ └── mdc.list.min.js │ │ ├── events.d.ts │ │ ├── events.js │ │ ├── events.js.map │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ └── lists-types.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-list.import.scss │ │ ├── mdc-list.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── typeahead.d.ts │ │ ├── typeahead.js │ │ ├── typeahead.js.map │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── menu-surface │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _menu-surface-custom-properties.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.menu-surface.css │ │ │ ├── mdc.menu-surface.css.map │ │ │ ├── mdc.menu-surface.min.css │ │ │ ├── mdc.menu-surface.min.css.map │ │ │ ├── mdc.menuSurface.js │ │ │ ├── mdc.menuSurface.js.map │ │ │ └── mdc.menuSurface.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-menu-surface.import.scss │ │ ├── mdc-menu-surface.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── menu │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _menu-custom-properties.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.menu.css │ │ │ ├── mdc.menu.css.map │ │ │ ├── mdc.menu.js │ │ │ ├── mdc.menu.js.map │ │ │ ├── mdc.menu.min.css │ │ │ ├── mdc.menu.min.css.map │ │ │ └── mdc.menu.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-menu.import.scss │ │ ├── mdc-menu.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── notched-outline │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.notched-outline.css │ │ │ ├── mdc.notched-outline.css.map │ │ │ ├── mdc.notched-outline.min.css │ │ │ ├── mdc.notched-outline.min.css.map │ │ │ ├── mdc.notchedOutline.js │ │ │ ├── mdc.notchedOutline.js.map │ │ │ └── mdc.notchedOutline.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-notched-outline.import.scss │ │ ├── mdc-notched-outline.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── progress-indicator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── component.ts │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── foundation.ts │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ └── package.json │ ├── radio │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _radio-all-deprecated.scss │ │ ├── _radio-theme.scss │ │ ├── _radio.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.radio.css │ │ │ ├── mdc.radio.css.map │ │ │ ├── mdc.radio.js │ │ │ ├── mdc.radio.js.map │ │ │ ├── mdc.radio.min.css │ │ │ ├── mdc.radio.min.css.map │ │ │ └── mdc.radio.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── radio-button-hero.png │ │ │ └── radio-button-states.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-radio.import.scss │ │ ├── mdc-radio.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── styles.scss │ ├── ripple │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _keyframes.import.scss │ │ ├── _keyframes.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _ripple-theme.scss │ │ ├── _ripple.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── common.import.scss │ │ ├── common.scss │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.ripple.css │ │ │ ├── mdc.ripple.css.map │ │ │ ├── mdc.ripple.js │ │ │ ├── mdc.ripple.js.map │ │ │ ├── mdc.ripple.min.css │ │ │ ├── mdc.ripple.min.css.map │ │ │ └── mdc.ripple.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-ripple.import.scss │ │ ├── mdc-ripple.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── rtl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _rtl.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── test │ │ │ ├── disable-include-rtl.scss.test.ts │ │ │ ├── disable-include-rtl.test.scss │ │ │ ├── rtl.scss.test.ts │ │ │ ├── rtl.test.scss │ │ │ ├── theme.scss.test.ts │ │ │ └── theme.test.scss │ ├── segmented-button │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── dist │ │ │ ├── mdc.segmented-button.css │ │ │ ├── mdc.segmented-button.css.map │ │ │ ├── mdc.segmented-button.min.css │ │ │ ├── mdc.segmented-button.min.css.map │ │ │ ├── mdc.segmentedButton.js │ │ │ ├── mdc.segmentedButton.js.map │ │ │ └── mdc.segmentedButton.min.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── segment │ │ │ ├── _segment-ripple.scss │ │ │ ├── _segment-theme.scss │ │ │ ├── _segment.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── segmented-button │ │ │ ├── _segmented-button-theme.scss │ │ │ ├── _segmented-button.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── select │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _filled-select-theme.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _outlined-select-theme.scss │ │ ├── _select-filled.scss │ │ ├── _select-helper-text-theme.scss │ │ ├── _select-helper-text.scss │ │ ├── _select-icon-theme.scss │ │ ├── _select-icon.scss │ │ ├── _select-outlined.scss │ │ ├── _select-ripple.scss │ │ ├── _select-theme.scss │ │ ├── _select.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.select.css │ │ │ ├── mdc.select.css.map │ │ │ ├── mdc.select.js │ │ │ ├── mdc.select.js.map │ │ │ ├── mdc.select.min.css │ │ │ ├── mdc.select.min.css.map │ │ │ └── mdc.select.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── helper-text │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mdc-select-helper-text.import.scss │ │ │ └── mdc-select-helper-text.scss │ │ ├── icon │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.import.scss │ │ │ ├── _variables.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mdc-select-icon.import.scss │ │ │ └── mdc-select-icon.scss │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-select.import.scss │ │ ├── mdc-select.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── shape │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _shape.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-shape.scss.test.ts │ ├── slider │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _slider-theme.scss │ │ ├── _slider.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.slider.css │ │ │ ├── mdc.slider.css.map │ │ │ ├── mdc.slider.js │ │ │ ├── mdc.slider.js.map │ │ │ ├── mdc.slider.min.css │ │ │ ├── mdc.slider.min.css.map │ │ │ └── mdc.slider.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── continuous-range-slider.png │ │ │ ├── continuous-slider.png │ │ │ ├── discrete-slider-tick-marks.png │ │ │ └── discrete-slider.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── snackbar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.snackbar.css │ │ │ ├── mdc.snackbar.css.map │ │ │ ├── mdc.snackbar.js │ │ │ ├── mdc.snackbar.js.map │ │ │ ├── mdc.snackbar.min.css │ │ │ ├── mdc.snackbar.min.css.map │ │ │ └── mdc.snackbar.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-snackbar.import.scss │ │ ├── mdc-snackbar.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── switch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _switch-theme.scss │ │ ├── _switch.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── deprecated │ │ │ ├── _functions.import.scss │ │ │ ├── _functions.scss │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.import.scss │ │ │ ├── _variables.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mdc-switch-deprecated.scss │ │ │ ├── mdc-switch.import.scss │ │ │ ├── mdc-switch.scss │ │ │ └── test │ │ │ │ └── feature-targeting-any.test.scss │ │ ├── dist │ │ │ ├── mdc.switch.css │ │ │ ├── mdc.switch.css.map │ │ │ ├── mdc.switch.js │ │ │ ├── mdc.switch.js.map │ │ │ ├── mdc.switch.min.css │ │ │ ├── mdc.switch.min.css.map │ │ │ └── mdc.switch.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── switch-hero.png │ │ │ └── switch-states.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── styles.scss │ ├── tab-bar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _tab-bar-theme.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.tab-bar.css │ │ │ ├── mdc.tab-bar.css.map │ │ │ ├── mdc.tab-bar.min.css │ │ │ ├── mdc.tab-bar.min.css.map │ │ │ ├── mdc.tabBar.js │ │ │ ├── mdc.tabBar.js.map │ │ │ └── mdc.tabBar.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-tab-bar.import.scss │ │ ├── mdc-tab-bar.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── tab-indicator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _tab-indicator-theme.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.tab-indicator.css │ │ │ ├── mdc.tab-indicator.css.map │ │ │ ├── mdc.tab-indicator.min.css │ │ │ ├── mdc.tab-indicator.min.css.map │ │ │ ├── mdc.tabIndicator.js │ │ │ ├── mdc.tabIndicator.js.map │ │ │ └── mdc.tabIndicator.min.js │ │ ├── fading-foundation.d.ts │ │ ├── fading-foundation.js │ │ ├── fading-foundation.js.map │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-tab-indicator.import.scss │ │ ├── mdc-tab-indicator.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── sliding-foundation.d.ts │ │ ├── sliding-foundation.js │ │ └── sliding-foundation.js.map │ ├── tab-scroller │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.tab-scroller.css │ │ │ ├── mdc.tab-scroller.css.map │ │ │ ├── mdc.tab-scroller.min.css │ │ │ ├── mdc.tab-scroller.min.css.map │ │ │ ├── mdc.tabScroller.js │ │ │ ├── mdc.tabScroller.js.map │ │ │ └── mdc.tabScroller.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-tab-scroller.import.scss │ │ ├── mdc-tab-scroller.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── rtl-default-scroller.d.ts │ │ ├── rtl-default-scroller.js │ │ ├── rtl-default-scroller.js.map │ │ ├── rtl-negative-scroller.d.ts │ │ ├── rtl-negative-scroller.js │ │ ├── rtl-negative-scroller.js.map │ │ ├── rtl-reverse-scroller.d.ts │ │ ├── rtl-reverse-scroller.js │ │ ├── rtl-reverse-scroller.js.map │ │ ├── rtl-scroller.d.ts │ │ ├── rtl-scroller.js │ │ ├── rtl-scroller.js.map │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ ├── tab │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _tab-theme.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.tab.css │ │ │ ├── mdc.tab.css.map │ │ │ ├── mdc.tab.js │ │ │ ├── mdc.tab.js.map │ │ │ ├── mdc.tab.min.css │ │ │ ├── mdc.tab.min.css.map │ │ │ └── mdc.tab.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-tab.import.scss │ │ ├── mdc-tab.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── textfield │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _filled-text-field-theme.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _outlined-text-field-theme.scss │ │ ├── _text-field-theme.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── character-counter │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.textfield.css │ │ │ ├── mdc.textfield.css.map │ │ │ ├── mdc.textfield.js │ │ │ ├── mdc.textfield.js.map │ │ │ ├── mdc.textfield.min.css │ │ │ ├── mdc.textfield.min.css.map │ │ │ └── mdc.textfield.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── helper-text │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── icon │ │ │ ├── README.md │ │ │ ├── _index.scss │ │ │ ├── _mixins.import.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.import.scss │ │ │ ├── _variables.scss │ │ │ ├── adapter.d.ts │ │ │ ├── adapter.js │ │ │ ├── adapter.js.map │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── component.js.map │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ ├── foundation.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── images │ │ │ └── text-field-generic.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-text-field.import.scss │ │ ├── mdc-text-field.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── text_field_gss_gss.scss │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ ├── theme │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _all-theme-deprecated.scss │ │ ├── _color-custom-properties.scss │ │ ├── _color-palette.import.scss │ │ ├── _color-palette.scss │ │ ├── _css.scss │ │ ├── _custom-properties.scss │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _gss.scss │ │ ├── _index.scss │ │ ├── _keys.scss │ │ ├── _map-ext.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _replace.scss │ │ ├── _selector-ext.scss │ │ ├── _shadow-dom.scss │ │ ├── _state.scss │ │ ├── _theme-color.scss │ │ ├── _theme.scss │ │ ├── _tools.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ │ ├── mdc.theme.css │ │ │ ├── mdc.theme.css.map │ │ │ ├── mdc.theme.min.css │ │ │ └── mdc.theme.min.css.map │ │ ├── mdc-theme.import.scss │ │ ├── mdc-theme.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ ├── mdc-theme.scss.test.ts │ │ │ ├── override.test.scss │ │ │ ├── replace.test.scss │ │ │ ├── shadow-dom.test.scss │ │ │ ├── theme-validate-keys.test.scss │ │ │ ├── theme.scss.test.ts │ │ │ └── theme.test.scss │ ├── tokens │ │ ├── LICENSE │ │ ├── _resolvers.scss │ │ └── package.json │ ├── tooltip │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _tooltip-theme.scss │ │ ├── _tooltip.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.tooltip.css │ │ │ ├── mdc.tooltip.css.map │ │ │ ├── mdc.tooltip.js │ │ │ ├── mdc.tooltip.js.map │ │ │ ├── mdc.tooltip.min.css │ │ │ ├── mdc.tooltip.min.css.map │ │ │ └── mdc.tooltip.min.js │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── plain_tooltip_alignment.png │ │ │ ├── rich_tooltip.png │ │ │ ├── rich_tooltip_alignment.png │ │ │ └── tooltip.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ └── styles.scss │ ├── top-app-bar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── adapter.d.ts │ │ ├── adapter.js │ │ ├── adapter.js.map │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── component.js.map │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── constants.js.map │ │ ├── dist │ │ │ ├── mdc.top-app-bar.css │ │ │ ├── mdc.top-app-bar.css.map │ │ │ ├── mdc.top-app-bar.min.css │ │ │ ├── mdc.top-app-bar.min.css.map │ │ │ ├── mdc.topAppBar.js │ │ │ ├── mdc.topAppBar.js.map │ │ │ └── mdc.topAppBar.min.js │ │ ├── fixed │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ └── foundation.js.map │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── foundation.js.map │ │ ├── images │ │ │ ├── contextual-app-bar.png │ │ │ └── regular-app-bar.png │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mdc-top-app-bar.import.scss │ │ ├── mdc-top-app-bar.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── short │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ └── foundation.js.map │ │ └── standard │ │ │ ├── foundation.d.ts │ │ │ ├── foundation.js │ │ │ └── foundation.js.map │ ├── touch-target │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _touch-target.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── mdc-touch-target.import.scss │ │ ├── mdc-touch-target.scss │ │ ├── node_modules │ │ │ └── tslib │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── tslib.d.ts │ │ │ │ ├── tslib.es6.html │ │ │ │ ├── tslib.es6.js │ │ │ │ ├── tslib.html │ │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ └── test │ │ │ ├── feature-targeting-any.test.scss │ │ │ └── mdc-touch-target.scss.test.ts │ └── typography │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _functions.import.scss │ │ ├── _functions.scss │ │ ├── _index.scss │ │ ├── _mixins.import.scss │ │ ├── _mixins.scss │ │ ├── _typography.scss │ │ ├── _variables.import.scss │ │ ├── _variables.scss │ │ ├── dist │ │ ├── mdc.typography.css │ │ ├── mdc.typography.css.map │ │ ├── mdc.typography.min.css │ │ └── mdc.typography.min.css.map │ │ ├── mdc-typography.import.scss │ │ ├── mdc-typography.scss │ │ ├── node_modules │ │ └── tslib │ │ │ ├── CopyrightNotice.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── modules │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── tslib.d.ts │ │ │ ├── tslib.es6.html │ │ │ ├── tslib.es6.js │ │ │ ├── tslib.html │ │ │ └── tslib.js │ │ ├── package.json │ │ ├── styles.scss │ │ └── test │ │ ├── feature-targeting-any.test.scss │ │ ├── global-variables.test.scss │ │ └── mdc-typography.scss.test.ts └── material-components-web │ ├── LICENSE │ ├── README.md │ ├── dist │ ├── material-components-web.css │ ├── material-components-web.css.map │ ├── material-components-web.d.ts │ ├── material-components-web.js │ ├── material-components-web.js.map │ ├── material-components-web.min.css │ ├── material-components-web.min.css.map │ └── material-components-web.min.js │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── index.scss │ ├── material-components-web.scss │ └── package.json ├── npm-shrinkwrap.json ├── package.json ├── scripts ├── app-bundle.js ├── app-bundle.js.map ├── vendor-bundle.js └── vendor-bundle.js.map └── src ├── app.html ├── app.js ├── app.scss ├── main.js └── resources ├── components ├── checkbox │ ├── README.md │ ├── mdc-checkbox.html │ └── mdc-checkbox.js ├── chip │ ├── README.md │ ├── mdc-chip.html │ └── mdc-chip.js ├── menu │ ├── README.md │ ├── mdc-menu.html │ └── mdc-menu.js ├── progress │ ├── README.md │ ├── mdc-progress.html │ └── mdc-progress.js ├── radio │ ├── README.md │ ├── mdc-radio.html │ └── mdc-radio.js ├── select │ ├── README.md │ ├── mdc-select.html │ └── mdc-select.js ├── snackbar │ ├── README.md │ ├── mdc-snackbar.html │ └── mdc-snackbar.js ├── switch │ ├── README.md │ ├── mdc-switch.html │ └── mdc-switch.js ├── textarea │ ├── README.md │ ├── mdc-textarea.html │ └── mdc-textarea.js └── textfield │ ├── README.md │ ├── mdc-text-field.html │ └── mdc-text-field.js └── index.js /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created 2 | # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages 3 | 4 | name: Node.js Package 5 | 6 | on: 7 | release: 8 | types: [created] 9 | 10 | jobs: 11 | publish-npm: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v3 15 | - uses: actions/setup-node@v3 16 | with: 17 | node-version: 10.16.0 18 | registry-url: https://registry.npmjs.org/ 19 | - run: npm i 20 | - run: npm publish 21 | env: 22 | NODE_AUTH_TOKEN: ${{secrets.npm_token}} 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | jspm_packages 2 | bower_components 3 | .idea 4 | .DS_STORE 5 | Thumbs.db 6 | build/reports 7 | /coverage 8 | .vs 9 | 10 | /yarn.lock 11 | /package-lock.json 12 | 13 | # Compiled files 14 | # can push /scripts up if want to serve the repo as gh-pages 15 | /src/environment.js 16 | 17 | !node_modules/ 18 | 19 | node_modules/* 20 | !node_modules/@material/ 21 | !node_modules/material-components-web/ -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/.nojekyll -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '8' 4 | - '10' 5 | -------------------------------------------------------------------------------- /aurelia_project/environments/dev.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true, 3 | testing: true 4 | }; 5 | -------------------------------------------------------------------------------- /aurelia_project/environments/prod.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: false, 3 | testing: false 4 | }; 5 | -------------------------------------------------------------------------------- /aurelia_project/environments/stage.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true, 3 | testing: false 4 | }; 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/attribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "attribute", 3 | "description": "Creates a custom attribute class and places it in the project resources." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/binding-behavior.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "binding-behavior", 3 | "description": "Creates a binding behavior class and places it in the project resources." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "component", 3 | "description": "Creates a custom component class and template (view model and view), placing them in the project source folder (or optionally in sub folders)." 4 | } -------------------------------------------------------------------------------- /aurelia_project/generators/element.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "element", 3 | "description": "Creates a custom element class and template, placing them in the project resources." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "generator", 3 | "description": "Creates a generator class and places it in the project generators folder." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/task.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "task", 3 | "description": "Creates a task and places it in the project tasks folder." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/generators/value-converter.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "value-converter", 3 | "description": "Creates a value converter class and places it in the project resources." 4 | } 5 | -------------------------------------------------------------------------------- /aurelia_project/tasks/build-plugin.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp'; 2 | import {pluginMarkup} from './process-markup'; 3 | import {pluginCSS} from './process-css'; 4 | import {pluginSCSS} from './process-scss'; 5 | import {transpilePlugin} from './transpile'; 6 | import del from 'del'; 7 | import project from '../aurelia.json'; 8 | 9 | function clean() { 10 | return del(project.plugin.output); 11 | } 12 | 13 | export default gulp.series( 14 | clean, 15 | gulp.parallel( 16 | pluginMarkup, 17 | pluginCSS, 18 | pluginSCSS, 19 | transpilePlugin 20 | ), 21 | ); -------------------------------------------------------------------------------- /aurelia_project/tasks/build.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "build", 3 | "description": "Builds and processes all application assets.", 4 | "flags": [ 5 | { 6 | "name": "env", 7 | "description": "Sets the build environment.", 8 | "type": "string" 9 | }, 10 | { 11 | "name": "watch", 12 | "description": "Watches source files for changes and refreshes the bundles automatically.", 13 | "type": "boolean" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /aurelia_project/tasks/lint.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp'; 2 | import eslint from 'gulp-eslint'; 3 | import project from '../aurelia.json'; 4 | 5 | export default function lint() { 6 | return gulp.src([project.transpiler.source]) 7 | .pipe(eslint()) 8 | .pipe(eslint.format()) 9 | .pipe(eslint.failAfterError()); 10 | } 11 | -------------------------------------------------------------------------------- /aurelia_project/tasks/process-css.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp'; 2 | import changedInPlace from 'gulp-changed-in-place'; 3 | import project from '../aurelia.json'; 4 | import { build } from 'aurelia-cli'; 5 | import autoprefixer from 'gulp-autoprefixer'; 6 | 7 | export default function processCSS() { 8 | return gulp.src(project.cssProcessor.source) 9 | .pipe(autoprefixer({ 10 | overrideBrowserslist: ['last 2 versions'], 11 | cascade: false 12 | })) 13 | .pipe(changedInPlace({ firstPass: true })) 14 | .pipe(build.bundle()); 15 | } 16 | 17 | // build plugin css files 18 | // you need bit more than this if you use scss 19 | export function pluginCSS() { 20 | return gulp.src(project.plugin.source.css) 21 | .pipe(gulp.dest(project.plugin.output)); 22 | } 23 | -------------------------------------------------------------------------------- /aurelia_project/tasks/process-markup.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp'; 2 | import changedInPlace from 'gulp-changed-in-place'; 3 | import project from '../aurelia.json'; 4 | import {build} from 'aurelia-cli'; 5 | 6 | export default function processMarkup() { 7 | return gulp.src(project.markupProcessor.source) 8 | .pipe(changedInPlace({firstPass: true})) 9 | .pipe(build.bundle()); 10 | } 11 | 12 | // build plugin html files 13 | export function pluginMarkup() { 14 | return gulp.src(project.plugin.source.html) 15 | .pipe(gulp.dest(project.plugin.output)); 16 | } 17 | -------------------------------------------------------------------------------- /aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "run", 3 | "description": "Builds the application and serves up the assets via a local web server, watching files for changes as you work.", 4 | "flags": [ 5 | { 6 | "name": "env", 7 | "description": "Sets the build environment.", 8 | "type": "string" 9 | }, 10 | { 11 | "name": "open", 12 | "description": "Open the default browser at the application location.", 13 | "type": "boolean" 14 | }, 15 | { 16 | "name": "auto-install", 17 | "description": "auto install missing npm package using npm or yarn (set by aurelia.json packageManager, or existence of yarn.lock file).", 18 | "type": "boolean" 19 | } 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp'; 2 | import {Server as Karma} from 'karma'; 3 | import {CLIOptions} from 'aurelia-cli'; 4 | import build from './build'; 5 | import watch from './watch'; 6 | import * as path from 'path'; 7 | 8 | let karma = done => { 9 | new Karma({ 10 | configFile: path.join(__dirname, '/../../karma.conf.js'), 11 | singleRun: !CLIOptions.hasFlag('watch') 12 | }, done).start(); 13 | }; 14 | 15 | let unit; 16 | 17 | if (CLIOptions.hasFlag('watch')) { 18 | unit = gulp.series( 19 | build, 20 | gulp.parallel( 21 | done => { watch(); done(); }, 22 | karma 23 | ) 24 | ); 25 | } else { 26 | unit = gulp.series( 27 | build, 28 | karma 29 | ); 30 | } 31 | 32 | export { unit as default }; 33 | -------------------------------------------------------------------------------- /aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test", 3 | "description": "Runs all unit tests and reports the results.", 4 | "flags": [ 5 | { 6 | "name": "env", 7 | "description": "Sets the build environment.", 8 | "type": "string" 9 | }, 10 | { 11 | "name": "watch", 12 | "description": "Watches test files for changes and re-runs the tests automatically.", 13 | "type": "boolean" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /dist/components/chip/mdc-chip.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/components/radio/mdc-radio.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/components/snackbar/mdc-snackbar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Aurelia MDC Elements 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /node_modules/@material/animation/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-animation-*; 2 | -------------------------------------------------------------------------------- /node_modules/@material/animation/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./functions"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/animation/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-animation-* hide mdc-animation-enter, mdc-animation-exit-permanent, mdc-animation-exit-temporary, mdc-animation-standard; 2 | -------------------------------------------------------------------------------- /node_modules/@material/animation/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC,CAAC,gBAAgB;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC,CAAC,2CAA2C"} -------------------------------------------------------------------------------- /node_modules/@material/animation/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/animation/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/animation/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/animation/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/animation/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/auto-init/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,cAAc,EAAE,oBAAoB;IACpC,oBAAoB,EAAE,0BAA0B;IAChD,iBAAiB,EAAE,aAAa;CACjC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/auto-init/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/auto-init/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/auto-init/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/auto-init/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/banner/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './banner-theme'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/banner/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/banner/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/banner/images/banner.png -------------------------------------------------------------------------------- /node_modules/@material/banner/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/banner/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/banner/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/banner/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/banner/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/base/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/base/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-base-*; 2 | -------------------------------------------------------------------------------- /node_modules/@material/base/foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foundation.js","sourceRoot":"","sources":["foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;IA0BE,uBAAsB,OAAwC;QAAxC,wBAAA,EAAA,UAAuB,EAAiB;QAAxC,YAAO,GAAP,OAAO,CAAiC;IAAG,CAAC;IAzBlE,sBAAW,2BAAU;aAArB;YACE,uGAAuG;YACvG,6FAA6F;YAC7F,OAAO,EAAE,CAAC;QACZ,CAAC;;;OAAA;IAED,sBAAW,wBAAO;aAAlB;YACE,qGAAqG;YACrG,6DAA6D;YAC7D,OAAO,EAAE,CAAC;QACZ,CAAC;;;OAAA;IAED,sBAAW,wBAAO;aAAlB;YACE,qGAAqG;YACrG,uEAAuE;YACvE,OAAO,EAAE,CAAC;QACZ,CAAC;;;OAAA;IAED,sBAAW,+BAAc;aAAzB;YACE,uGAAuG;YACvG,yGAAyG;YACzG,cAAc;YACd,OAAO,EAAE,CAAC;QACZ,CAAC;;;OAAA;IAID,4BAAI,GAAJ;QACE,uGAAuG;IACzG,CAAC;IAED,+BAAO,GAAP;QACE,6GAA6G;IAC/G,CAAC;IACH,oBAAC;AAAD,CAAC,AAnCD,IAmCC;;AA6BD,iHAAiH;AACjH,eAAe,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/base/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/base/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/base/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/base/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/base/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/base/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAoBH,uBAAuB"} -------------------------------------------------------------------------------- /node_modules/@material/button/images/button-theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/button-theming.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/buttons_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/buttons_types.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/contained-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/contained-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/contained-icon-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/contained-icon-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/outlined-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/outlined-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/outlined-icon-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/outlined-icon-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/text-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/text-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/text-icon-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/text-icon-button.png -------------------------------------------------------------------------------- /node_modules/@material/button/images/toggle-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/button/images/toggle-bar.png -------------------------------------------------------------------------------- /node_modules/@material/button/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/button/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/button/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/button/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/card/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/card/images/card-elevated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/card/images/card-elevated.png -------------------------------------------------------------------------------- /node_modules/@material/card/images/card-outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/card/images/card-outlined.png -------------------------------------------------------------------------------- /node_modules/@material/card/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/card/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/card/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/card/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/card/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as card; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include card.core-styles($query: $query); 7 | @include card.fill-color(red, $query: $query); 8 | @include card.outline(red, $query: $query); 9 | @include card.shape-radius(0, $query: $query); 10 | @include card.media-aspect-ratio(1, 1, $query: $query); 11 | @include card.ripple($query: $query); 12 | @include card.without-ripple($query: $query); 13 | } 14 | } 15 | 16 | // This shouldn't output any CSS. 17 | @include test(feature-targeting.any()); 18 | -------------------------------------------------------------------------------- /node_modules/@material/checkbox/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./keyframes"; 4 | @forward "./functions"; 5 | -------------------------------------------------------------------------------- /node_modules/@material/checkbox/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/checkbox/images/checkbox-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/checkbox/images/checkbox-hero.png -------------------------------------------------------------------------------- /node_modules/@material/checkbox/images/checkbox-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/checkbox/images/checkbox-states.png -------------------------------------------------------------------------------- /node_modules/@material/checkbox/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/checkbox/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/checkbox/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/checkbox/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/checkbox/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/chips/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './chip-theme'; 2 | @forward './chip-set-theme'; 3 | -------------------------------------------------------------------------------- /node_modules/@material/chips/action/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/action/component-ripple.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"component-ripple.js","sourceRoot":"","sources":["component-ripple.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;;GAGG;AACH,MAAM,UAAU,oCAAoC,CAChD,UAAmB,EAAE,8BAAsC;IAC7D,yEAAyE;IACzE,IAAM,YAAY,GAAG,MAAM,CAAC,8BAA8B,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC;IAC9E,IAAI,MAAM,CAAC,KAAK,CAAC,YAAY,CAAC,EAAE;QAC9B,OAAO,UAAU,CAAC;KACnB;IACD,iEAAiE;IACjE,OAAO;QACL,KAAK,EAAE,UAAU,CAAC,KAAK,GAAG,YAAY;QACtC,MAAM,EAAE,UAAU,CAAC,MAAM;QACzB,GAAG,EAAE,UAAU,CAAC,GAAG;QACnB,KAAK,EAAE,UAAU,CAAC,KAAK;QACvB,MAAM,EAAE,UAAU,CAAC,MAAM;QACzB,IAAI,EAAE,UAAU,CAAC,IAAI;KACf,CAAC;AACX,CAAC;AAED;;;;;GAKG;AACH,MAAM,CAAC,IAAM,iCAAiC,GAC1C,mCAAmC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/action/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/action/primary-foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"primary-foundation.js","sourceRoot":"","sources":["primary-foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAC,uBAAuB,EAAE,iBAAiB,EAAC,MAAM,aAAa,CAAC;AACvE,OAAO,EAAC,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAErD;;;GAGG;AACH;IAAoD,kDAAuB;IAA3E;;IAaA,CAAC;IAZC,qDAAY,GAAZ;QACE,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,uBAAuB,CAAC,IAAI,CAAC,KAAK,QAAQ,CAAC;IAC9E,CAAC;IAED,mDAAU,GAAV;QACE,OAAO,iBAAiB,CAAC,OAAO,CAAC;IACnC,CAAC;IAES,yEAAgC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,uBAAuB,CAAC,cAAc,CAAC;YACpE,MAAM,CAAC;IACb,CAAC;IACH,qCAAC;AAAD,CAAC,AAbD,CAAoD,uBAAuB,GAa1E;;AAED,iHAAiH;AACjH,eAAe,8BAA8B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/action/trailing-foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"trailing-foundation.js","sourceRoot":"","sources":["trailing-foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAC,iBAAiB,EAAC,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAC,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAErD;;;GAGG;AACH;IAAqD,mDAAuB;IAA5E;;IAYA,CAAC;IAXC,sDAAY,GAAZ;QACE,OAAO,KAAK,CAAC;IACf,CAAC;IAED,oDAAU,GAAV;QACE,OAAO,iBAAiB,CAAC,QAAQ,CAAC;IACpC,CAAC;IAES,0EAAgC,GAA1C;QACE,OAAO,IAAI,CAAC;IACd,CAAC;IACH,sCAAC;AAAD,CAAC,AAZD,CAAqD,uBAAuB,GAY3E;;AAED,iHAAiH;AACjH,eAAe,+BAA+B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/action/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip-set/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip-set/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;;GAGG;AACH,MAAM,CAAN,IAAY,oBAEX;AAFD,WAAY,oBAAoB;IAC9B,qEAA6C,CAAA;AAC/C,CAAC,EAFW,oBAAoB,KAApB,oBAAoB,QAE/B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,oBAEX;AAFD,WAAY,oBAAoB;IAC9B,mDAA2B,CAAA;AAC7B,CAAC,EAFW,oBAAoB,KAApB,oBAAoB,QAE/B;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,0DAAsC,CAAA;IACtC,kDAA8B,CAAA;IAC9B,sDAAkC,CAAA;AACpC,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip-set/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip-set/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/chip/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip-set/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip-set/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,aAAa,EAAE,WAAW;CAC3B,CAAC;AAEF,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,MAAM,EAAE,sBAAsB;IAC9B,MAAM,EAAE,sBAAsB;CAC/B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip-set/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,UAAU,IAAI,iBAAiB,EAAE,OAAO,IAAI,cAAc,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,OAAO,EAAC,UAAU,IAAI,cAAc,EAAE,OAAO,IAAI,WAAW,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/chip/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAN,IAAY,kBAOX;AAPD,WAAY,kBAAkB;IAC5B,yEAAW,CAAA;IACX,6DAAK,CAAA;IACL,6EAAa,CAAA;IACb,uEAAU,CAAA;IACV,2EAAY,CAAA;IACZ,qEAAS,CAAA;AACX,CAAC,EAPW,kBAAkB,KAAlB,kBAAkB,QAO7B;AAED,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mCAAmC;IACtD,gBAAgB,EAAE,kCAAkC;IACpD,SAAS,EAAE,UAAU;CACtB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,OAAO,EAAC,OAAO,IAAI,qBAAqB,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as trailingaction; 2 | @use '@material/feature-targeting/functions' as feature-functions; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include trailingaction.core-styles($query: $query); 7 | @include trailingaction.color(red, $query: $query); 8 | @include trailingaction.size(0, $query: $query); 9 | @include trailingaction.horizontal-spacing(10px, 10px, $query: $query); 10 | @include trailingaction.touch-target-width(10px, $query: $query); 11 | @include trailingaction.ripple($query: $query); 12 | @include trailingaction.without-ripple($query: $query); 13 | } 14 | } 15 | 16 | // This shouldn't output any CSS. 17 | @include test(feature-functions.any()); 18 | -------------------------------------------------------------------------------- /node_modules/@material/chips/deprecated/trailingaction/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/chips/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AAEjC;;GAEG;AACH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,EACL,UAAU,GACX,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/chips/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/chips/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/chips/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/chips/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./keyframes"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/_keyframes.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-circular-progress-* hide mdc-circular-progress-core-styles, mdc-circular-progress-color, mdc-circular-progress-indeterminate-colors, mdc-circular-progress-size-, mdc-circular-progress-indeterminate-animations-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-circular-progress-* hide mdc-circular-progress-core-styles, mdc-circular-progress-color, mdc-circular-progress-indeterminate-colors, mdc-circular-progress-size-, mdc-circular-progress-indeterminate-animations-, mdc-circular-progress-container-rotate-keyframes-, mdc-circular-progress-spinner-layer-rotate-keyframes-, mdc-circular-progress-color-1-fade-in-out-keyframes-, mdc-circular-progress-color-2-fade-in-out-keyframes-, mdc-circular-progress-color-3-fade-in-out-keyframes-, mdc-circular-progress-color-4-fade-in-out-keyframes-, mdc-circular-progress-left-spin-keyframes-, mdc-circular-progress-right-spin-keyframes-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;GAEG;AACH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,mBAAmB,EAAE,sCAAsC;IAC3D,YAAY,EAAE,+BAA+B;CAC9C,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,eAAe;IAC9B,2BAA2B,EAAE,4CAA4C;IACzE,MAAM,EAAE,GAAG;IACX,iBAAiB,EAAE,mBAAmB;CACvC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/mdc-circular-progress.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation/variables" as mdc-animation-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "@material/theme/variables" as mdc-theme-*; 5 | @forward "variables" as mdc-circular-progress-*; 6 | @forward "@material/theme/mixins" as mdc-theme-*; 7 | @forward "keyframes" as mdc-circular-progress-*; 8 | @forward "mixins" as mdc-circular-progress-*; 9 | @forward "@material/animation/functions" as mdc-animation-*; 10 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 11 | @forward "@material/theme/functions" as mdc-theme-*; 12 | @forward "mdc-circular-progress"; 13 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/circular-progress/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/data-table/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/data-table/images/data-table-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/data-table/images/data-table-hero.png -------------------------------------------------------------------------------- /node_modules/@material/data-table/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/data-table/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/data-table/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/data-table/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/data-table/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/data-table/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAyCH,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/density/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-density-*; 2 | -------------------------------------------------------------------------------- /node_modules/@material/density/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './density'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/density/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-density-* hide mdc-density-prop-value; 2 | -------------------------------------------------------------------------------- /node_modules/@material/density/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/density/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/density/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/density/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/dialog/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/dialog/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-dialog-* hide mdc-dialog-core-styles, mdc-dialog-container-fill-color, mdc-dialog-scrim-color, mdc-dialog-title-ink-color, mdc-dialog-content-ink-color, mdc-dialog-scroll-divider-color, mdc-dialog-shape-radius, mdc-dialog-min-width, mdc-dialog-max-width, mdc-dialog-max-height, mdc-dialog-with-touch-target; 2 | -------------------------------------------------------------------------------- /node_modules/@material/dialog/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/dialog/images/alert-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/dialog/images/alert-dialog.png -------------------------------------------------------------------------------- /node_modules/@material/dialog/images/confirmation-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/dialog/images/confirmation-dialog.png -------------------------------------------------------------------------------- /node_modules/@material/dialog/images/full-screen-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/dialog/images/full-screen-dialog.png -------------------------------------------------------------------------------- /node_modules/@material/dialog/images/simple-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/dialog/images/simple-dialog.png -------------------------------------------------------------------------------- /node_modules/@material/dialog/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC;AACd,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/dialog/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/dialog/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/dialog/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/dialog/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/dialog/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/dom/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/dom/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,SAAS,MAAM,cAAc,CAAC;AAC1C,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAC,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/dom/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/dom/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/dom/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/dom/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/drawer/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/drawer/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/drawer/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,OAAO,EAAE,qBAAqB;IAC9B,OAAO,EAAE,qBAAqB;IAC9B,WAAW,EAAE,yBAAyB;IACtC,KAAK,EAAE,mBAAmB;IAC1B,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,qBAAqB;IAC9B,IAAI,EAAE,YAAY;CACnB,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,oBAAoB,EAAE,yBAAyB;IAC/C,WAAW,EAAE,kBAAkB;IAC/B,UAAU,EAAE,kBAAkB;IAC9B,cAAc,EAAE,mBAAmB;IACnC,aAAa,EAAE,gCAAgC;IAC/C,4BAA4B,EACxB,gEAAgE;CACrE,CAAC;AAEF,OAAO,EAAC,UAAU,EAAE,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/drawer/images/drawer-composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/drawer/images/drawer-composite.png -------------------------------------------------------------------------------- /node_modules/@material/drawer/images/drawer-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/drawer/images/drawer-hero.png -------------------------------------------------------------------------------- /node_modules/@material/drawer/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC;AACd,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/drawer/modal/foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foundation.js","sourceRoot":"","sources":["foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAC,8BAA8B,EAAC,MAAM,2BAA2B,CAAC;AAEzE,8DAA8D;AAC9D;IAA8C,4CAA8B;IAA5E;;IAqBA,CAAC;IApBC;;OAEG;IACH,mDAAgB,GAAhB;QACE,IAAI,CAAC,KAAK,EAAE,CAAC;IACf,CAAC;IAED;;OAEG;IACgB,yCAAM,GAAzB;QACE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC;IAC3B,CAAC;IAED;;OAEG;IACgB,yCAAM,GAAzB;QACE,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,CAAC;IAC9B,CAAC;IACH,+BAAC;AAAD,CAAC,AArBD,CAA8C,8BAA8B,GAqB3E;;AAED,iHAAiH;AACjH,eAAe,wBAAwB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/drawer/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/drawer/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/drawer/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/drawer/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/drawer/util.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.js","sourceRoot":"","sources":["util.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AASH,MAAM,UAAU,uBAAuB,CACnC,SAAsB,EACtB,gBAA2C;IAE7C,OAAO,gBAAgB,CAAC,SAAS,EAAE;QACjC,iDAAiD;QACjD,gBAAgB,EAAE,IAAI;KACvB,CAAC,CAAC;AACL,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/elevation/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation" as mdc-animation-* hide mdc-animation-enter, mdc-animation-exit-permanent, mdc-animation-exit-temporary, mdc-animation-standard; 2 | @forward "./index" as mdc-elevation-* hide mdc-elevation-core-styles, mdc-elevation-overlay-common, mdc-elevation-shadow, mdc-elevation-overlay-surface-position, mdc-elevation-overlay-dimensions, mdc-elevation-overlay-fill-color, mdc-elevation-overlay-opacity, mdc-elevation-elevation, mdc-elevation-overlay-selector-; 3 | -------------------------------------------------------------------------------- /node_modules/@material/elevation/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./functions"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/elevation/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation" as mdc-animation-* hide mdc-animation-enter, mdc-animation-exit-permanent, mdc-animation-exit-temporary, mdc-animation-standard; 2 | @forward "./index" as mdc-elevation-* hide mdc-elevation-core-styles, mdc-elevation-overlay-common, mdc-elevation-shadow, mdc-elevation-overlay-surface-position, mdc-elevation-overlay-dimensions, mdc-elevation-overlay-fill-color, mdc-elevation-overlay-opacity, mdc-elevation-elevation, mdc-elevation-overlay-selector-, mdc-elevation-transition-value, mdc-elevation-overlay-transition-value; 3 | -------------------------------------------------------------------------------- /node_modules/@material/elevation/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/elevation/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/elevation/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/elevation/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/elevation/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as elevation; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include elevation.core-styles($query: $query); 7 | @include elevation.overlay-common($query: $query); 8 | @include elevation.elevation(0, $query: $query); 9 | @include elevation.shadow(none, $query: $query); 10 | @include elevation.overlay-dimensions(100%, $query: $query); 11 | @include elevation.overlay-surface-position($query: $query); 12 | @include elevation.overlay-fill-color(red, $query: $query); 13 | @include elevation.overlay-opacity(99%, $query: $query); 14 | } 15 | } 16 | 17 | // This shouldn't output any CSS. 18 | @include test(feature-targeting.any()); 19 | -------------------------------------------------------------------------------- /node_modules/@material/fab/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./fab" hide theme, theme-styles; 2 | @forward "./extended-fab-theme" hide theme, theme-styles, $custom-property-prefix; 3 | @forward "./fab-theme"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/fab/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-fab-* hide $mdc-fab-ripple-target, $mdc-fab-icon-enter-delay-, $mdc-fab-icon-enter-duration-, mdc-fab-core-styles, mdc-fab-without-ripple, mdc-fab-ripple, mdc-fab-accessible, mdc-fab-container-color, mdc-fab-icon-size, mdc-fab-ink-color, mdc-fab-extended-fluid, mdc-fab-extended-padding, mdc-fab-extended-label-padding, mdc-fab-shape-radius, mdc-fab-extended-shape-radius, mdc-fab-base-, mdc-fab-mini-, mdc-fab-extended-, mdc-fab-icon-, mdc-fab-label-, mdc-fab-icon-overrides-, mdc-fab-exited-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/fab/images/FAB_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/fab/images/FAB_types.png -------------------------------------------------------------------------------- /node_modules/@material/fab/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/fab/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/fab/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/fab/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-feature-* hide $mdc-feature-targets-context-, mdc-feature-targets; 2 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/_index.scss: -------------------------------------------------------------------------------- 1 | @forward '_feature-targeting'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-feature-*; 2 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-feature-* hide $mdc-feature-targets-context-, mdc-feature-targets, mdc-feature-create-target, mdc-feature-parse-targets, mdc-feature-all, mdc-feature-any, mdc-feature-without, mdc-feature-verify-target-, mdc-feature-is-query-satisfied-, mdc-feature-verify-feature-, mdc-feature-verify-query-, mdc-feature-list-contains-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/feature-targeting/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/floating-label/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/floating-label/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-floating-label-* hide mdc-floating-label-core-styles, mdc-floating-label-ink-color, mdc-floating-label-fill-color, mdc-floating-label-shake-keyframes, mdc-floating-label-float-position, mdc-floating-label-shake-animation, mdc-floating-label-max-width; 2 | -------------------------------------------------------------------------------- /node_modules/@material/floating-label/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/floating-label/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,iBAAiB,EAAE,iCAAiC;IACpD,cAAc,EAAE,8BAA8B;IAC9C,WAAW,EAAE,2BAA2B;IACxC,IAAI,EAAE,oBAAoB;CAC3B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/floating-label/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/floating-label/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/floating-label/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/floating-label/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/floating-label/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/form-field/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/form-field/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-form-field-* hide mdc-form-field-core-styles; 2 | -------------------------------------------------------------------------------- /node_modules/@material/form-field/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/form-field/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,IAAI,EAAE,gBAAgB;CACvB,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,cAAc,EAAE,yBAAyB;CAC1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/form-field/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/form-field/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/form-field/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/form-field/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/form-field/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/_icon-button-all-deprecated.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./icon-button-theme"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/density" as mdc-density-* hide mdc-density-prop-value; 2 | @forward "./icon-button-all-deprecated" as mdc-icon-button-* hide mdc-icon-button-core-styles, mdc-icon-button-without-ripple, mdc-icon-button-ripple, mdc-icon-button-density, mdc-icon-button-size, mdc-icon-button-icon-size, mdc-icon-button-ink-color, mdc-icon-button-disabled-ink-color, mdc-icon-button-base-, mdc-icon-button-ink-color-, mdc-icon-button-if-disabled-; 3 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/icon-button/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,cAAc,EAAE,qBAAqB;IACrC,IAAI,EAAE,iBAAiB;CACxB,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,cAAc;IAC5B,mBAAmB,EAAE,qBAAqB;IAC1C,kBAAkB,EAAE,oBAAoB;IACxC,YAAY,EAAE,4BAA4B;CAC3C,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/icon-button/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/icon-button/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/icon-button/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/icon-button/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/icon-button/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/image-list/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/image-list/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-image-list-* hide mdc-image-list-core-styles, mdc-image-list-aspect, mdc-image-list-shape-radius, mdc-image-list-standard-columns, mdc-image-list-masonry-columns; 2 | -------------------------------------------------------------------------------- /node_modules/@material/image-list/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/image-list/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/image-list/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/image-list/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/image-list/test/feature-targeting-all.test.scss: -------------------------------------------------------------------------------- 1 | @use './feature-targeting-any.test' as feature-targeting-test; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | // Verify that the Sass compiles when we ask for all features. 5 | @include feature-targeting-test.test(feature-targeting.all()); 6 | -------------------------------------------------------------------------------- /node_modules/@material/image-list/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as image-list; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include image-list.core-styles($query: $query); 7 | @include image-list.aspect(1, $query: $query); 8 | @include image-list.shape-radius(0, $query: $query); 9 | @include image-list.standard-columns(4, 4px, $query: $query); 10 | @include image-list.masonry-columns(4, 4px, $query: $query); 11 | } 12 | } 13 | 14 | // This shouldn't output any CSS. 15 | @include test(feature-targeting.any()); 16 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-layout-grid-* hide mdc-layout-grid-layout-grid; 2 | @forward "./index" as mdc-* show mdc-layout-grid; 3 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-layout-grid-* hide mdc-layout-grid-media-query-, mdc-layout-grid-cell-span-, mdc-layout-grid-layout-grid, mdc-layout-grid-inner, mdc-layout-grid-cell, mdc-layout-grid-cell-order, mdc-layout-grid-cell-align, mdc-layout-grid-fixed-column-width, mdc-layout-grid-breakpoint-min, mdc-layout-grid-breakpoint-max; 2 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/mdc-layout-grid.import.scss: -------------------------------------------------------------------------------- 1 | @forward "variables" as mdc-layout-grid-*; 2 | @forward "mixins" as mdc-* hide mdc-breakpoint-max, mdc-breakpoint-min, mdc-cell, mdc-cell-align, mdc-cell-order, mdc-cell-span-, mdc-fixed-column-width, mdc-inner, mdc-media-query-; 3 | @forward "mixins" as mdc-layout-grid-* hide mdc-layout-grid-layout-grid; 4 | @forward "mdc-layout-grid"; 5 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/layout-grid/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation" as mdc-animation-* hide mdc-animation-enter, mdc-animation-exit-permanent, mdc-animation-exit-temporary, mdc-animation-standard; 2 | @forward "./index" as mdc-line-ripple-* hide mdc-line-ripple-core-styles, mdc-line-ripple-color; 3 | -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | @forward "./functions"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,kBAAkB,EAAE,yBAAyB;IAC7C,wBAAwB,EAAE,+BAA+B;CAC1D,CAAC;AAEF,OAAO,EAAC,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/mdc-line-ripple.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/base/mixins" as mdc-base-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "@material/theme/variables" as mdc-theme-*; 5 | @forward "@material/animation/variables" as mdc-animation-*; 6 | @forward "@material/theme/mixins" as mdc-theme-*; 7 | @forward "mixins" as mdc-line-ripple-*; 8 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 9 | @forward "@material/theme/functions" as mdc-theme-*; 10 | @forward "functions" as mdc-line-ripple-*; 11 | @forward "mdc-line-ripple"; 12 | -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/line-ripple/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./keyframes"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/_keyframes.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-linear-progress-* hide $mdc-linear-progress-baseline-buffer-color, $mdc-linear-progress-height, mdc-linear-progress-core-styles, mdc-linear-progress-bar-color, mdc-linear-progress-buffer-color, mdc-linear-progress-indeterminate-, mdc-linear-progress-reversed-, mdc-linear-progress-str-replace-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-linear-progress-* hide mdc-linear-progress-core-styles, mdc-linear-progress-bar-color, mdc-linear-progress-buffer-color, mdc-linear-progress-indeterminate-, mdc-linear-progress-reversed-, mdc-linear-progress-str-replace-, mdc-linear-progress-primary-indeterminate-translate-keyframes-, mdc-linear-progress-primary-indeterminate-scale-keyframes-, mdc-linear-progress-secondary-indeterminate-translate-keyframes-, mdc-linear-progress-secondary-indeterminate-scale-keyframes-, mdc-linear-progress-buffering-keyframes-, mdc-linear-progress-primary-indeterminate-translate-reverse-keyframes-, mdc-linear-progress-secondary-indeterminate-translate-reverse-keyframes-, mdc-linear-progress-buffering-reverse-keyframes-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,YAAY,EAAE,6BAA6B;IAC3C,0BAA0B,EAAE,2CAA2C;IACvE,mBAAmB,EAAE,oCAAoC;IACzD,cAAc,EAAE,+BAA+B;IAC/C,qBAAqB,EAAE,sCAAsC;CAC9D,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,mBAAmB,EAAE,kCAAkC;IACvD,UAAU,EAAE,YAAY;IACxB,oBAAoB,EAAE,mCAAmC;CAC1D,CAAC;AAEF,mDAAmD;AACnD,MAAM,CAAC,IAAM,6BAA6B,GAAG;IAC3C,YAAY,EAAE,QAAQ;IACtB,YAAY,EAAE,UAAU;IACxB,iBAAiB,EAAE,SAAS;IAC5B,cAAc,EAAE,SAAS;IACzB,cAAc,EAAE,UAAU;CAC3B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/mdc-linear-progress.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation/variables" as mdc-animation-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "@material/theme/variables" as mdc-theme-*; 5 | @forward "variables" as mdc-linear-progress-*; 6 | @forward "@material/theme/mixins" as mdc-theme-*; 7 | @forward "keyframes" as mdc-linear-progress-*; 8 | @forward "mixins" as mdc-linear-progress-*; 9 | @forward "@material/animation/functions" as mdc-animation-*; 10 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 11 | @forward "@material/theme/functions" as mdc-theme-*; 12 | @forward "mdc-linear-progress"; 13 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/linear-progress/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/list/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/list/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/list/events.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"events.js","sourceRoot":"","sources":["events.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,uBAAuB,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,CAAC,CAAC;AAE1E;;;;;GAKG;AACH,MAAM,CAAC,IAAM,mBAAmB,GAAG,UAAC,GAAkB;IACpD,IAAM,MAAM,GAAG,GAAG,CAAC,MAAiB,CAAC;IACrC,IAAI,CAAC,MAAM,EAAE;QACX,OAAO;KACR;IACD,IAAM,OAAO,GAAG,CAAA,KAAG,MAAM,CAAC,OAAS,CAAA,CAAC,WAAW,EAAE,CAAC;IAClD,IAAI,uBAAuB,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE;QACnD,GAAG,CAAC,cAAc,EAAE,CAAC;KACtB;AACH,CAAC,CAAA"} -------------------------------------------------------------------------------- /node_modules/@material/list/images/lists-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/list/images/lists-types.png -------------------------------------------------------------------------------- /node_modules/@material/list/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/list/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/list/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/list/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/list/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/list/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-menu-surface-* hide mdc-menu-surface-core-styles, mdc-menu-surface-ink-color, mdc-menu-surface-fill-color, mdc-menu-surface-shape-radius, mdc-menu-surface-base-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/menu-surface/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/menu/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/menu/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/menu/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,uBAAuB,EAAE,yBAAyB;IAClD,oBAAoB,EAAE,2BAA2B;IACjD,IAAI,EAAE,UAAU;CACjB,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,iBAAiB,EAAE,cAAc;IACjC,kBAAkB,EAAE,eAAe;IACnC,iBAAiB,EAAE,wBAAwB;IAC3C,aAAa,EAAE,gCAAgC;IAC/C,cAAc,EAAE,kBAAkB;IAClC,kBAAkB,EAAE,mCAAmC;CACxD,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,gBAAgB,EAAE,CAAC,CAAC;CACrB,CAAC;AAEF,IAAK,iBAKJ;AALD,WAAK,iBAAiB;IACpB,yDAAQ,CAAA;IACR,mEAAa,CAAA;IACb,qEAAc,CAAA;IACd,mEAAa,CAAA;AACf,CAAC,EALI,iBAAiB,KAAjB,iBAAiB,QAKrB;AAED,OAAO,EAAC,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,iBAAiB,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/menu/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAC,MAAM,EAAC,MAAM,kCAAkC,CAAC,CAAC,6BAA6B;AACtF,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/menu/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/menu/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/menu/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/menu/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/menu/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-notched-outline-* hide mdc-notched-outline-core-styles, mdc-notched-outline-color, mdc-notched-outline-stroke-width, mdc-notched-outline-notch-offset, mdc-notched-outline-shape-radius, mdc-notched-outline-floating-label-float-position, mdc-notched-outline-floating-label-float-position-absolute, mdc-notched-outline-base-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,sBAAsB,EAAE,6BAA6B;CACtD,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,kEAAkE;IAClE,qBAAqB,EAAE,CAAC;CACzB,CAAC;AAEF,IAAM,UAAU,GAAG;IACjB,QAAQ,EAAE,+BAA+B;IACzC,eAAe,EAAE,8BAA8B;IAC/C,gBAAgB,EAAE,+BAA+B;CAClD,CAAC;AAEF,OAAO,EAAC,UAAU,EAAE,OAAO,EAAE,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/notched-outline/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/component.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"component.js","sourceRoot":"","sources":["component.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foundation.js","sourceRoot":"","sources":["foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/progress-indicator/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/radio/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './radio-theme'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/radio/_radio-all-deprecated.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./functions"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/radio/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/radio/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,uBAAuB,EAAE,4BAA4B;CACtD,CAAC;AAEF,IAAM,UAAU,GAAG;IACjB,QAAQ,EAAE,qBAAqB;IAC/B,IAAI,EAAE,WAAW;CAClB,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/radio/images/radio-button-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/radio/images/radio-button-hero.png -------------------------------------------------------------------------------- /node_modules/@material/radio/images/radio-button-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/radio/images/radio-button-states.png -------------------------------------------------------------------------------- /node_modules/@material/radio/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/radio/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/radio/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/radio/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/radio/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/ripple/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./keyframes"; 4 | @forward "./functions"; 5 | -------------------------------------------------------------------------------- /node_modules/@material/ripple/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/ripple/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,oFAAoF;IACpF,wFAAwF;IACxF,oDAAoD;IACpD,UAAU,EAAE,yCAAyC;IACrD,aAAa,EAAE,4CAA4C;IAC3D,eAAe,EAAE,8CAA8C;IAC/D,IAAI,EAAE,qBAAqB;IAC3B,SAAS,EAAE,gCAAgC;CAC5C,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,YAAY,EAAE,uBAAuB;IACrC,WAAW,EAAE,sBAAsB;IACnC,oBAAoB,EAAE,+BAA+B;IACrD,sBAAsB,EAAE,iCAAiC;IACzD,QAAQ,EAAE,mBAAmB;IAC7B,OAAO,EAAE,kBAAkB;CAC5B,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAG;IACrB,uBAAuB,EAAE,GAAG;IAC5B,kBAAkB,EAAE,GAAG;IACvB,oBAAoB,EAAE,GAAG;IACzB,OAAO,EAAE,EAAE;IACX,YAAY,EAAE,GAAG,EAAE,kEAAkE;CACtF,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/ripple/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC;AACd,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/ripple/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/ripple/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/ripple/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/ripple/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/ripple/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/rtl/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './rtl'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-rtl-* hide mdc-rtl-rtl; 2 | @forward "./index" as mdc-* show mdc-rtl; 3 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-rtl-* hide mdc-rtl-rtl, mdc-rtl-reflexive-box, mdc-rtl-reflexive-property, mdc-rtl-reflexive-position, mdc-rtl-reflexive, mdc-rtl-property-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/rtl/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/rtl/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/test/disable-include-rtl.test.scss: -------------------------------------------------------------------------------- 1 | @use '../index' with ( 2 | $include: false, 3 | ); 4 | @use '@material/button/mdc-button'; 5 | @use '@material/textfield/mdc-text-field'; 6 | @use '@material/typography/mdc-typography'; 7 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/test/rtl.test.scss: -------------------------------------------------------------------------------- 1 | @use '../rtl'; 2 | 3 | .test-pseudo-element { 4 | &::before { 5 | @include rtl.rtl { 6 | margin-right: 0; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/@material/rtl/test/theme.test.scss: -------------------------------------------------------------------------------- 1 | @use '@material/theme/custom-properties'; 2 | @use '../mixins' as rtl; 3 | 4 | .test { 5 | @include rtl.reflexive-box( 6 | margin, 7 | right, 8 | custom-properties.create(--margin-prop, 8px) 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segment/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segment/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;GAEG;AACH,MAAM,CAAC,IAAM,QAAQ,GAAG;IACtB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,eAAe,EAAE,iBAAiB;CACnC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,MAAM,GAAG;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;CACrB,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,QAAQ,EAAE,yCAAyC;CACpD,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segment/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segmented-button/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segmented-button/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;GAEG;AACH,MAAM,CAAC,IAAM,SAAS,GAAG;IACvB,OAAO,EAAE,gCAAgC;CAC1C,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,MAAM,GAAG;IACpB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;CACjB,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,IAAM,UAAU,GAAG;IACxB,aAAa,EAAE,qCAAqC;CACrD,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/segmented-button/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/segmented-button/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/select/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/select/helper-text/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/select/helper-text/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;CACb,CAAC;AAEF,IAAM,UAAU,GAAG;IACjB,0BAA0B,EAAE,wCAAwC;IACpE,qCAAqC,EACjC,mDAAmD;CACxD,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/select/helper-text/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,UAAU,IAAI,oBAAoB,EAAE,OAAO,IAAI,iBAAiB,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/select/icon/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-select-* hide mdc-select-icon-color, mdc-select-icon-, mdc-select-icon-color-, mdc-select-icon-horizontal-position-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/select/icon/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/select/icon/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,UAAU,EAAE,gBAAgB;IAC5B,SAAS,EAAE,QAAQ;CACpB,CAAC;AAEF,OAAO,EAAC,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/select/icon/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/select/icon/mdc-select-icon.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/rtl/variables" as mdc-rtl-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "@material/theme/variables" as mdc-theme-*; 5 | @forward "variables" as mdc-select-*; 6 | @forward "@material/rtl/mixins" as mdc-* hide mdc-property-, mdc-reflexive, mdc-reflexive-box, mdc-reflexive-position, mdc-reflexive-property; 7 | @forward "@material/rtl/mixins" as mdc-rtl-* hide mdc-rtl-rtl; 8 | @forward "@material/theme/mixins" as mdc-theme-*; 9 | @forward "mixins" as mdc-select-*; 10 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 11 | @forward "@material/theme/functions" as mdc-theme-*; 12 | @forward "mdc-select-icon"; 13 | -------------------------------------------------------------------------------- /node_modules/@material/select/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/select/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/select/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/select/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/select/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/select/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/shape/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-shape-* hide mdc-shape-radius; 2 | -------------------------------------------------------------------------------- /node_modules/@material/shape/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./functions"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/shape/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/feature-targeting" as mdc-feature-*; 2 | @forward "@material/rtl" as mdc-rtl-* hide mdc-rtl-rtl; 3 | @forward "@material/rtl" as mdc-* hide mdc-property-, mdc-reflexive, mdc-reflexive-box, mdc-reflexive-position, mdc-reflexive-property; 4 | @forward "./index" as mdc-shape-*; 5 | -------------------------------------------------------------------------------- /node_modules/@material/shape/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-shape-* hide mdc-shape-radius, mdc-shape-flip-radius, mdc-shape-resolve-percentage-radius, mdc-shape-prop-value, mdc-shape-mask-radius, mdc-shape-unpack-radius-, mdc-shape-resolve-percentage-for-corner-, mdc-shape-validate-radius-value-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/shape/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/shape/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/shape/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/shape/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/shape/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as shape; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include shape.radius(1px 2px, true, $query: $query); 7 | } 8 | } 9 | 10 | // This shouldn't output any CSS. 11 | @include test(feature-targeting.any()); 12 | -------------------------------------------------------------------------------- /node_modules/@material/slider/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './slider-theme'; 2 | -------------------------------------------------------------------------------- /node_modules/@material/slider/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/slider/images/continuous-range-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/slider/images/continuous-range-slider.png -------------------------------------------------------------------------------- /node_modules/@material/slider/images/continuous-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/slider/images/continuous-slider.png -------------------------------------------------------------------------------- /node_modules/@material/slider/images/discrete-slider-tick-marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/slider/images/discrete-slider-tick-marks.png -------------------------------------------------------------------------------- /node_modules/@material/slider/images/discrete-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/slider/images/discrete-slider.png -------------------------------------------------------------------------------- /node_modules/@material/slider/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/slider/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/slider/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/slider/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/slider/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/slider/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,4CAA4C;AAC5C,MAAM,CAAN,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,2CAAM,CAAA;IACN,+CAAQ,CAAA;AACV,CAAC,EAHW,QAAQ,KAAR,QAAQ,QAGnB;AAED;;;GAGG;AACH,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,2EAA2E;IAC3E,mCAAS,CAAA;IACT,yEAAyE;IACzE,yCAAyC;IACzC,+BAAG,CAAA;AACL,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB"} -------------------------------------------------------------------------------- /node_modules/@material/snackbar/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/snackbar/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/snackbar/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC;AACd,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/snackbar/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/snackbar/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/snackbar/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/snackbar/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/snackbar/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/switch/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/switch/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH;;GAEG;AACH,MAAM,CAAN,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,mDAAqC,CAAA;IACrC,+CAAiC,CAAA;IACjC,mDAAqC,CAAA;AACvC,CAAC,EAJW,UAAU,KAAV,UAAU,QAIrB;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,SAEX;AAFD,WAAY,SAAS;IACnB,2CAA8B,CAAA;AAChC,CAAC,EAFW,SAAS,KAAT,SAAS,QAEpB"} -------------------------------------------------------------------------------- /node_modules/@material/switch/deprecated/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./functions"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/switch/deprecated/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/switch/deprecated/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,sCAAsC;AACtC,IAAM,UAAU,GAAG;IACjB,sEAAsE;IACtE,OAAO,EAAE,qBAAqB;IAC9B,gDAAgD;IAChD,QAAQ,EAAE,sBAAsB;CACjC,CAAC;AAEF,2CAA2C;AAC3C,IAAM,OAAO,GAAG;IACd,8DAA8D;IAC9D,iBAAiB,EAAE,cAAc;IACjC,6EAA6E;IAC7E,uBAAuB,EAAE,6BAA6B;IACtD,+EAA+E;IAC/E,uBAAuB,EAAE,6BAA6B;CACvD,CAAC;AAEF,OAAO,EAAC,UAAU,EAAE,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/switch/deprecated/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/switch/images/switch-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/switch/images/switch-hero.png -------------------------------------------------------------------------------- /node_modules/@material/switch/images/switch-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/switch/images/switch-states.png -------------------------------------------------------------------------------- /node_modules/@material/switch/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,8CAA8C;AAC9C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAC,UAAU,EAAC,CAAC;AAEpB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/switch/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/switch/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/switch/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/switch/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,cAAc,EAAE,WAAW;IAC3B,eAAe,EAAE,YAAY;IAC7B,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,OAAO;IAClB,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,OAAO;IAClB,mBAAmB,EAAE,qBAAqB;IAC1C,qBAAqB,EAAE,mBAAmB;IAC1C,YAAY,EAAE,UAAU;CACzB,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,kBAAkB,EAAE,EAAE;IACtB,mBAAmB,EAAE,EAAE;IACvB,WAAW,EAAE,EAAE;IACf,aAAa,EAAE,EAAE;IACjB,mBAAmB,EAAE,EAAE;IACvB,YAAY,EAAE,EAAE;IAChB,aAAa,EAAE,EAAE;CAClB,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/dist/mdc.tab-bar.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright Google LLC All Rights Reserved. 4 | * 5 | * Use of this source code is governed by an MIT-style license that can be 6 | * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE 7 | */ 8 | .mdc-tab-bar{width:100%}.mdc-tab{height:48px}.mdc-tab--stacked{height:72px} 9 | 10 | /*# sourceMappingURL=mdc.tab-bar.min.css.map*/ -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-bar/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,MAAM,EAAE,2BAA2B;IACnC,IAAI,EAAE,yBAAyB;IAC/B,aAAa,EAAE,kCAAkC;CAClD,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,gBAAgB,EAAE,6BAA6B;CAChD,CAAC;AAEF,OAAO,EACL,UAAU,EACV,OAAO,GACR,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/fading-foundation.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"fading-foundation.js","sourceRoot":"","sources":["fading-foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAC,yBAAyB,EAAC,MAAM,cAAc,CAAC;AAEvD,8DAA8D;AAC9D;IAAqD,mDAAyB;IAA9E;;IAQA,CAAC;IAPC,kDAAQ,GAAR;QACE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;IACrE,CAAC;IAED,oDAAU,GAAV;QACE,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;IACxE,CAAC;IACH,sCAAC;AAAD,CAAC,AARD,CAAqD,yBAAyB,GAQ7E;;AAED,iHAAiH;AACjH,eAAe,+BAA+B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/mdc-tab-indicator.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/animation/variables" as mdc-animation-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "@material/theme/variables" as mdc-theme-*; 5 | @forward "@material/theme/mixins" as mdc-theme-*; 6 | @forward "mixins" as mdc-tab-indicator-*; 7 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 8 | @forward "@material/theme/functions" as mdc-theme-*; 9 | @forward "mdc-tab-indicator"; 10 | -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-indicator/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-tab-scroller-* hide mdc-tab-scroller-transition, mdc-tab-scroller-core-styles, mdc-tab-scroller-scroll-content-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,SAAS,EAAE,6BAA6B;IACxC,kBAAkB,EAAE,uCAAuC;IAC3D,WAAW,EAAE,wBAAwB;CACtC,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,aAAa,EAAE,gCAAgC;IAC/C,gBAAgB,EAAE,mCAAmC;CACtD,CAAC;AAEF,OAAO,EACL,UAAU,EACV,OAAO,GACR,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAE/B,OAAO,EAAC,IAAI,EAAC,CAAC;AACd,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/rtl-scroller.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"rtl-scroller.js","sourceRoot":"","sources":["rtl-scroller.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAKH;IACE,2BAA+B,OAA8B;QAA9B,YAAO,GAAP,OAAO,CAAuB;IAAG,CAAC;IAanE,wBAAC;AAAD,CAAC,AAdD,IAcC;;AAED,iHAAiH;AACjH,eAAe,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab-scroller/util.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.js","sourceRoot":"","sources":["util.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAC,UAAU,EAAC,MAAM,aAAa,CAAC;AAEvC;;GAEG;AACH,IAAI,0BAA8C,CAAC;AAEnD;;;GAGG;AACH,MAAM,UAAU,gCAAgC,CAAC,WAAqB,EAAE,iBAAwB;IAAxB,kCAAA,EAAA,wBAAwB;IAC9F,IAAI,iBAAiB,IAAI,OAAO,0BAA0B,KAAK,WAAW,EAAE;QAC1E,OAAO,0BAA0B,CAAC;KACnC;IAED,IAAM,EAAE,GAAG,WAAW,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5C,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;IACzC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;IAEjC,IAAM,yBAAyB,GAAG,EAAE,CAAC,YAAY,GAAG,EAAE,CAAC,YAAY,CAAC;IACpE,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;IAEjC,IAAI,iBAAiB,EAAE;QACrB,0BAA0B,GAAG,yBAAyB,CAAC;KACxD;IACD,OAAO,yBAAyB,CAAC;AACnC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/tab/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tab/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,MAAM,EAAE,iBAAiB;CAC1B,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,mBAAmB;IACrC,gBAAgB,EAAE,mBAAmB;IACrC,eAAe,EAAE,kBAAkB;IACnC,QAAQ,EAAE,UAAU;IACpB,sBAAsB,EAAE,oBAAoB;CAC7C,CAAC;AAEF,OAAO,EACL,UAAU,EACV,OAAO,GACR,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tab/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/tab/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/tab/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tab/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/character-counter/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/character-counter/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/character-counter/component.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"component.js","sourceRoot":"","sources":["component.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AAEtD,OAAO,EAAC,sCAAsC,EAAC,MAAM,cAAc,CAAC;AAKpE;IAAkD,gDAAoD;IAAtG;;IAoBA,CAAC;IAnBiB,qCAAQ,GAAxB,UAAyB,IAAa;QACpC,OAAO,IAAI,4BAA4B,CAAC,IAAI,CAAC,CAAC;IAChD,CAAC;IAGD,sBAAI,gEAAsB;QAD1B,gDAAgD;aAChD;YACE,OAAO,IAAI,CAAC,UAAU,CAAC;QACzB,CAAC;;;OAAA;IAEQ,2DAAoB,GAA7B;QAAA,iBASC;QARC,sGAAsG;QACtG,yGAAyG;QACzG,IAAM,OAAO,GAAwC;YACnD,UAAU,EAAE,UAAC,OAAO;gBAClB,KAAI,CAAC,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC;YAClC,CAAC;SACF,CAAC;QACF,OAAO,IAAI,sCAAsC,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;IACH,mCAAC;AAAD,CAAC,AApBD,CAAkD,YAAY,GAoB7D"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/character-counter/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,IAAI,EAAE,kCAAkC;CACzC,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,aAAa,EAAE,MAAI,UAAU,CAAC,IAAM;CACrC,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/character-counter/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,UAAU,IAAI,wBAAwB,EAAE,OAAO,IAAI,qBAAqB,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/helper-text/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./mixins"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/helper-text/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/helper-text/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,sBAAsB,EAAE,wCAAwC;IAChE,0BAA0B,EAAE,4CAA4C;IACxE,IAAI,EAAE,4BAA4B;CACnC,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,MAAI,UAAU,CAAC,IAAM;CACrC,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/helper-text/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,UAAU,IAAI,oBAAoB,EAAE,OAAO,IAAI,iBAAiB,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/icon/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/icon/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-text-field-* hide mdc-text-field-icon-core-styles, mdc-text-field-leading-icon-color, mdc-text-field-trailing-icon-color, mdc-text-field-disabled-icon-color, mdc-text-field-leading-icon-horizontal-position-, mdc-text-field-trailing-icon-horizontal-position-, mdc-text-field-icon-horizontal-position-two-icons-, mdc-text-field-icon-, mdc-text-field-leading-icon-color-, mdc-text-field-trailing-icon-color-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/icon/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/icon/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,OAAO,GAAG;IACd,UAAU,EAAE,mBAAmB;IAC/B,SAAS,EAAE,QAAQ;CACpB,CAAC;AAEF,IAAM,UAAU,GAAG;IACjB,IAAI,EAAE,sBAAsB;CAC7B,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/icon/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,UAAU,IAAI,cAAc,EAAE,OAAO,IAAI,WAAW,EAAC,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/images/text-field-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/textfield/images/text-field-generic.png -------------------------------------------------------------------------------- /node_modules/@material/textfield/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/textfield/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/textfield/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/textfield/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/textfield/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/theme/_all-theme-deprecated.scss: -------------------------------------------------------------------------------- 1 | @forward './color-palette'; 2 | @forward './functions'; 3 | @forward './mixins'; 4 | @forward './variables'; 5 | -------------------------------------------------------------------------------- /node_modules/@material/theme/_index.scss: -------------------------------------------------------------------------------- 1 | @forward './theme-color' show 2 | $background, 3 | $error, 4 | $primary, 5 | $on-error, 6 | $on-primary, 7 | $on-secondary, 8 | $on-surface, 9 | $secondary, 10 | $surface, 11 | accessible-ink-color, 12 | contrast, 13 | contrast-tone, 14 | luminance, 15 | text-emphasis, 16 | tone; 17 | @forward './theme' show core-styles, property; 18 | @forward './color-palette'; 19 | -------------------------------------------------------------------------------- /node_modules/@material/theme/mdc-theme.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 2 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 3 | @forward "constants" as mdc-theme-*; 4 | @forward "variables" as mdc-theme-*; 5 | @forward "mixins" as mdc-theme-*; 6 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 7 | @forward "functions" as mdc-theme-*; 8 | @forward "mdc-theme"; 9 | -------------------------------------------------------------------------------- /node_modules/@material/theme/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/theme/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/theme/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/theme/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/theme/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../theme'; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include theme.core-styles($query: $query); 7 | } 8 | } 9 | 10 | // This shouldn't output any CSS. 11 | @include test(feature-targeting.any()); 12 | -------------------------------------------------------------------------------- /node_modules/@material/theme/test/override.test.scss: -------------------------------------------------------------------------------- 1 | @use '../index' as theme with ( 2 | $primary: teal, 3 | $secondary: crimson 4 | ); 5 | 6 | @include theme.core-styles(); 7 | -------------------------------------------------------------------------------- /node_modules/@material/theme/test/theme.test.scss: -------------------------------------------------------------------------------- 1 | @use '../theme'; 2 | 3 | .test { 4 | @include theme.property(color, primary); 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/@material/tokens/_resolvers.scss: -------------------------------------------------------------------------------- 1 | @use 'sass:meta'; 2 | @use '@material/elevation/elevation-theme'; 3 | 4 | @function _material-elevation($args...) { 5 | @return elevation-theme.resolver($args...); 6 | } 7 | 8 | $material: ( 9 | elevation: meta.get-function(_material-elevation), 10 | ); 11 | -------------------------------------------------------------------------------- /node_modules/@material/tooltip/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./tooltip-theme"; 2 | -------------------------------------------------------------------------------- /node_modules/@material/tooltip/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/tooltip/images/plain_tooltip_alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/tooltip/images/plain_tooltip_alignment.png -------------------------------------------------------------------------------- /node_modules/@material/tooltip/images/rich_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/tooltip/images/rich_tooltip.png -------------------------------------------------------------------------------- /node_modules/@material/tooltip/images/rich_tooltip_alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/tooltip/images/rich_tooltip_alignment.png -------------------------------------------------------------------------------- /node_modules/@material/tooltip/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/tooltip/images/tooltip.png -------------------------------------------------------------------------------- /node_modules/@material/tooltip/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/tooltip/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/tooltip/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/tooltip/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/tooltip/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-top-app-bar-* hide mdc-top-app-bar-ink-color, mdc-top-app-bar-fill-color, mdc-top-app-bar-fill-color-accessible, mdc-top-app-bar-icon-ink-color, mdc-top-app-bar-short-shape-radius, mdc-top-app-bar-mobile-breakpoint-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/adapter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"adapter.js","sourceRoot":"","sources":["adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG"} -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,IAAM,UAAU,GAAG;IACjB,WAAW,EAAE,wBAAwB;IACrC,oBAAoB,EAAE,iCAAiC;IACvD,WAAW,EAAE,wBAAwB;IACrC,qBAAqB,EAAE,kCAAkC;IACzD,2BAA2B,EAAE,wCAAwC;CACtE,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,gCAAgC,EAAE,GAAG;IACrC,sBAAsB,EAAE,GAAG;CAC5B,CAAC;AAEF,IAAM,OAAO,GAAG;IACd,oBAAoB,EAAE,+BAA+B;IACrD,gBAAgB,EAAE,kBAAkB;IACpC,wBAAwB,EAAE,mCAAmC;IAC7D,aAAa,EAAE,kBAAkB;IACjC,cAAc,EAAE,yBAAyB;CAC1C,CAAC;AAEF,OAAO,EAAC,UAAU,EAAE,OAAO,EAAE,OAAO,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/images/contextual-app-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/top-app-bar/images/contextual-app-bar.png -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/images/regular-app-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringflowNL/aurelia-mdc-elements/1cec44fe9e719bf429cdf144c3049492bf660d32/node_modules/@material/top-app-bar/images/regular-app-bar.png -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/top-app-bar/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/base" as mdc-base-*; 2 | @forward "@material/feature-targeting" as mdc-feature-*; 3 | @forward "./index" as mdc-touch-target-* hide mdc-touch-target-touch-target; 4 | @forward "./index" as mdc-* show mdc-touch-target; 5 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-touch-target-* hide mdc-touch-target-wrapper, mdc-touch-target-touch-target, mdc-touch-target-margin; 2 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/mdc-touch-target.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/base/mixins" as mdc-base-*; 2 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 3 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 4 | @forward "variables" as mdc-touch-target-*; 5 | @forward "mixins" as mdc-* hide mdc-margin, mdc-wrapper; 6 | @forward "mixins" as mdc-touch-target-* hide mdc-touch-target-touch-target; 7 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 8 | @forward "mdc-touch-target"; 9 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/touch-target/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/touch-target/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/touch-target/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as touch-target; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include touch-target.wrapper($query: $query); 7 | @include touch-target.touch-target($query: $query); 8 | @include touch-target.margin(0, $query: $query); 9 | } 10 | } 11 | 12 | // This shouldn't output any CSS. 13 | @include test(feature-targeting.any()); 14 | -------------------------------------------------------------------------------- /node_modules/@material/typography/_functions.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-typography-* hide $mdc-typography-font-family, $mdc-typography-base, $mdc-typography-font-weight-values, $mdc-typography-styles, mdc-typography-core-styles, mdc-typography-base, mdc-typography-typography, mdc-typography-overflow-ellipsis, mdc-typography-baseline-top, mdc-typography-baseline-bottom, mdc-typography-baseline-strut-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/typography/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "./variables"; 2 | @forward "./mixins"; 3 | @forward "./functions"; 4 | -------------------------------------------------------------------------------- /node_modules/@material/typography/_mixins.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/feature-targeting" as mdc-feature-*; 2 | @forward "./index" as mdc-typography-* hide mdc-typography-typography; 3 | @forward "./index" as mdc-* show mdc-typography; 4 | -------------------------------------------------------------------------------- /node_modules/@material/typography/_variables.import.scss: -------------------------------------------------------------------------------- 1 | @forward "./index" as mdc-typography-* hide mdc-typography-core-styles, mdc-typography-base, mdc-typography-typography, mdc-typography-overflow-ellipsis, mdc-typography-baseline-top, mdc-typography-baseline-bottom, mdc-typography-baseline-strut-; 2 | -------------------------------------------------------------------------------- /node_modules/@material/typography/mdc-typography.import.scss: -------------------------------------------------------------------------------- 1 | @forward "@material/feature-targeting/variables" as mdc-feature-*; 2 | @forward "@material/feature-targeting/mixins" as mdc-feature-*; 3 | @forward "variables" as mdc-typography-*; 4 | @forward "mixins" as mdc-* hide mdc-base, mdc-baseline-bottom, mdc-baseline-strut-, mdc-baseline-top, mdc-core-styles, mdc-overflow-ellipsis; 5 | @forward "mixins" as mdc-typography-* hide mdc-typography-typography; 6 | @forward "@material/feature-targeting/functions" as mdc-feature-*; 7 | @forward "functions" as mdc-typography-*; 8 | @forward "mdc-typography"; 9 | -------------------------------------------------------------------------------- /node_modules/@material/typography/node_modules/tslib/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) Microsoft Corporation. 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 7 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 8 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 9 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 10 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 11 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 12 | PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /node_modules/@material/typography/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@material/typography/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/typography/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/@material/typography/test/feature-targeting-any.test.scss: -------------------------------------------------------------------------------- 1 | @use '../mixins' as typography; 2 | @use '@material/feature-targeting/feature-targeting'; 3 | 4 | @mixin test($query) { 5 | .test { 6 | @include typography.core-styles($query: $query); 7 | @include typography.base($query: $query); 8 | @include typography.typography(button, $query: $query); 9 | @include typography.overflow-ellipsis($query: $query); 10 | @include typography.baseline($top: 0, $bottom: 0, $query: $query); 11 | @include typography.text-baseline($top: 0, $bottom: 0, $query: $query); 12 | } 13 | } 14 | 15 | // This shouldn't output any CSS. 16 | @include test(feature-targeting.any()); 17 | -------------------------------------------------------------------------------- /node_modules/@material/typography/test/global-variables.test.scss: -------------------------------------------------------------------------------- 1 | @use 'sass:string'; 2 | 3 | $mdc-typography-font-family: string.unquote('Arial'); 4 | $mdc-typography-styles-headline1: ( 5 | font-size: 1rem, 6 | ); 7 | 8 | @import '../mdc-typography'; 9 | -------------------------------------------------------------------------------- /node_modules/material-components-web/index.scss: -------------------------------------------------------------------------------- 1 | @use './material-components-web'; 2 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import environment from './environment'; 2 | 3 | export function configure(aurelia) { 4 | aurelia.use 5 | .standardConfiguration() 6 | .plugin('resources'); 7 | 8 | aurelia.use.developmentLogging(environment.debug ? 'info' : 'warn'); 9 | 10 | if (environment.testing) { 11 | aurelia.use.plugin('aurelia-testing'); 12 | } 13 | 14 | aurelia.start().then(() => aurelia.setRoot()); 15 | } 16 | -------------------------------------------------------------------------------- /src/resources/components/checkbox/README.md: -------------------------------------------------------------------------------- 1 | # Checkbox 2 | 3 | ## Usage 4 | ```html 5 | 9 | 10 | ``` 11 | ## Parameters 12 | | Option | Description | Required | Default | 13 | |--|--|:--:|:--:| 14 | | label | The text behind the checkbox. | | | 15 | | id | The ID of the checkbox (is also used for the labels "for") | | | 16 | | checked | The value which has to be true/false | X | | 17 | | secondarylabel | Creates an two-list instead of a single label | | | 18 | | model | Needs to return multiple values (models) | | | 19 | | required | Option to require the checkbox | | false | 20 | | disabled| Option to disable the checkbox | | false | 21 | -------------------------------------------------------------------------------- /src/resources/components/chip/README.md: -------------------------------------------------------------------------------- 1 | # Chip 2 | 3 | ## Usage 4 | ```html 5 | 8 | 9 | ``` 10 | ## Parameters 11 | | Option | Description | Required | Default | 12 | |--|--|:--:|:--:| 13 | | label | The text behind the chip. | X | | 14 | | leading | Material icon name for leading icon | | | 15 | | trailing | Material icon name for trailing icon | | | 16 | -------------------------------------------------------------------------------- /src/resources/components/chip/mdc-chip.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/resources/components/chip/mdc-chip.js: -------------------------------------------------------------------------------- 1 | import { inject, bindable, bindingMode } from "aurelia-framework"; 2 | import { MDCChip } from "@material/chips"; 3 | 4 | @inject(Element) 5 | export class MdcChip { 6 | @bindable({ defaultBindingMode: bindingMode.twoWay }) label; 7 | @bindable leading; 8 | @bindable trailing; 9 | 10 | constructor(element) { 11 | this.element = element; 12 | } 13 | 14 | bind() { 15 | this.mdcChip = new MDCChip(this.element); 16 | } 17 | } -------------------------------------------------------------------------------- /src/resources/components/menu/README.md: -------------------------------------------------------------------------------- 1 | # Menu 2 | 3 | ## Usage 4 | ```html 5 | 6 | 7 | 8 | ``` 9 | 10 | ## Parameters 11 | Parameters that can be given to the message are: 12 | 13 | | Option | Description | Required | Default | 14 | |--|--|:--:|:--:| 15 | | label | The label of the menu. | | | 16 | | leading | Leading icon prefix (material-icons) | | | 17 | | trailing | Trailing icon prefix (material-icons) | | | -------------------------------------------------------------------------------- /src/resources/components/menu/mdc-menu.js: -------------------------------------------------------------------------------- 1 | import { bindable, customElement, inject } from 'aurelia-framework'; 2 | import { MDCMenu } from '@material/menu'; 3 | 4 | @customElement('mdc-menu') 5 | @inject(Element) 6 | export class MdcMenu { 7 | @bindable label; 8 | @bindable leading; 9 | @bindable trailing; 10 | @bindable menuElement; 11 | 12 | constructor(element) { 13 | this.element = element; 14 | } 15 | 16 | toggleMenu() { 17 | this.myMdcMenu.open = !this.myMdcMenu.open; 18 | } 19 | 20 | bind() { 21 | this.myMdcMenu = new MDCMenu(this.menuElement); 22 | } 23 | 24 | detached() { 25 | this.myMdcMenu.destroy(); 26 | } 27 | } -------------------------------------------------------------------------------- /src/resources/components/progress/README.md: -------------------------------------------------------------------------------- 1 | # Progress 2 | 3 | ## Usage 4 | ```html 5 | 6 | ``` 7 | ## Parameters 8 | | Option | Description | Required | Default | 9 | |--|--|:--:|:--:| 10 | | value | Used for progression instead of loading - current value | | 0 | 11 | | min | Used for progression instead of loading - minimal value | | 0 | 12 | | max | Used for progression instead of loading - max value | | 0 | 13 | | buffer | Overrides the progressbar | | false | -------------------------------------------------------------------------------- /src/resources/components/progress/mdc-progress.js: -------------------------------------------------------------------------------- 1 | import { inject, bindable, customElement } from "aurelia-framework"; 2 | import { MDCLinearProgress } from '@material/linear-progress'; 3 | 4 | @customElement("mdc-progress") 5 | @inject(Element) 6 | export class MdcProgress { 7 | @bindable value = 0; 8 | @bindable min = 0; 9 | @bindable max = 0; 10 | @bindable buffer = false; 11 | 12 | constructor(element) { 13 | this.element = element; 14 | } 15 | 16 | attached() { 17 | this.myMdcProgress = new MDCLinearProgress(this.element.firstElementChild); 18 | } 19 | } -------------------------------------------------------------------------------- /src/resources/components/radio/README.md: -------------------------------------------------------------------------------- 1 | # Radio 2 | 3 | ## Usage 4 | ```html 5 | 9 | 10 | ``` 11 | ## Parameters 12 | | Option | Description | Required | Default | 13 | |--|--|:--:|:--:| 14 | | label | The text behind the radio. | | | 15 | | id | The ID of the radio (is also used for the labels "for") | | | 16 | | checked | The value which has to be true/false | X | | 17 | | disabled| Disable the radio | | False | 18 | | secondarylabel | Creates an two-list instead of a single label | | | 19 | | name | Give the same names to create a radio list | | | 20 | | model | Give models as values for the radios | | | -------------------------------------------------------------------------------- /src/resources/components/radio/mdc-radio.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/resources/components/snackbar/mdc-snackbar.html: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/resources/components/switch/README.md: -------------------------------------------------------------------------------- 1 | # Switch 2 | 3 | ## Usage 4 | ```html 5 | 6 | ``` 7 | 8 | ## Parameters 9 | Parameters that can be given to the message are: 10 | 11 | | Option | Description | Required | Default | 12 | |--|--|:--:|:--:| 13 | | label | The label of the switch. | X | | 14 | | active | The value of the switch. Can be set on init. | X | | 15 | | disabled | Option to disable the switch. | | false | -------------------------------------------------------------------------------- /src/resources/components/textarea/README.md: -------------------------------------------------------------------------------- 1 | # Textarea 2 | 3 | ## Usage 4 | ```html 5 | 6 | ``` 7 | 8 | ## Parameters 9 | Parameters that can be given to the message are: 10 | 11 | | Option | Description | Required | Default | 12 | |--|--|:--:|:--:| 13 | | label | The label of the textfield. | X | | 14 | | value | The value of the textfield. Can be set on init. | X | | 15 | | disabled | Option to disable the textfield. | | false | 16 | | required | Option to require the textfield. | | false | 17 | | modifier | Option to set the modifier of the textfield. | | null | 18 | | secondarylabel | Used for showing a helpertext under the textfield. | | null | --------------------------------------------------------------------------------