Showing preview only (5,014K chars total). Download the full file or copy to clipboard to get everything.
Repository: vuematerial/vue-material
Branch: dev
Commit: 7b1efd058aba
Files: 711
Total size: 4.7 MB
Directory structure:
gitextract_psytouek/
├── .babelrc
├── .codeclimate.yml
├── .editorconfig
├── .eslintignore
├── .eslintrc
├── .github/
│ ├── CODE_OF_CONDUCT.md
│ ├── COMMIT_CONVENTION.md
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE.md
│ ├── PULL_REQUEST_TEMPLATE.md
│ ├── config.yml
│ └── stale.yml
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── FUNDING.yml
├── LICENSE.md
├── README.md
├── ROADMAP.md
├── build/
│ ├── config.js
│ ├── docs/
│ │ ├── index.js
│ │ ├── offline.js
│ │ └── webpack.js
│ ├── generate-changelog.js
│ ├── git-hooks/
│ │ ├── commit-msg
│ │ ├── install.sh
│ │ ├── pre-commit
│ │ └── pre-push
│ ├── lib/
│ │ ├── banner.js
│ │ ├── index.js
│ │ ├── themes.js
│ │ └── webpack.js
│ ├── loaders/
│ │ └── component-example-loader.js
│ ├── local/
│ │ ├── client.js
│ │ ├── index.js
│ │ └── webpack.js
│ ├── new-component.js
│ └── release.sh
├── dist/
│ ├── base/
│ │ └── theme.scss
│ ├── components/
│ │ ├── MdApp/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAutocomplete/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAvatar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBadge/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBottomBar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdButton/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCard/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCheckbox/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdChips/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdContent/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDatepicker/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDialog/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDivider/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDrawer/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdElevation/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdEmptyState/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdField/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdHighlightText/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdIcon/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdImage/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdLayout/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdList/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdMenu/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdProgress/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRadio/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRipple/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdSnackbar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSpeedDial/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSteppers/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSubheader/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSwitch/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTable/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTabs/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdToolbar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTooltip/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── index.css
│ │ └── index.js
│ ├── theme/
│ │ ├── all.scss
│ │ ├── black-green-dark.css
│ │ ├── black-green-light.css
│ │ ├── color-contrast.scss
│ │ ├── default-dark.css
│ │ ├── default.css
│ │ ├── engine.scss
│ │ ├── functions.scss
│ │ ├── mixins.scss
│ │ ├── palette.scss
│ │ ├── prebuilt/
│ │ │ ├── black-green-dark.scss
│ │ │ ├── black-green-light.scss
│ │ │ ├── default-dark.scss
│ │ │ └── default.scss
│ │ └── variables.scss
│ ├── vue-material.css
│ └── vue-material.js
├── docs/
│ ├── _redirects
│ ├── app/
│ │ ├── App.vue
│ │ ├── banner.js
│ │ ├── components/
│ │ │ ├── AdManager.vue
│ │ │ ├── ApiItem.vue
│ │ │ ├── ApiTable/
│ │ │ │ ├── ApiTable.vue
│ │ │ │ └── theme.scss
│ │ │ ├── CodeBlock.vue
│ │ │ ├── CodeExample.vue
│ │ │ ├── CodeLoading.vue
│ │ │ ├── CodesandboxEdit.vue
│ │ │ ├── DocsLoader.vue
│ │ │ ├── GridLayout.vue
│ │ │ ├── GridLayoutItem.vue
│ │ │ ├── LogoVueMaterial.vue
│ │ │ ├── NoteBlock/
│ │ │ │ ├── NoteBlock.vue
│ │ │ │ └── theme.scss
│ │ │ ├── PageContainer.vue
│ │ │ ├── SplashContainer.vue
│ │ │ ├── icons/
│ │ │ │ └── IconButton.vue
│ │ │ └── index.js
│ │ ├── config.js
│ │ ├── i18n/
│ │ │ ├── en-US/
│ │ │ │ ├── components.js
│ │ │ │ ├── index.js
│ │ │ │ └── pages.js
│ │ │ └── index.js
│ │ ├── index.js
│ │ ├── mixins/
│ │ │ ├── codeSource.js
│ │ │ └── docsExample.js
│ │ ├── pages/
│ │ │ ├── About.vue
│ │ │ ├── Components/
│ │ │ │ ├── App/
│ │ │ │ │ ├── App.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Flexible.vue
│ │ │ │ │ ├── LastRowFixed.vue
│ │ │ │ │ ├── Normal.vue
│ │ │ │ │ ├── Overlap.vue
│ │ │ │ │ ├── Reveal.vue
│ │ │ │ │ └── Waterfall.vue
│ │ │ │ ├── Autocomplete/
│ │ │ │ │ ├── Autocomplete.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutocompleteAsync.vue
│ │ │ │ │ ├── AutocompleteBox.vue
│ │ │ │ │ ├── AutocompleteSearch.vue
│ │ │ │ │ ├── AutocompleteStatic.vue
│ │ │ │ │ ├── AutocompleteTemplate.vue
│ │ │ │ │ └── AutocompleteTrigger.vue
│ │ │ │ ├── Avatar/
│ │ │ │ │ ├── Avatar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Placeholder.vue
│ │ │ │ │ ├── Regular.vue
│ │ │ │ │ └── Sizes.vue
│ │ │ │ ├── Badge/
│ │ │ │ │ ├── Badge.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Buttons.vue
│ │ │ │ │ ├── Dense.vue
│ │ │ │ │ └── Lists.vue
│ │ │ │ ├── BottomBar/
│ │ │ │ │ ├── BottomBar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BarCustomTemplate.vue
│ │ │ │ │ ├── BarRouter.vue
│ │ │ │ │ ├── ChangingThemes.vue
│ │ │ │ │ └── Shift.vue
│ │ │ │ ├── Button/
│ │ │ │ │ ├── Button.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ButtonRouter.vue
│ │ │ │ │ ├── ButtonVsLink.vue
│ │ │ │ │ ├── FloatingButtons.vue
│ │ │ │ │ ├── IconButtons.vue
│ │ │ │ │ └── RegularButtons.vue
│ │ │ │ ├── Card/
│ │ │ │ │ ├── Card.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── CardExpansion.vue
│ │ │ │ │ ├── Layouts.vue
│ │ │ │ │ ├── Media.vue
│ │ │ │ │ ├── MediaCover.vue
│ │ │ │ │ ├── RegularCards.vue
│ │ │ │ │ └── ThemeColors.vue
│ │ │ │ ├── Checkbox/
│ │ │ │ │ ├── Checkbox.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── CheckboxHueColors.vue
│ │ │ │ │ ├── RegularCheckboxes.vue
│ │ │ │ │ └── TrueFalseValue.vue
│ │ │ │ ├── Chips/
│ │ │ │ │ ├── Chips.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutoInsert.vue
│ │ │ │ │ ├── ChipCustomTemplate.vue
│ │ │ │ │ ├── DuplicatedFeedback.vue
│ │ │ │ │ ├── Editable.vue
│ │ │ │ │ ├── Format.vue
│ │ │ │ │ ├── SingleChip.vue
│ │ │ │ │ ├── Static.vue
│ │ │ │ │ └── Themed.vue
│ │ │ │ ├── Content/
│ │ │ │ │ ├── Content.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── PaperContent.vue
│ │ │ │ ├── Datepicker/
│ │ │ │ │ ├── Datepicker.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BasicDatepicker.vue
│ │ │ │ │ ├── CancelOpenDatepicker.vue
│ │ │ │ │ ├── CloseOnSelectDatepicker.vue
│ │ │ │ │ ├── DisabledDatesDatepicker.vue
│ │ │ │ │ ├── LabeledDatepicker.vue
│ │ │ │ │ └── MultiTypesDatepicker.vue
│ │ │ │ ├── Dialog/
│ │ │ │ │ ├── Dialog.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── DialogAlert.vue
│ │ │ │ │ ├── DialogConfirm.vue
│ │ │ │ │ ├── DialogCustom.vue
│ │ │ │ │ └── DialogPrompt.vue
│ │ │ │ ├── Divider/
│ │ │ │ │ ├── Divider.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── Divider.vue
│ │ │ │ ├── Drawer/
│ │ │ │ │ ├── Drawer.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── PermanentCard.vue
│ │ │ │ │ ├── PermanentClipped.vue
│ │ │ │ │ ├── PermanentFull.vue
│ │ │ │ │ ├── PersistentFull.vue
│ │ │ │ │ ├── PersistentMini.vue
│ │ │ │ │ └── Temporary.vue
│ │ │ │ ├── EmptyState/
│ │ │ │ │ ├── EmptyState.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── EmptyStateBasic.vue
│ │ │ │ │ ├── EmptyStateColors.vue
│ │ │ │ │ └── EmptyStateRounded.vue
│ │ │ │ ├── File/
│ │ │ │ │ ├── File.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── FileField.vue
│ │ │ │ ├── Form/
│ │ │ │ │ ├── Form.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── FormValidation.vue
│ │ │ │ ├── Icon/
│ │ │ │ │ ├── Icon.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── FontAwesome.vue
│ │ │ │ │ ├── MaterialIcons.vue
│ │ │ │ │ └── SvgAssets.vue
│ │ │ │ ├── Input/
│ │ │ │ │ ├── Input.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Counters.vue
│ │ │ │ │ ├── ErrorsMessages.vue
│ │ │ │ │ ├── FieldIcons.vue
│ │ │ │ │ ├── Fixes.vue
│ │ │ │ │ ├── InlineActions.vue
│ │ │ │ │ └── TextFields.vue
│ │ │ │ ├── List/
│ │ │ │ │ ├── List.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Controls.vue
│ │ │ │ │ ├── DoubleLine.vue
│ │ │ │ │ ├── ListExpansion.vue
│ │ │ │ │ ├── ListTypes.vue
│ │ │ │ │ ├── SingleLine.vue
│ │ │ │ │ └── TripleLine.vue
│ │ │ │ ├── Menu/
│ │ │ │ │ ├── Menu.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutoClose.vue
│ │ │ │ │ ├── Directions.vue
│ │ │ │ │ ├── MenuAlignments.vue
│ │ │ │ │ ├── MultipleContent.vue
│ │ │ │ │ └── Sizes.vue
│ │ │ │ ├── ProgressBar/
│ │ │ │ │ ├── ProgressBar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ProgressBarBuffer.vue
│ │ │ │ │ ├── ProgressBarDeterminate.vue
│ │ │ │ │ ├── ProgressBarIndeterminate.vue
│ │ │ │ │ └── ProgressBarQuery.vue
│ │ │ │ ├── ProgressSpinner/
│ │ │ │ │ ├── ProgressSpinner.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ProgressSpinnerDeterminate.vue
│ │ │ │ │ ├── ProgressSpinnerIndeterminate.vue
│ │ │ │ │ └── ProgressSpinnerSizes.vue
│ │ │ │ ├── Radio/
│ │ │ │ │ ├── Radio.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── RadioHueColors.vue
│ │ │ │ │ └── RegularRadio.vue
│ │ │ │ ├── Select/
│ │ │ │ │ ├── Select.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BasicSelect.vue
│ │ │ │ │ ├── DenseSelect.vue
│ │ │ │ │ ├── DisabledSelect.vue
│ │ │ │ │ ├── MultipleSelect.vue
│ │ │ │ │ └── OptgroupSelect.vue
│ │ │ │ ├── Snackbar/
│ │ │ │ │ ├── Snackbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SnackbarExample.vue
│ │ │ │ ├── SpeedDial/
│ │ │ │ │ ├── SpeedDial.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AnimationTypes.vue
│ │ │ │ │ ├── EventTriggers.vue
│ │ │ │ │ ├── MorphingIcon.vue
│ │ │ │ │ └── PositionDirection.vue
│ │ │ │ ├── Steppers/
│ │ │ │ │ ├── Steppers.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── StepperAlternative.vue
│ │ │ │ │ ├── StepperHorizontal.vue
│ │ │ │ │ ├── StepperLinear.vue
│ │ │ │ │ ├── StepperNonEditable.vue
│ │ │ │ │ ├── StepperRoute.vue
│ │ │ │ │ └── StepperVertical.vue
│ │ │ │ ├── Subheader/
│ │ │ │ │ ├── Subheader.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SubheaderExample.vue
│ │ │ │ ├── Switch/
│ │ │ │ │ ├── Switch.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── RegularSwitch.vue
│ │ │ │ │ └── SwitchHueColors.vue
│ │ │ │ ├── Table/
│ │ │ │ │ ├── Table.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── TableBasic.vue
│ │ │ │ │ ├── TableCard.vue
│ │ │ │ │ ├── TableCustomSort.vue
│ │ │ │ │ ├── TableFixed.vue
│ │ │ │ │ ├── TableMultiple.vue
│ │ │ │ │ ├── TablePagination.vue
│ │ │ │ │ ├── TablePaginationRemote.vue
│ │ │ │ │ ├── TableSearch.vue
│ │ │ │ │ ├── TableSingle.vue
│ │ │ │ │ ├── TableSort.vue
│ │ │ │ │ └── TableTemplate.vue
│ │ │ │ ├── Tabs/
│ │ │ │ │ ├── Tabs.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── TabAlignments.vue
│ │ │ │ │ ├── TabContent.vue
│ │ │ │ │ ├── TabCustomTemplate.vue
│ │ │ │ │ ├── TabIcons.vue
│ │ │ │ │ ├── TabRouter.vue
│ │ │ │ │ └── TabsOrdering.vue
│ │ │ │ ├── Toolbar/
│ │ │ │ │ ├── Toolbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ContentActions.vue
│ │ │ │ │ ├── RegularToolbar.vue
│ │ │ │ │ └── ToolbarSizes.vue
│ │ │ │ └── Tooltip/
│ │ │ │ ├── Tooltip.vue
│ │ │ │ └── examples/
│ │ │ │ ├── Delay.vue
│ │ │ │ ├── Direction.vue
│ │ │ │ └── Dynamically.vue
│ │ │ ├── Components.vue
│ │ │ ├── Configuration.vue
│ │ │ ├── Error.vue
│ │ │ ├── GettingStarted.vue
│ │ │ ├── Home/
│ │ │ │ ├── Home.vue
│ │ │ │ ├── HomeEcosystem.vue
│ │ │ │ ├── HomeFeatures.vue
│ │ │ │ ├── HomeHeader.vue
│ │ │ │ ├── HomePremium.vue
│ │ │ │ ├── HomeSponsors.vue
│ │ │ │ └── icons/
│ │ │ │ ├── HomeIcon.vue
│ │ │ │ ├── HomeIconCircle.vue
│ │ │ │ ├── HomeIconDevices.vue
│ │ │ │ └── HomeIconSquare.vue
│ │ │ ├── License.vue
│ │ │ ├── PremiumThemes/
│ │ │ │ └── PremiumThemes.vue
│ │ │ ├── Themes/
│ │ │ │ ├── Advanced.vue
│ │ │ │ ├── Concepts.vue
│ │ │ │ ├── Configuration.vue
│ │ │ │ ├── Prebuilt.vue
│ │ │ │ └── Themes.vue
│ │ │ ├── UiElements/
│ │ │ │ ├── Elevation/
│ │ │ │ │ ├── Elevation.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── ElevationExample.vue
│ │ │ │ ├── Layout/
│ │ │ │ │ ├── Layout.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── LayoutHorizontalAlignment.vue
│ │ │ │ │ ├── LayoutHorizontalColumns.vue
│ │ │ │ │ ├── LayoutHorizontalGutter.vue
│ │ │ │ │ ├── LayoutHorizontalHide.vue
│ │ │ │ │ ├── LayoutHorizontalNested.vue
│ │ │ │ │ ├── LayoutHorizontalResponsive.vue
│ │ │ │ │ ├── LayoutHorizontalSizes.vue
│ │ │ │ │ └── LayoutVertical.vue
│ │ │ │ ├── Scrollbar/
│ │ │ │ │ ├── Scrollbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── ScrollbarExample.vue
│ │ │ │ ├── TextSelection/
│ │ │ │ │ ├── TextSelection.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SelectionExample.vue
│ │ │ │ └── Typography/
│ │ │ │ ├── Typography.vue
│ │ │ │ └── examples/
│ │ │ │ └── TypographyExample.vue
│ │ │ ├── UiElements.vue
│ │ │ └── WithRouter.vue
│ │ ├── routes.js
│ │ ├── store/
│ │ │ ├── actions.js
│ │ │ ├── index.js
│ │ │ ├── mutation-types.js
│ │ │ ├── mutations.js
│ │ │ └── state.js
│ │ ├── template/
│ │ │ ├── MainFooter.vue
│ │ │ ├── MainHeader.vue
│ │ │ ├── MainNav.vue
│ │ │ └── MainNavContent.vue
│ │ └── themes/
│ │ ├── dark-green.scss
│ │ ├── dark.scss
│ │ ├── default-dark.scss
│ │ ├── default.scss
│ │ ├── demo.scss
│ │ ├── docs-imports.scss
│ │ └── light-green.scss
│ ├── browserconfig.xml
│ ├── index.html
│ └── manifest.json
├── package.json
├── src/
│ ├── base/
│ │ ├── base.scss
│ │ ├── index.scss
│ │ ├── scrollbar.scss
│ │ ├── theme.scss
│ │ └── typography.scss
│ ├── components/
│ │ ├── MdAnimation/
│ │ │ └── variables.scss
│ │ ├── MdApp/
│ │ │ ├── MdApp.test.js
│ │ │ ├── MdApp.vue
│ │ │ ├── MdAppContent.vue
│ │ │ ├── MdAppDrawer.vue
│ │ │ ├── MdAppInternalDrawer.vue
│ │ │ ├── MdAppMixin.js
│ │ │ ├── MdAppSideDrawer.vue
│ │ │ ├── MdAppToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAutocomplete/
│ │ │ ├── MdAutocomplete.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAvatar/
│ │ │ ├── MdAvatar.test.js
│ │ │ ├── MdAvatar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBadge/
│ │ │ ├── MdBadge.test.js
│ │ │ ├── MdBadge.vue
│ │ │ ├── MdBadgeStandalone.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBottomBar/
│ │ │ ├── MdBottomBar.test.js
│ │ │ ├── MdBottomBar.vue
│ │ │ ├── MdBottomBarItem.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdButton/
│ │ │ ├── MdButton.test.js
│ │ │ ├── MdButton.vue
│ │ │ ├── MdButtonContent.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCard/
│ │ │ ├── MdCard.test.js
│ │ │ ├── MdCard.vue
│ │ │ ├── MdCardActions/
│ │ │ │ ├── MdCardActions.test.js
│ │ │ │ └── MdCardActions.vue
│ │ │ ├── MdCardArea/
│ │ │ │ ├── MdCardArea.test.js
│ │ │ │ └── MdCardArea.vue
│ │ │ ├── MdCardContent/
│ │ │ │ ├── MdCardContent.test.js
│ │ │ │ └── MdCardContent.vue
│ │ │ ├── MdCardExpand/
│ │ │ │ ├── MdCardExpand.test.js
│ │ │ │ ├── MdCardExpand.vue
│ │ │ │ ├── MdCardExpandContent.vue
│ │ │ │ └── MdCardExpandTrigger.vue
│ │ │ ├── MdCardHeader/
│ │ │ │ ├── MdCardHeader.test.js
│ │ │ │ ├── MdCardHeader.vue
│ │ │ │ └── MdCardHeaderText.vue
│ │ │ ├── MdCardMedia/
│ │ │ │ ├── MdCardMedia.test.js
│ │ │ │ ├── MdCardMedia.vue
│ │ │ │ ├── MdCardMediaActions.vue
│ │ │ │ └── MdCardMediaCover.vue
│ │ │ ├── base.scss
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCheckbox/
│ │ │ ├── MdCheckbox.test.js
│ │ │ ├── MdCheckbox.vue
│ │ │ ├── MdCheckboxMixin.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdChips/
│ │ │ ├── MdChip.vue
│ │ │ ├── MdChips.test.js
│ │ │ ├── MdChips.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdContent/
│ │ │ ├── MdContent.test.js
│ │ │ ├── MdContent.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDatepicker/
│ │ │ ├── MdDatepicker.test.js
│ │ │ ├── MdDatepicker.vue
│ │ │ ├── MdDatepickerDialog.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDialog/
│ │ │ ├── MdDialog.test.js
│ │ │ ├── MdDialog.vue
│ │ │ ├── MdDialogActions.vue
│ │ │ ├── MdDialogAlert/
│ │ │ │ ├── MdDialogAlert.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogConfirm/
│ │ │ │ ├── MdDialogConfirm.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogContent.vue
│ │ │ ├── MdDialogPrompt/
│ │ │ │ ├── MdDialogPrompt.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogRender.js
│ │ │ ├── MdDialogTitle.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDivider/
│ │ │ ├── MdDivider.test.js
│ │ │ ├── MdDivider.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDrawer/
│ │ │ ├── MdDrawer.test.js
│ │ │ ├── MdDrawer.vue
│ │ │ ├── MdDrawerRightPrevious.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdElevation/
│ │ │ ├── elevation.scss
│ │ │ ├── index.js
│ │ │ ├── mixins.scss
│ │ │ └── variables.scss
│ │ ├── MdEmptyState/
│ │ │ ├── MdEmptyState.test.js
│ │ │ ├── MdEmptyState.vue
│ │ │ ├── MdEmptyStateProps.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdField/
│ │ │ ├── MdField.test.js
│ │ │ ├── MdField.vue
│ │ │ ├── MdFieldMixin.js
│ │ │ ├── MdFile/
│ │ │ │ ├── MdFile.test.js
│ │ │ │ └── MdFile.vue
│ │ │ ├── MdInput/
│ │ │ │ ├── MdInput.test.js
│ │ │ │ └── MdInput.vue
│ │ │ ├── MdSelect/
│ │ │ │ ├── MdOptgroup.vue
│ │ │ │ ├── MdOption.vue
│ │ │ │ ├── MdSelect.vue
│ │ │ │ └── index.js
│ │ │ ├── MdTextarea/
│ │ │ │ └── MdTextarea.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdFocusTrap/
│ │ │ └── MdFocusTrap.js
│ │ ├── MdHighlightText/
│ │ │ ├── MdHighlightText.vue
│ │ │ └── index.js
│ │ ├── MdIcon/
│ │ │ ├── MdIcon.test.js
│ │ │ ├── MdIcon.vue
│ │ │ ├── index.js
│ │ │ ├── mixins.scss
│ │ │ └── theme.scss
│ │ ├── MdImage/
│ │ │ ├── MdImage.test.js
│ │ │ ├── MdImage.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdLayout/
│ │ │ ├── index.js
│ │ │ ├── layout.scss
│ │ │ ├── mixins.scss
│ │ │ └── variables.scss
│ │ ├── MdList/
│ │ │ ├── MdList.test.js
│ │ │ ├── MdList.vue
│ │ │ ├── MdListItem/
│ │ │ │ ├── MdListItem.test.js
│ │ │ │ ├── MdListItem.vue
│ │ │ │ ├── MdListItemButton.vue
│ │ │ │ ├── MdListItemContent.vue
│ │ │ │ ├── MdListItemDefault.vue
│ │ │ │ ├── MdListItemExpand.vue
│ │ │ │ ├── MdListItemFakeButton.vue
│ │ │ │ ├── MdListItemLink.vue
│ │ │ │ ├── MdListItemMixin.js
│ │ │ │ └── MdListItemRouter.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdMenu/
│ │ │ ├── MdMenu.test.js
│ │ │ ├── MdMenu.vue
│ │ │ ├── MdMenuContent.vue
│ │ │ ├── MdMenuItem.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdOverlay/
│ │ │ ├── MdOverlay.test.js
│ │ │ └── MdOverlay.vue
│ │ ├── MdPopover/
│ │ │ ├── MdPopover.test.js
│ │ │ └── MdPopover.vue
│ │ ├── MdPortal/
│ │ │ ├── MdPortal.js
│ │ │ └── MdPortal.test.js
│ │ ├── MdProgress/
│ │ │ ├── MdProgressBar/
│ │ │ │ ├── MdProgressBar.test.js
│ │ │ │ └── MdProgressBar.vue
│ │ │ ├── MdProgressSpinner/
│ │ │ │ ├── MdProgressSpinner.test.js
│ │ │ │ └── MdProgressSpinner.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRadio/
│ │ │ ├── MdRadio.test.js
│ │ │ ├── MdRadio.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRipple/
│ │ │ ├── MdRipple.vue
│ │ │ ├── MdWave.vue
│ │ │ └── index.js
│ │ ├── MdSnackbar/
│ │ │ ├── MdSnackbar.vue
│ │ │ ├── MdSnackbarContent.vue
│ │ │ ├── MdSnackbarQueue.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSpeedDial/
│ │ │ ├── MdSpeedDial.test.js
│ │ │ ├── MdSpeedDial.vue
│ │ │ ├── MdSpeedDialContent.vue
│ │ │ ├── MdSpeedDialTarget.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSteppers/
│ │ │ ├── MdStep.vue
│ │ │ ├── MdStepHeader.vue
│ │ │ ├── MdSteppers.test.js
│ │ │ ├── MdSteppers.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSubheader/
│ │ │ ├── MdSubheader.test.js
│ │ │ ├── MdSubheader.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSvgLoader/
│ │ │ ├── MdSvgLoader.test.js
│ │ │ └── MdSvgLoader.vue
│ │ ├── MdSwitch/
│ │ │ ├── MdSwitch.test.js
│ │ │ ├── MdSwitch.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTable/
│ │ │ ├── MdTable.vue
│ │ │ ├── MdTableAlternateHeader.vue
│ │ │ ├── MdTableCell.vue
│ │ │ ├── MdTableCellSelection.vue
│ │ │ ├── MdTableContainer.js
│ │ │ ├── MdTableEmptyState.vue
│ │ │ ├── MdTableHead.vue
│ │ │ ├── MdTableHeadSelection.vue
│ │ │ ├── MdTablePagination.vue
│ │ │ ├── MdTableRow.vue
│ │ │ ├── MdTableRowGhost.vue
│ │ │ ├── MdTableThead.vue
│ │ │ ├── MdTableToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTabs/
│ │ │ ├── MdTab.vue
│ │ │ ├── MdTabs.test.js
│ │ │ ├── MdTabs.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTagSwitcher/
│ │ │ └── MdTagSwitcher.vue
│ │ ├── MdToolbar/
│ │ │ ├── MdToolbar.test.js
│ │ │ ├── MdToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTooltip/
│ │ │ ├── MdTooltip.test.js
│ │ │ ├── MdTooltip.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ └── index.js
│ ├── core/
│ │ ├── MdComponent.js
│ │ ├── MdTheme.js
│ │ ├── icons/
│ │ │ ├── MdArrowDownIcon.vue
│ │ │ ├── MdArrowLeftIcon.vue
│ │ │ ├── MdArrowRightIcon.vue
│ │ │ ├── MdCheckIcon.vue
│ │ │ ├── MdClearIcon.vue
│ │ │ ├── MdDateIcon.vue
│ │ │ ├── MdDropDownIcon.vue
│ │ │ ├── MdEditIcon.vue
│ │ │ ├── MdFileIcon.vue
│ │ │ ├── MdPasswordOffIcon.vue
│ │ │ ├── MdPasswordOnIcon.vue
│ │ │ ├── MdUpwardIcon.vue
│ │ │ └── MdWarningIcon.vue
│ │ ├── mixins/
│ │ │ ├── MdAssetIcon/
│ │ │ │ └── MdAssetIcon.js
│ │ │ ├── MdFocused/
│ │ │ │ └── MdFocused.js
│ │ │ ├── MdRipple/
│ │ │ │ └── MdRipple.js
│ │ │ ├── MdRouterLink/
│ │ │ │ └── MdRouterLink.js
│ │ │ └── MdSwipeable/
│ │ │ └── MdSwipeable.js
│ │ └── utils/
│ │ ├── MdContains.js
│ │ ├── MdDebounce.js
│ │ ├── MdInteractionEvents.js
│ │ ├── MdObserveElement.js
│ │ ├── MdObserveEvent.js
│ │ ├── MdPropValidator.js
│ │ ├── MdReactive.js
│ │ ├── MdResizeObserver.js
│ │ ├── MdRouterLinkProps.js
│ │ ├── MdThrottling.js
│ │ └── MdUuid.js
│ ├── index.js
│ ├── material.js
│ ├── material.test.js
│ └── theme/
│ ├── all.scss
│ ├── color-contrast.scss
│ ├── engine.scss
│ ├── functions.scss
│ ├── mixins.scss
│ ├── palette.scss
│ ├── prebuilt/
│ │ ├── black-green-dark.scss
│ │ ├── black-green-light.scss
│ │ ├── default-dark.scss
│ │ └── default.scss
│ └── variables.scss
└── test/
├── setup.js
├── styleMock.js
└── utils/
├── mockConsole.js
├── mockRequest.js
├── mountStringSlot.js
└── mountTemplate.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .babelrc
================================================
{
"presets": [
"env",
"react",
"stage-0"
],
"plugins": [
"transform-class-properties",
"transform-decorators",
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
================================================
FILE: .codeclimate.yml
================================================
checks:
file-lines:
config:
threshold: 300
method-count:
config:
threshold: 30
method-lines:
config:
threshold: 40
ratings:
paths:
- build/**
- docs/**
- src/**
- test/**
exclude_paths:
- coverage/*
- dist/*
plugins:
eslint:
enabled: false
duplication:
enabled: true
config:
languages:
javascript:
patterns:
- "src/**/*.js"
- "src/**/*.vue"
- "build/**/*.js"
- "test/**/*.js"
- "!src/**/*.test.js"
markdownlint:
enabled: true
checks:
MD002:
enabled: false
MD013:
enabled: false
MD038:
enabled: false
MD026:
enabled: false
MD033:
enabled: false
MD014:
enabled: false
fixme:
enabled: true
exclude_paths:
- ".github/"
================================================
FILE: .editorconfig
================================================
# http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
insert_final_newline = false
================================================
FILE: .eslintignore
================================================
dist
coverage
================================================
FILE: .eslintrc
================================================
{
"root": true,
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"jest",
"vue"
],
"extends": [
"plugin:vue/essential"
],
"env": {
"jest/globals": true
},
"rules": {
"semi": ["warn", "never"],
"space-before-function-paren": ["warn"],
"arrow-parens": 0,
"generator-star-spacing": "off",
"indent": "off",
"indent-legacy": ["error", 2],
"max-depth": [
"error",
4
],
"max-statements": [
"error",
30
],
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
3
],
"complexity": [
"error",
{
"max": 6
}
],
"vue/valid-v-on": 0,
"vue/v-bind-style": [
"error",
"shorthand"
],
"vue/v-on-style": [
"error",
"shorthand"
],
"vue/name-property-casing": [
"error",
"PascalCase"
],
"vue/require-v-for-key": 0,
"vue/html-closing-bracket-spacing": ["error"],
"vue/no-unused-components": "off"
}
}
================================================
FILE: .github/CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at marcosvmmoura@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
================================================
FILE: .github/COMMIT_CONVENTION.md
================================================
# Git Commit Message Convention
> This is adapted from [Vue.js's commit convention](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md).
## Examples
Appears under "Components" header, pencil subheader:
```
comp(MdPencil): add 'graphiteWidth' option
```
Appears under "UI Elements" header, pencil subheader:
```
ui(MdPencil): add 'graphiteWidth' option
```
Appears under "Core" header, pencil subheader:
```
core(MdPencil): add 'graphiteWidth' option
```
Appears under "Bug Fixes" header, graphite subheader, with a link to issue #28:
```
fix(MdGraphite): stop graphite breaking when width < 0.1
close #28
```
Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
```
perf(MdPencil): remove graphiteWidth option
BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reason.
```
The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
```
revert: feat(MdPencil): add 'graphiteWidth' option
This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
```
## Full Message Format
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
```
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
```
The **header** is mandatory and the **scope** of the header is optional.
## Revert
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
## Type
If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
## Scope
The scope could be anything specifying place of the commit change. For example `core`, `compiler`, `ssr`, `v-model`, `transition` etc...
## Subject
The subject contains succinct description of the change:
* use the imperative, present tense: "change" not "changed" nor "changes"
* don't capitalize first letter
* no dot (.) at the end
## Body
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
The body should include the motivation for the change and contrast this with previous behavior.
## Footer
The footer should contain any information about **Breaking Changes** and is also the place to
reference GitHub issues that this commit **Closes**.
**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
================================================
FILE: .github/CONTRIBUTING.md
================================================
# Vue Material Contributing Guide
Before submitting your contribution please read the guidelines.
- [Issue Reporting Guidelines](#issue-reporting-guidelines)
- [Pull Request Guidelines](#pull-request-guidelines)
- [Development Setup](#development-setup)
## Issue Reporting Guidelines
- Do not create questions. The issue list is exclusively for reports, bugs and feature requests. Use the [Discord server]( https://discord.gg/vuematerial) instead.
- Always search for your issue first. It may have already been answered, planned or fixed in some branch. New components and features will be planned on [Milestones](https://github.com/vuematerial/vue-material/milestones) or on [Projects](https://github.com/vuematerial/vue-material/projects).
- Only create issues for the newest version.
- Create a declarative title and describe clearly the steps necessary to reproduce the issue. If an issue labeled "need repro" receives no further input from the issue author for more than 3 days, it will be closed.
- If you want to show your code please use [Codepen](http://codepen.io/pen/) or [JSFiddle](https://jsfiddle.net/). You could start with [this template](https://codesandbox.io/s/github/vuematerial/examples/tree/master/examples/quick-start).
- In case you found a solution by yourself try to explain how you fixed it. It could be useful for somebody else. :)
## Pull Request Guidelines
- The `master` branch is basically just a snapshot of the latest stable release. All development should be done in dedicated branches. **Do not submit PRs against the `master` branch.**
- Work in the `src` or `docs` folder and **DO NOT** add `dist` in the commits.
- Make small commits as you work on the PR. They will be automatically squashed before merging.
- Provide convincing reason to add a new feature. Ideally you should open a suggestion/request issue first and have it greenlighted before working on it.
- If fixing a bug:
- If you are resolving a special issue, add the GitHub ID to your commit. E.g. `(fix something really ugly #xxx)`
- Provide detailed description of the bug in the PR.
## Development Setup
You will need [Node.js](http://nodejs.org) **version 6+**
After cloning the repo, run:
``` bash
$ yarn install
```
### Commonly used YARN scripts
``` bash
### Start dev server with hot reload
$ yarn dev
### Check for errors
$ yarn lint
### Build everything
$ yarn build
### Build docs only
$ yarn build:docs
### Build lib only
$ yarn build:lib
```
The other tasks on package.json **SHOULD NOT** be executed.
================================================
FILE: .github/ISSUE_TEMPLATE.md
================================================
<!--
Questions
================
If you have any questions, ideas or you want to discuss with Vue Material community. Use the Discord instead.
Follow this link: https://discord.gg/vuematerial
Reporting a bug?
================
- Always search for your issue first. It may have already been answered, planned or fixed in some branch.
- Open one issue per subject. Cluttered issues will be closed.
- Make sure to only create issues for the newest version.
- Create a declarative title and describe clearly the steps necessary to reproduce the issue. If an issue labeled "need repro" receives no further input from the issue author for more than 3 days, it will be closed.
- If you want to show your code, please use https://codesandbox.io/s/github/vuematerial/examples/tree/master/examples/quick-start
- In case you found a solution by yourself, it could be helpful to explain how you have fixed it.
- For bugs that involves build setups, you can create a reproduction repository with steps in the README.
- If your issue is resolved but still open, don’t hesitate to close it.
Have a feature request?
=======================
- Remove the template from below and provide thoughtful commentary.
- Answer those questions:
- What will it allow you to do that you can't do today?
- How will it make current work-arounds straightforward?
- What potential bugs and edge cases does it help to avoid?
Do not create new features based on a problem that will only solve edge cases for your project. Remember that Vue Material aims to be lightweight and clean. :)
-->
<!-- BUG REPORT TEMPLATE -->
### Steps to reproduce
<!-- I installed this, created that, running those... ? -->
### Which browser?
<!-- Which versions of Vue, Vue Material, OS, browsers are affected? -->
### What is expected?
<!-- What do you think that could be the correct behaviour? -->
### What is actually happening?
<!-- Is there anything else we should know? -->
### Reproduction Link
<!-- If you want to show your code please use Codesanbox. -->
<!--
You could start with this template:
https://codesandbox.io/s/github/vuematerial/examples/tree/master/examples/quick-start
-->
================================================
FILE: .github/PULL_REQUEST_TEMPLATE.md
================================================
<!--
Please make sure to read the Pull Request Guidelines:
https://github.com/marcosmoura/vue-material/blob/master/.github/CONTRIBUTING.md#pull-request-guidelines
-->
================================================
FILE: .github/config.yml
================================================
sentimentBotToxicityThreshold: .7
sentimentBotReplyComment: >
Please be sure to review the <a href="https://github.com/vuematerial/vue-material/blob/master/.github/CODE_OF_CONDUCT.md">Code of Conduct</a> and be respectful of other users. cc/ @marcosmoura
newIssueWelcomeComment: >
Thanks for opening your first issue here! Be sure to follow the <a href="https://github.com/vuematerial/vue-material/blob/master/.github/ISSUE_TEMPLATE.md">issue template</a>!
newPRWelcomeComment: >
Thanks for opening this pull request! Please check out our <a href="https://github.com/vuematerial/vue-material/blob/master/.github/CONTRIBUTING.md">contributing</a> guidelines.
requestInfoReplyComment: >
We would appreciate it if you could provide us with more info about this issue/pr!
================================================
FILE: .github/stale.yml
================================================
daysUntilStale: 30
daysUntilClose: 7
exemptLabels:
- bug
- help wanted
- request
staleLabel: stale
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
closeComment: false
================================================
FILE: .gitignore
================================================
.DS_Store
node_modules/
coverage/
.vscode/
.nyc_output/
.vscode/
yarn-debug.log
npm-debug.log
.vscode
.idea
================================================
FILE: .travis.yml
================================================
language: node_js
node_js:
- '12'
sudo: false
env:
global:
- NODE_ENV="CI"
- CC_TEST_REPORTER_ID=8e14ec33d4a45de3a712db3dcdbef17329465c636cd58e740d871e29b5a121f0
- secure: n8S9oRQc7C9vq6UsQKFS3dclz83GohtPH5iF0xUkOurhgIrZ8NwFtxYNoi5BDHuxCo/HdVd1vN8hKBcyPdsuVZstvA39O8xbtdDs+pgDAPDmoVLCkEK10yva+aYvf8fdleJi40mcoucgtWCBYkOwMZlbBqwNZ7pf9CT3QMzjvbnC7skP1A5Ju0PXm43eFgZ8OEBWEd0qHl8cFIwOljWcYcwErdcq9Xo0VNwbp8cELTAM+GkNbGLtSJmArG3dkGxb1MINb+FkjjW94j2oF3U1QjbdTvQ2f/gbrrg0i9el+T1mLdukGoaZRpG3LzBTYs9e37MyIqgIm3kwCwjYTJP4Uqv9cI6egSnBDsuQ314LEyKkQeYFIXzeKEoNJ8PnROY20TjFmoAvNoA09hbgdrfcCALn5Tpp6PjayD0pb7+HWSfY0tEqJsLWzArRsKRXSozYud8sDMyySyQTAtAG4AxsDR5+wFz1T7faZP61JJulHJYZY5UbmjDPe8FHUq8SNrxwOFYa59jb1yCyGftTgWfLCNrYL9JOw0jMPTVuCeo94l0yCF5N8Mo18iYnnZd/6btWR0OO7Q3CgPJQGUMxLx6UhfYiIlhDq4OKsAEUD/+ZQDfWueM0lmHyn3tsRi9bVwNvf5HlFYkgc5x4UbkGUsCQUjM8ceoKlnfhup72fyWesQI=
addons:
code_climate:
repo_token: 8e14ec33d4a45de3a712db3dcdbef17329465c636cd58e740d871e29b5a121f0
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn -v
- npm i -g npm
install:
- yarn add --dev --ignore-scripts babel-cli
- yarn --ignore-scripts
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- npm rebuild node-sass
- yarn lint
- yarn coverage
- yarn build
after_success:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
- yarn changelog
- RELEASE_NOTES=`cat RELEASE_NOTES.md`
- PACKAGE_VERSION=$(grep '"version":' package.json | cut -d\" -f4)
- yarn github-release -- delete \
--owner=vuematerial \
--repo=vue-material \
--tag="v${PACKAGE_VERSION}" \
--name="v${PACKAGE_VERSION}"
- yarn github-release -- upload \
--owner=vuematerial \
--repo=vue-material \
--tag="${PACKAGE_VERSION}" \
--name="v${PACKAGE_VERSION}" \
--body="v${RELEASE_NOTES}"
- rm -rf RELEASE_NOTES.md CHANGELOG.md
================================================
FILE: CHANGELOG.md
================================================
<a name="1.0.0-beta-16"></a>
# [1.0.0-beta-16](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-15...v1.0.0-beta-16) (2023-02-27)
### Bug Fixes
* carbon ads ([#2266](https://github.com/vuematerial/vue-material/issues/2266)) ([78209c3](https://github.com/vuematerial/vue-material/commit/78209c3)), closes [#2063](https://github.com/vuematerial/vue-material/issues/2063) [#2062](https://github.com/vuematerial/vue-material/issues/2062) [#2082](https://github.com/vuematerial/vue-material/issues/2082) [#2139](https://github.com/vuematerial/vue-material/issues/2139) [#2145](https://github.com/vuematerial/vue-material/issues/2145) [#2150](https://github.com/vuematerial/vue-material/issues/2150) [#2153](https://github.com/vuematerial/vue-material/issues/2153) [#2164](https://github.com/vuematerial/vue-material/issues/2164) [#80](https://github.com/vuematerial/vue-material/issues/80) [#2181](https://github.com/vuematerial/vue-material/issues/2181) [#2100](https://github.com/vuematerial/vue-material/issues/2100) [#2080](https://github.com/vuematerial/vue-material/issues/2080) [#2117](https://github.com/vuematerial/vue-material/issues/2117) [#2198](https://github.com/vuematerial/vue-material/issues/2198) [#1819](https://github.com/vuematerial/vue-material/issues/1819) [#2064](https://github.com/vuematerial/vue-material/issues/2064) [#2178](https://github.com/vuematerial/vue-material/issues/2178) [#2201](https://github.com/vuematerial/vue-material/issues/2201) [#1929](https://github.com/vuematerial/vue-material/issues/1929) [#2023](https://github.com/vuematerial/vue-material/issues/2023) [#2021](https://github.com/vuematerial/vue-material/issues/2021) [#2065](https://github.com/vuematerial/vue-material/issues/2065) [#1957](https://github.com/vuematerial/vue-material/issues/1957) [#1967](https://github.com/vuematerial/vue-material/issues/1967) [#2081](https://github.com/vuematerial/vue-material/issues/2081) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2091](https://github.com/vuematerial/vue-material/issues/2091) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2183](https://github.com/vuematerial/vue-material/issues/2183) [#2189](https://github.com/vuematerial/vue-material/issues/2189) [#2211](https://github.com/vuematerial/vue-material/issues/2211) [#2215](https://github.com/vuematerial/vue-material/issues/2215) [#2213](https://github.com/vuematerial/vue-material/issues/2213) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2212](https://github.com/vuematerial/vue-material/issues/2212) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2220](https://github.com/vuematerial/vue-material/issues/2220) [#2214](https://github.com/vuematerial/vue-material/issues/2214) [#2224](https://github.com/vuematerial/vue-material/issues/2224) [#2226](https://github.com/vuematerial/vue-material/issues/2226) [#2228](https://github.com/vuematerial/vue-material/issues/2228) [#2234](https://github.com/vuematerial/vue-material/issues/2234) [#2236](https://github.com/vuematerial/vue-material/issues/2236) [#2165](https://github.com/vuematerial/vue-material/issues/2165) [#2202](https://github.com/vuematerial/vue-material/issues/2202) [#2075](https://github.com/vuematerial/vue-material/issues/2075) [#2245](https://github.com/vuematerial/vue-material/issues/2245) [#2203](https://github.com/vuematerial/vue-material/issues/2203) [#2108](https://github.com/vuematerial/vue-material/issues/2108) [#2078](https://github.com/vuematerial/vue-material/issues/2078) [#2255](https://github.com/vuematerial/vue-material/issues/2255) [#2256](https://github.com/vuematerial/vue-material/issues/2256) [#2263](https://github.com/vuematerial/vue-material/issues/2263) [#2265](https://github.com/vuematerial/vue-material/issues/2265)
* **MdDatePicker:** close datepicker on blur ([#2372](https://github.com/vuematerial/vue-material/issues/2372)) ([b074be6](https://github.com/vuematerial/vue-material/commit/b074be6)), closes [#2371](https://github.com/vuematerial/vue-material/issues/2371) [#2375](https://github.com/vuematerial/vue-material/issues/2375) [#2343](https://github.com/vuematerial/vue-material/issues/2343)
* **MdDatepicker:** remove in template ([#2314](https://github.com/vuematerial/vue-material/issues/2314)) ([6ddf96b](https://github.com/vuematerial/vue-material/commit/6ddf96b))
* **MdLayout:** subtract md-layout-large by 16 instead of 17 ([#1947](https://github.com/vuematerial/vue-material/issues/1947)) ([24b1160](https://github.com/vuematerial/vue-material/commit/24b1160))
* **node-sass:** update node-sass ([#2308](https://github.com/vuematerial/vue-material/issues/2308)) ([4de8608](https://github.com/vuematerial/vue-material/commit/4de8608))
* typo fixed in docs ([#2344](https://github.com/vuematerial/vue-material/issues/2344)) ([8be9430](https://github.com/vuematerial/vue-material/commit/8be9430))
### Features
* changed some broken links ([#2384](https://github.com/vuematerial/vue-material/issues/2384)) ([77aa59e](https://github.com/vuematerial/vue-material/commit/77aa59e))
<a name="1.0.0-beta-15"></a>
# [1.0.0-beta-15](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-14...v1.0.0-beta-15) (2020-08-13)
### Bug Fixes
* **components,doc:** fix the character counter not reseting when ([#2081](https://github.com/vuematerial/vue-material/issues/2081)) ([6b24539](https://github.com/vuematerial/vue-material/commit/6b24539)), closes [#2054](https://github.com/vuematerial/vue-material/issues/2054)
* **components,doc:** fix the character counter not reseting when ([#2213](https://github.com/vuematerial/vue-material/issues/2213)) ([5137908](https://github.com/vuematerial/vue-material/commit/5137908)), closes [#2054](https://github.com/vuematerial/vue-material/issues/2054)
* **MdDatepicker:** Pick text button (confirm and cancel) from locale configuration ([#2078](https://github.com/vuematerial/vue-material/issues/2078)) ([01e1124](https://github.com/vuematerial/vue-material/commit/01e1124))
* **MdDialog:** position centered ([6b46d96](https://github.com/vuematerial/vue-material/commit/6b46d96))
* **MdDialog:** revert ([d51649c](https://github.com/vuematerial/vue-material/commit/d51649c))
* **MdStep:** set tabindex for not active step ([#2215](https://github.com/vuematerial/vue-material/issues/2215)) ([17b0d20](https://github.com/vuematerial/vue-material/commit/17b0d20))
### Features
* active theme section move to navbar + code fund re-style ([#2225](https://github.com/vuematerial/vue-material/issues/2225)) ([a5d027b](https://github.com/vuematerial/vue-material/commit/a5d027b)), closes [#2063](https://github.com/vuematerial/vue-material/issues/2063) [#2062](https://github.com/vuematerial/vue-material/issues/2062) [#2082](https://github.com/vuematerial/vue-material/issues/2082) [#2139](https://github.com/vuematerial/vue-material/issues/2139) [#2145](https://github.com/vuematerial/vue-material/issues/2145) [#2150](https://github.com/vuematerial/vue-material/issues/2150) [#2153](https://github.com/vuematerial/vue-material/issues/2153) [#2164](https://github.com/vuematerial/vue-material/issues/2164) [#80](https://github.com/vuematerial/vue-material/issues/80) [#2181](https://github.com/vuematerial/vue-material/issues/2181) [#2100](https://github.com/vuematerial/vue-material/issues/2100) [#2080](https://github.com/vuematerial/vue-material/issues/2080) [#2117](https://github.com/vuematerial/vue-material/issues/2117) [#2198](https://github.com/vuematerial/vue-material/issues/2198) [#1819](https://github.com/vuematerial/vue-material/issues/1819) [#2064](https://github.com/vuematerial/vue-material/issues/2064) [#2178](https://github.com/vuematerial/vue-material/issues/2178) [#2201](https://github.com/vuematerial/vue-material/issues/2201) [#1929](https://github.com/vuematerial/vue-material/issues/1929) [#2023](https://github.com/vuematerial/vue-material/issues/2023) [#2021](https://github.com/vuematerial/vue-material/issues/2021) [#2065](https://github.com/vuematerial/vue-material/issues/2065) [#1957](https://github.com/vuematerial/vue-material/issues/1957) [#1967](https://github.com/vuematerial/vue-material/issues/1967) [#2081](https://github.com/vuematerial/vue-material/issues/2081) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2091](https://github.com/vuematerial/vue-material/issues/2091) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2183](https://github.com/vuematerial/vue-material/issues/2183) [#2189](https://github.com/vuematerial/vue-material/issues/2189) [#2211](https://github.com/vuematerial/vue-material/issues/2211) [#2215](https://github.com/vuematerial/vue-material/issues/2215) [#2213](https://github.com/vuematerial/vue-material/issues/2213) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2212](https://github.com/vuematerial/vue-material/issues/2212) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2220](https://github.com/vuematerial/vue-material/issues/2220) [#2214](https://github.com/vuematerial/vue-material/issues/2214) [#2224](https://github.com/vuematerial/vue-material/issues/2224)
* add contributors ([#2235](https://github.com/vuematerial/vue-material/issues/2235)) ([14efbd6](https://github.com/vuematerial/vue-material/commit/14efbd6)), closes [#2063](https://github.com/vuematerial/vue-material/issues/2063) [#2062](https://github.com/vuematerial/vue-material/issues/2062) [#2082](https://github.com/vuematerial/vue-material/issues/2082) [#2139](https://github.com/vuematerial/vue-material/issues/2139) [#2145](https://github.com/vuematerial/vue-material/issues/2145) [#2150](https://github.com/vuematerial/vue-material/issues/2150) [#2153](https://github.com/vuematerial/vue-material/issues/2153) [#2164](https://github.com/vuematerial/vue-material/issues/2164) [#80](https://github.com/vuematerial/vue-material/issues/80) [#2181](https://github.com/vuematerial/vue-material/issues/2181) [#2100](https://github.com/vuematerial/vue-material/issues/2100) [#2080](https://github.com/vuematerial/vue-material/issues/2080) [#2117](https://github.com/vuematerial/vue-material/issues/2117) [#2198](https://github.com/vuematerial/vue-material/issues/2198) [#1819](https://github.com/vuematerial/vue-material/issues/1819) [#2064](https://github.com/vuematerial/vue-material/issues/2064) [#2178](https://github.com/vuematerial/vue-material/issues/2178) [#2201](https://github.com/vuematerial/vue-material/issues/2201) [#1929](https://github.com/vuematerial/vue-material/issues/1929) [#2023](https://github.com/vuematerial/vue-material/issues/2023) [#2021](https://github.com/vuematerial/vue-material/issues/2021) [#2065](https://github.com/vuematerial/vue-material/issues/2065) [#1957](https://github.com/vuematerial/vue-material/issues/1957) [#1967](https://github.com/vuematerial/vue-material/issues/1967) [#2081](https://github.com/vuematerial/vue-material/issues/2081) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2091](https://github.com/vuematerial/vue-material/issues/2091) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2183](https://github.com/vuematerial/vue-material/issues/2183) [#2189](https://github.com/vuematerial/vue-material/issues/2189) [#2211](https://github.com/vuematerial/vue-material/issues/2211) [#2215](https://github.com/vuematerial/vue-material/issues/2215) [#2213](https://github.com/vuematerial/vue-material/issues/2213) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2212](https://github.com/vuematerial/vue-material/issues/2212) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2220](https://github.com/vuematerial/vue-material/issues/2220) [#2214](https://github.com/vuematerial/vue-material/issues/2214) [#2224](https://github.com/vuematerial/vue-material/issues/2224) [#2226](https://github.com/vuematerial/vue-material/issues/2226) [#2228](https://github.com/vuematerial/vue-material/issues/2228) [#2234](https://github.com/vuematerial/vue-material/issues/2234)
<a name="1.0.0-beta-13"></a>
# [1.0.0-beta-13](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-12...v1.0.0-beta-13) (2020-04-30)
### Bug Fixes
* Drawer detection ([#1929](https://github.com/vuematerial/vue-material/issues/1929)) ([3aefccb](https://github.com/vuematerial/vue-material/commit/3aefccb))
* **MdApp:** remove height 100 to make md-app-content span content height ([#1957](https://github.com/vuematerial/vue-material/issues/1957)) ([94fb4a8](https://github.com/vuematerial/vue-material/commit/94fb4a8))
<a name="1.0.0-beta-12"></a>
# [1.0.0-beta-12](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-11...v1.0.0-beta-12) (2020-04-21)
### Bug Fixes
* **MdMenu:** unexpected close on item click ([#2062](https://github.com/vuematerial/vue-material/issues/2062)) ([c274693](https://github.com/vuematerial/vue-material/commit/c274693))
* **MdRadio:** internal radio not being checked ([#2063](https://github.com/vuematerial/vue-material/issues/2063)) ([a9feb6f](https://github.com/vuematerial/vue-material/commit/a9feb6f))
<a name="1.0.0-beta-14"></a>
# [1.0.0-beta-14](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-13...v1.0.0-beta-14) (2020-05-27)
<a name="1.0.0-beta-13"></a>
# [1.0.0-beta-13](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-12...v1.0.0-beta-13) (2020-04-30)
### Bug Fixes
* Drawer detection ([#1929](https://github.com/vuematerial/vue-material/issues/1929)) ([3aefccb](https://github.com/vuematerial/vue-material/commit/3aefccb))
* **MdApp:** remove height 100 to make md-app-content span content height ([#1957](https://github.com/vuematerial/vue-material/issues/1957)) ([94fb4a8](https://github.com/vuematerial/vue-material/commit/94fb4a8))
<a name="1.0.0-beta-12"></a>
# [1.0.0-beta-12](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-11...v1.0.0-beta-12) (2020-04-21)
### Bug Fixes
* **MdMenu:** unexpected close on item click ([#2062](https://github.com/vuematerial/vue-material/issues/2062)) ([c274693](https://github.com/vuematerial/vue-material/commit/c274693))
* **MdRadio:** internal radio not being checked ([#2063](https://github.com/vuematerial/vue-material/issues/2063)) ([a9feb6f](https://github.com/vuematerial/vue-material/commit/a9feb6f))
<a name="1.0.0-beta-11"></a>
# [1.0.0-beta-11](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.2...v1.0.0-beta-11) (2019-05-12)
### Bug Fixes
* fix the repeated generated css theme classes if there is multiple themes defined ([#1784](https://github.com/vuematerial/vue-material/issues/1784)) ([2922afa](https://github.com/vuematerial/vue-material/commit/2922afa))
* **MdApp:** child.data.attrs is undefined ([#1762](https://github.com/vuematerial/vue-material/issues/1762)) ([ffee13d](https://github.com/vuematerial/vue-material/commit/ffee13d)), closes [#1741](https://github.com/vuematerial/vue-material/issues/1741)
* **MdApp:** fix drawer slot ([#1845](https://github.com/vuematerial/vue-material/issues/1845)) ([e6a967b](https://github.com/vuematerial/vue-material/commit/e6a967b))
* **MdApp:** normalized component's tag before checking to match slot … ([#1994](https://github.com/vuematerial/vue-material/issues/1994)) ([05b4744](https://github.com/vuematerial/vue-material/commit/05b4744))
* **MdAutocomplete:** fix option selecting ([#1765](https://github.com/vuematerial/vue-material/issues/1765)) ([24e63ba](https://github.com/vuematerial/vue-material/commit/24e63ba))
* MdBadge do not accept color [#1854](https://github.com/vuematerial/vue-material/issues/1854) issue ([#1856](https://github.com/vuematerial/vue-material/issues/1856)) ([87cf617](https://github.com/vuematerial/vue-material/commit/87cf617))
* **MdButton:** adjust spacing for multiple toolbar buttons ([#1750](https://github.com/vuematerial/vue-material/issues/1750)) ([84cdb90](https://github.com/vuematerial/vue-material/commit/84cdb90))
* **MdDatepicker:** positioning when used inside flex container ([#2036](https://github.com/vuematerial/vue-material/issues/2036)) ([67677a2](https://github.com/vuematerial/vue-material/commit/67677a2))
* **MdDialogContent:** missing theme class ([#1876](https://github.com/vuematerial/vue-material/issues/1876)) ([6ca54cf](https://github.com/vuematerial/vue-material/commit/6ca54cf))
* **MdField:** remove firefox required box-shadow ([3ff295f](https://github.com/vuematerial/vue-material/commit/3ff295f))
* **MdFile:** disabled icon ([#1787](https://github.com/vuematerial/vue-material/issues/1787)) ([21d7e67](https://github.com/vuematerial/vue-material/commit/21d7e67)), closes [#1782](https://github.com/vuematerial/vue-material/issues/1782)
* **MdFile:** infinite focus loop ([04a4751](https://github.com/vuematerial/vue-material/commit/04a4751))
* **MdInput:** invert password on-off icons ([#2008](https://github.com/vuematerial/vue-material/issues/2008)) ([3e9dfa2](https://github.com/vuematerial/vue-material/commit/3e9dfa2))
* **MdListItem:** allow multiple actions ([#1760](https://github.com/vuematerial/vue-material/issues/1760)) ([714ee9f](https://github.com/vuematerial/vue-material/commit/714ee9f))
* **MdListItem:** expand content cursor style and hover ([#1808](https://github.com/vuematerial/vue-material/issues/1808)) ([739cefa](https://github.com/vuematerial/vue-material/commit/739cefa)), closes [#1643](https://github.com/vuematerial/vue-material/issues/1643)
* **MdListItem:** reduce function complexity ([#1853](https://github.com/vuematerial/vue-material/issues/1853)) ([b09777b](https://github.com/vuematerial/vue-material/commit/b09777b))
* **MdMenuContent:** destroy keydown listener on Esc ([#1766](https://github.com/vuematerial/vue-material/issues/1766)) ([e460e58](https://github.com/vuematerial/vue-material/commit/e460e58))
* **MdProgressSpinner:** fix CSP error ([#1850](https://github.com/vuematerial/vue-material/issues/1850)) ([96d3d8d](https://github.com/vuematerial/vue-material/commit/96d3d8d))
* **MdProgressSpinner:** improve transition ([#1946](https://github.com/vuematerial/vue-material/issues/1946)) ([0e62ae7](https://github.com/vuematerial/vue-material/commit/0e62ae7))
* **MdRipple:** fixed missing ripple effect ([#2059](https://github.com/vuematerial/vue-material/issues/2059)) ([b799671](https://github.com/vuematerial/vue-material/commit/b799671))
* **MdRouterLink:** new router-link registration name ([#1978](https://github.com/vuematerial/vue-material/issues/1978)) ([b1dff40](https://github.com/vuematerial/vue-material/commit/b1dff40))
* **MdSelect:** add missing `this` for calling isLocalValueSet function ([7a690ba](https://github.com/vuematerial/vue-material/commit/7a690ba))
* **MdSelect:** infinite loop error, when no v-model provided ([#2035](https://github.com/vuematerial/vue-material/issues/2035)) ([1d6eced](https://github.com/vuematerial/vue-material/commit/1d6eced))
* **MdSelect:** selected event before mounted ([946ea32](https://github.com/vuematerial/vue-material/commit/946ea32)), closes [#1781](https://github.com/vuematerial/vue-material/issues/1781)
* **MdSnackbar:** add "persistent" argument to createPromise() ([c7e8df8](https://github.com/vuematerial/vue-material/commit/c7e8df8))
* **MdSvgLoader:** svg loader for invalid / missing mimetype ([#1942](https://github.com/vuematerial/vue-material/issues/1942)) ([4fa84a4](https://github.com/vuematerial/vue-material/commit/4fa84a4))
* **MdTable:** add support for index in table row ([#2026](https://github.com/vuematerial/vue-material/issues/2026)) ([f1b65ea](https://github.com/vuematerial/vue-material/commit/f1b65ea))
* **MdTableHead:** sort indicator position when there is only one column ([#1743](https://github.com/vuematerial/vue-material/issues/1743)) ([12f0a40](https://github.com/vuematerial/vue-material/commit/12f0a40))
* **MdTable:** nextTick selection data ([#1874](https://github.com/vuematerial/vue-material/issues/1874)) ([6fbdd21](https://github.com/vuematerial/vue-material/commit/6fbdd21)), closes [#1866](https://github.com/vuematerial/vue-material/issues/1866) [#2](https://github.com/vuematerial/vue-material/issues/2)
* **MdTable:** provide value mutation ([#1789](https://github.com/vuematerial/vue-material/issues/1789)) ([ae38547](https://github.com/vuematerial/vue-material/commit/ae38547)), closes [#1786](https://github.com/vuematerial/vue-material/issues/1786)
* **MdTable:** recalculate fixed header width on data changes ([#1877](https://github.com/vuematerial/vue-material/issues/1877)) ([2b675c9](https://github.com/vuematerial/vue-material/commit/2b675c9))
* **MdTable:** revert asc direction ([#1776](https://github.com/vuematerial/vue-material/issues/1776)) ([0f82ace](https://github.com/vuematerial/vue-material/commit/0f82ace))
* **MdTable:** sort on created ([#1775](https://github.com/vuematerial/vue-material/issues/1775)) ([bd1e14b](https://github.com/vuematerial/vue-material/commit/bd1e14b)), closes [#1774](https://github.com/vuematerial/vue-material/issues/1774)
* **MdTable:** undefined table sorting [#1906](https://github.com/vuematerial/vue-material/issues/1906) ([#2012](https://github.com/vuematerial/vue-material/issues/2012)) ([5d54da5](https://github.com/vuematerial/vue-material/commit/5d54da5))
* **MdTabs:** repeat import in all.scss #TimRChen ([#1848](https://github.com/vuematerial/vue-material/issues/1848)) ([2edc13c](https://github.com/vuematerial/vue-material/commit/2edc13c))
* **MdTabs:** setupObservers on mounted immediately ([#1770](https://github.com/vuematerial/vue-material/issues/1770)) ([d8dc038](https://github.com/vuematerial/vue-material/commit/d8dc038)), closes [#1768](https://github.com/vuematerial/vue-material/issues/1768)
* **MdTextarea:** resize anywhen localValue changed ([#1841](https://github.com/vuematerial/vue-material/issues/1841)) ([d81922a](https://github.com/vuematerial/vue-material/commit/d81922a)), closes [#1833](https://github.com/vuematerial/vue-material/issues/1833)
### Code Refactoring
* **MdDatepicker:** Better flow ([#1698](https://github.com/vuematerial/vue-material/issues/1698)) ([8a438ae](https://github.com/vuematerial/vue-material/commit/8a438ae)), closes [#1689](https://github.com/vuematerial/vue-material/issues/1689)
### Features
* add swipeable functionality ([#1618](https://github.com/vuematerial/vue-material/issues/1618)) ([4bed8cc](https://github.com/vuematerial/vue-material/commit/4bed8cc))
* disable complexity rules for some methods ([fb57db4](https://github.com/vuematerial/vue-material/commit/fb57db4))
* **MdCardExpandContent:** reactive content ([#1799](https://github.com/vuematerial/vue-material/issues/1799)) ([c3f6eb0](https://github.com/vuematerial/vue-material/commit/c3f6eb0)), closes [#1795](https://github.com/vuematerial/vue-material/issues/1795)
* **MdRadio:** object support ([#1771](https://github.com/vuematerial/vue-material/issues/1771)) ([8670933](https://github.com/vuematerial/vue-material/commit/8670933)), closes [#1753](https://github.com/vuematerial/vue-material/issues/1753)
* router link components improvements ([#1651](https://github.com/vuematerial/vue-material/issues/1651)) ([fee1503](https://github.com/vuematerial/vue-material/commit/fee1503)), closes [#1644](https://github.com/vuematerial/vue-material/issues/1644)
### BREAKING CHANGES
* **MdDatepicker:** upgrade date-fns to 2.0.0-alpha.7
<a name="1.0.0-beta-10.2"></a>
# [1.0.0-beta-10.2](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.1...v1.0.0-beta-10.2) (2018-05-15)
### Bug Fixes
* **MdApp:** fix typo ([#1728](https://github.com/vuematerial/vue-material/issues/1728)) ([8bdbaf3](https://github.com/vuematerial/vue-material/commit/8bdbaf3)), closes [#1727](https://github.com/vuematerial/vue-material/issues/1727)
* **MdTable:** fix table rendering default slot twice ([#1731](https://github.com/vuematerial/vue-material/issues/1731)) ([3c61bcf](https://github.com/vuematerial/vue-material/commit/3c61bcf))
<a name="1.0.0-beta-10.1"></a>
# [1.0.0-beta-10.1](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10...v1.0.0-beta-10.1) (2018-05-13)
<a name="1.0.0-beta-9"></a>
# [1.0.0-beta-9](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-8...v1.0.0-beta-9) (2018-05-13)
<a name="1.0.0-beta-10"></a>
# [1.0.0-beta-10](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-9...v1.0.0-beta-10) (2018-05-13)
<a name="1.0.0-beta-9"></a>
# [1.0.0-beta-9](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-8...v1.0.0-beta-9) (2018-05-13)
### Bug Fixes
* build script ([0b4ffc3](https://github.com/vuematerial/vue-material/commit/0b4ffc3))
* constructor name support for IE11 ([95614b6](https://github.com/vuematerial/vue-material/commit/95614b6))
* **Core:** inject SassScript value to CSS variables to fix libsass 3.5.0 ([#1620](https://github.com/vuematerial/vue-material/issues/1620)) ([4f180f6](https://github.com/vuematerial/vue-material/commit/4f180f6)), closes [/sass-lang.com/documentation/file.SASS_CHANGELOG.html#3_5_0__12_July_2017](https://github.com//sass-lang.com/documentation/file.SASS_CHANGELOG.html/issues/3_5_0__12_July_2017) [#1619](https://github.com/vuematerial/vue-material/issues/1619)
* ios devices do not trigger click events on 'non-clickable' elements ([#1634](https://github.com/vuematerial/vue-material/issues/1634)) ([63b8ac0](https://github.com/vuematerial/vue-material/commit/63b8ac0)), closes [#1503](https://github.com/vuematerial/vue-material/issues/1503)
* make dev env works ([a8e3978](https://github.com/vuematerial/vue-material/commit/a8e3978))
* **MdApp:** right drawer, fully reactive ([#1493](https://github.com/vuematerial/vue-material/issues/1493)) ([3ac16c7](https://github.com/vuematerial/vue-material/commit/3ac16c7)), closes [#1204](https://github.com/vuematerial/vue-material/issues/1204)
* **MdBadge:** custom class and style supported ([#1676](https://github.com/vuematerial/vue-material/issues/1676)) ([71b7afa](https://github.com/vuematerial/vue-material/commit/71b7afa))
* **MdBottomBarItem:** missing props to for router link ([#1531](https://github.com/vuematerial/vue-material/issues/1531)) ([6860d3a](https://github.com/vuematerial/vue-material/commit/6860d3a)), closes [#1412](https://github.com/vuematerial/vue-material/issues/1412)
* **MdButton:** change type of mdRippleActive prop to null to support SSR ([baf6a14](https://github.com/vuematerial/vue-material/commit/baf6a14))
* **MdButton:** fab-bottom-center style ([#1724](https://github.com/vuematerial/vue-material/issues/1724)) ([d1b296e](https://github.com/vuematerial/vue-material/commit/d1b296e)), closes [#1722](https://github.com/vuematerial/vue-material/issues/1722)
* **MdButton:** fix events when ripple is on ([#1532](https://github.com/vuematerial/vue-material/issues/1532)) ([e7f8f34](https://github.com/vuematerial/vue-material/commit/e7f8f34))
* **MdButton:** Ripple for firefox ([#1468](https://github.com/vuematerial/vue-material/issues/1468)) ([156506b](https://github.com/vuematerial/vue-material/commit/156506b)), closes [#1461](https://github.com/vuematerial/vue-material/issues/1461)
* **MdCard:** prevent showing scrollbars ([#1580](https://github.com/vuematerial/vue-material/issues/1580)) ([dc7892e](https://github.com/vuematerial/vue-material/commit/dc7892e))
* **MdChips:** improve alignment with other regular fields like md-input ([ce7e075](https://github.com/vuematerial/vue-material/commit/ce7e075))
* **MdCore:** remove all async/await from codebase ([5c3c208](https://github.com/vuematerial/vue-material/commit/5c3c208))
* **MdDialog:** remove md-primary from MdDialogConfirm's cancel button ([#1633](https://github.com/vuematerial/vue-material/issues/1633)) ([e125c0d](https://github.com/vuematerial/vue-material/commit/e125c0d)), closes [#1622](https://github.com/vuematerial/vue-material/issues/1622)
* **MdField:** fix font size for safari ([#1476](https://github.com/vuematerial/vue-material/issues/1476)) ([679f3d6](https://github.com/vuematerial/vue-material/commit/679f3d6))
* **MdField:** fix textarea and inline alignments ([#1646](https://github.com/vuematerial/vue-material/issues/1646)) ([dbeb7e9](https://github.com/vuematerial/vue-material/commit/dbeb7e9))
* **MdFile:** empty statement ([#1716](https://github.com/vuematerial/vue-material/issues/1716)) ([ae10127](https://github.com/vuematerial/vue-material/commit/ae10127)), closes [#1711](https://github.com/vuematerial/vue-material/issues/1711)
* **MdLayout:** remove breakpoint margins ([#1457](https://github.com/vuematerial/vue-material/issues/1457)) ([c568fe3](https://github.com/vuematerial/vue-material/commit/c568fe3))
* **MdMenu:** fix vertical alignment for menu items in IE ([#1615](https://github.com/vuematerial/vue-material/issues/1615)) ([5d3dfcf](https://github.com/vuematerial/vue-material/commit/5d3dfcf))
* **MdMenuItem:** fix router ([#1474](https://github.com/vuematerial/vue-material/issues/1474)) ([eb6c8df](https://github.com/vuematerial/vue-material/commit/eb6c8df)), closes [#1471](https://github.com/vuematerial/vue-material/issues/1471)
* **MdMenu:** preventDefault only for specific keys ([7c10a09](https://github.com/vuematerial/vue-material/commit/7c10a09))
* **MdProgressBar:** query style ([#1683](https://github.com/vuematerial/vue-material/issues/1683)) ([48453a1](https://github.com/vuematerial/vue-material/commit/48453a1)), closes [#1682](https://github.com/vuematerial/vue-material/issues/1682)
* **MdRipple:** clear immediately ([#1506](https://github.com/vuematerial/vue-material/issues/1506)) ([d52954a](https://github.com/vuematerial/vue-material/commit/d52954a))
* **MdSelect:** adjust position when body has margin ([#1551](https://github.com/vuematerial/vue-material/issues/1551)) ([c820b72](https://github.com/vuematerial/vue-material/commit/c820b72))
* **MdSelect:** dropdown icon align with input on botton line variant ([#1600](https://github.com/vuematerial/vue-material/issues/1600)) ([5c30f73](https://github.com/vuematerial/vue-material/commit/5c30f73))
* **MdSelect:** fix select position under md-dialog ([#1525](https://github.com/vuematerial/vue-material/issues/1525)) ([f7990c5](https://github.com/vuematerial/vue-material/commit/f7990c5)), closes [#1149](https://github.com/vuematerial/vue-material/issues/1149)
* **MdSelect:** pass props id and name as pure html attributes ([#1583](https://github.com/vuematerial/vue-material/issues/1583)) ([9fde310](https://github.com/vuematerial/vue-material/commit/9fde310))
* **MdSelect:** update the text if options are updated ([#1481](https://github.com/vuematerial/vue-material/issues/1481)) ([042e571](https://github.com/vuematerial/vue-material/commit/042e571)), closes [#1389](https://github.com/vuematerial/vue-material/issues/1389)
* **MdSteppers:** zero height in IE ([#1664](https://github.com/vuematerial/vue-material/issues/1664)) ([665732c](https://github.com/vuematerial/vue-material/commit/665732c))
* **MdTable:** emit selected/update event only when selected items really changed ([#1585](https://github.com/vuematerial/vue-material/issues/1585)) ([a591144](https://github.com/vuematerial/vue-material/commit/a591144)), closes [#1559](https://github.com/vuematerial/vue-material/issues/1559)
* **MdTable:** fix value condition for slot ([af0b89c](https://github.com/vuematerial/vue-material/commit/af0b89c))
* **MdTable:** make fixed header follow the horizontal scroll ([#1575](https://github.com/vuematerial/vue-material/issues/1575)) ([b14aac3](https://github.com/vuematerial/vue-material/commit/b14aac3))
* **MdTable:** reactive selection ([#1674](https://github.com/vuematerial/vue-material/issues/1674)) ([ddee303](https://github.com/vuematerial/vue-material/commit/ddee303)), closes [#1348](https://github.com/vuematerial/vue-material/issues/1348)
* **MdTableRow:** removeSelectableItem when empty ([#1616](https://github.com/vuematerial/vue-material/issues/1616)) ([6d787bd](https://github.com/vuematerial/vue-material/commit/6d787bd)), closes [#1610](https://github.com/vuematerial/vue-material/issues/1610)
* **MdTableRow:** update selectableItem while `mdItem` changed ([#1496](https://github.com/vuematerial/vue-material/issues/1496)) ([30c2f80](https://github.com/vuematerial/vue-material/commit/30c2f80)), closes [#1492](https://github.com/vuematerial/vue-material/issues/1492)
* **MdTabs:** correct indicator position on transition end ([#1467](https://github.com/vuematerial/vue-material/issues/1467)) ([bc3b611](https://github.com/vuematerial/vue-material/commit/bc3b611)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** remove ResizeObserver to improve the size and position calculation ([#1552](https://github.com/vuematerial/vue-material/issues/1552)) ([ef0cd2f](https://github.com/vuematerial/vue-material/commit/ef0cd2f))
* **MdTabs:** transparent content ([#1725](https://github.com/vuematerial/vue-material/issues/1725)) ([a4e3619](https://github.com/vuematerial/vue-material/commit/a4e3619)), closes [#1713](https://github.com/vuematerial/vue-material/issues/1713)
### Components
* **MdBadge:** new md-badge component ([#1465](https://github.com/vuematerial/vue-material/issues/1465)) ([3c60a38](https://github.com/vuematerial/vue-material/commit/3c60a38))
### Features
* **MdBadge:** add prop validation ([a53aff6](https://github.com/vuematerial/vue-material/commit/a53aff6))
* **MdCheckbox:** add `indeterminate` variant ([#1597](https://github.com/vuematerial/vue-material/issues/1597)) ([e373857](https://github.com/vuematerial/vue-material/commit/e373857))
* **MdCheckbox:** add object to possible checkbox value ([#1556](https://github.com/vuematerial/vue-material/issues/1556)) ([05821e2](https://github.com/vuematerial/vue-material/commit/05821e2))
* **MdCheckBox:** True / false value supporting ([#1703](https://github.com/vuematerial/vue-material/issues/1703)) ([7cdcb66](https://github.com/vuematerial/vue-material/commit/7cdcb66)), closes [#1701](https://github.com/vuematerial/vue-material/issues/1701)
* **MdChips:** Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([c502a16](https://github.com/vuematerial/vue-material/commit/c502a16))
* **MdDatepicker:** add close and open events ([#1577](https://github.com/vuematerial/vue-material/issues/1577)) ([5cb9b7b](https://github.com/vuematerial/vue-material/commit/5cb9b7b))
* **MdDatepicker:** add immediately option ([#1607](https://github.com/vuematerial/vue-material/issues/1607)) ([f62ec6a](https://github.com/vuematerial/vue-material/commit/f62ec6a)), closes [#1606](https://github.com/vuematerial/vue-material/issues/1606)
* **MdDatepicker:** Debounce the conversion into a date object ([#1666](https://github.com/vuematerial/vue-material/issues/1666)) ([a47ebe1](https://github.com/vuematerial/vue-material/commit/a47ebe1))
* **MdDialog:** add emit event when clicked outside of dialog ([#1567](https://github.com/vuematerial/vue-material/issues/1567)) ([b19f6f0](https://github.com/vuematerial/vue-material/commit/b19f6f0))
* **MdField:** add [@md](https://github.com/md)-clear event ([#1635](https://github.com/vuematerial/vue-material/issues/1635)) ([6ef5235](https://github.com/vuematerial/vue-material/commit/6ef5235))
* **MdField:** add prefixes and suffixes ([#1592](https://github.com/vuematerial/vue-material/issues/1592)) ([a30d84c](https://github.com/vuematerial/vue-material/commit/a30d84c))
* **MdField:** new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([f2347f1](https://github.com/vuematerial/vue-material/commit/f2347f1))
* **MdFile:** Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([fbf6d2a](https://github.com/vuematerial/vue-material/commit/fbf6d2a))
* **MdList:** expand only one option ([#1645](https://github.com/vuematerial/vue-material/issues/1645)) ([09b8573](https://github.com/vuematerial/vue-material/commit/09b8573)), closes [#1641](https://github.com/vuematerial/vue-material/issues/1641)
* **MdListItemExpand:** add expanded and collapsed events ([#1495](https://github.com/vuematerial/vue-material/issues/1495)) ([11c2785](https://github.com/vuematerial/vue-material/commit/11c2785)), closes [#1490](https://github.com/vuematerial/vue-material/issues/1490)
* **MdMenu:** new props mdCloseOnClick ([#1630](https://github.com/vuematerial/vue-material/issues/1630)) ([ecf5cb7](https://github.com/vuematerial/vue-material/commit/ecf5cb7))
* **MdSnackbar:** keep alive if its persistent ([#1561](https://github.com/vuematerial/vue-material/issues/1561)) ([33007b4](https://github.com/vuematerial/vue-material/commit/33007b4))
* **MdTable:** allow 2D array as the model value ([#1477](https://github.com/vuematerial/vue-material/issues/1477)) ([aed487a](https://github.com/vuematerial/vue-material/commit/aed487a))
* **MdTable:** allow custom value for mdHeight ([#1522](https://github.com/vuematerial/vue-material/issues/1522)) ([c63b757](https://github.com/vuematerial/vue-material/commit/c63b757))
* **MdTableCell:** add `md-id` prop ([#1584](https://github.com/vuematerial/vue-material/issues/1584)) ([7e7249a](https://github.com/vuematerial/vue-material/commit/7e7249a))
### Performance Improvements
* move universal selector from html tag ([#1652](https://github.com/vuematerial/vue-material/issues/1652)) ([2340eae](https://github.com/vuematerial/vue-material/commit/2340eae))
### Reverts
* new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([ff0a5bf](https://github.com/vuematerial/vue-material/commit/ff0a5bf))
* Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([e1bfad0](https://github.com/vuematerial/vue-material/commit/e1bfad0))
* Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([5b8e0fe](https://github.com/vuematerial/vue-material/commit/5b8e0fe))
### BREAKING CHANGES
* **MdApp:** Replace useless props `mdLeft` with `!this.mdRight`
* **MdApp:** no more than one drawer in a MdApp
* fix(MdDrawerRightPrevious): right drawer styles
use an previous element for styling container with right drawer with similar css codes
* fix(MdDrawer): Temporary style
* fix(MdAppSideDrawer): correct component name
* fix(MdApp): reactive persistent drawer
fully reactive drawer
* **MdCheckBox:** checkbox without setting value is true / false as default
<a name="1.0.0-beta-8"></a>
# [1.0.0-beta-8](https://github.com/vuematerial/vue-material/compare/4521af6...v1.0.0-beta-8) (2018-01-29)
### Bug Fixes
* add beta flag ([bd96842](https://github.com/vuematerial/vue-material/commit/bd96842))
* add jest-vue to replace jest-vue-preprocessor ([505627c](https://github.com/vuematerial/vue-material/commit/505627c))
* change broken image ([0868406](https://github.com/vuematerial/vue-material/commit/0868406))
* change default fab color to accent ([5893895](https://github.com/vuematerial/vue-material/commit/5893895))
* fix splash not changing the colors properly ([94f9d92](https://github.com/vuematerial/vue-material/commit/94f9d92))
* getting startet with wrong javascript markup ([7914eb8](https://github.com/vuematerial/vue-material/commit/7914eb8))
* getting startet with wrong javascript markup ([73360f8](https://github.com/vuematerial/vue-material/commit/73360f8))
* make checkbo and radio to work with disabled attribute ([88d7755](https://github.com/vuematerial/vue-material/commit/88d7755))
* make field to have an required indicator ([facbea8](https://github.com/vuematerial/vue-material/commit/facbea8))
* make input id unique per instance ([981d281](https://github.com/vuematerial/vue-material/commit/981d281))
* make meta colors off by default and add an option to enable it ([c67a1c0](https://github.com/vuematerial/vue-material/commit/c67a1c0))
* **MdApp:** create card inside overlap mode ([607143f](https://github.com/vuematerial/vue-material/commit/607143f))
* **MdApp:** fix fixed-last not revealing the first row after scroll up ([bad65a2](https://github.com/vuematerial/vue-material/commit/bad65a2))
* **MdApp:** fix persistent drawer not pushing the content ([0388d84](https://github.com/vuematerial/vue-material/commit/0388d84))
* **MdApp:** fix persistent drawer not pushing the content ([7d86e8c](https://github.com/vuematerial/vue-material/commit/7d86e8c))
* **MdApp:** fix reveal scroll flickering after 1px scroll ([2fb232e](https://github.com/vuematerial/vue-material/commit/2fb232e))
* **MdApp:** fix reveal scroll not being updated ([6ed4522](https://github.com/vuematerial/vue-material/commit/6ed4522))
* **MdApp:** fix styles after ssr support ([27e9e7d](https://github.com/vuematerial/vue-material/commit/27e9e7d))
* **MdApp:** prevent md-app withou children to raise an error ([5b71335](https://github.com/vuematerial/vue-material/commit/5b71335))
* **MdAutocomplete:** fix input emit when cleared ([#1295](https://github.com/vuematerial/vue-material/issues/1295)) ([8a055e8](https://github.com/vuematerial/vue-material/commit/8a055e8))
* **MdAutocomplete:** prevent show options twice ([#1410](https://github.com/vuematerial/vue-material/issues/1410)) ([6a719b5](https://github.com/vuematerial/vue-material/commit/6a719b5)), closes [#1408](https://github.com/vuematerial/vue-material/issues/1408)
* **MdAutocomplete:** sync v-model with search term ([#1218](https://github.com/vuematerial/vue-material/issues/1218)) ([e9bb62e](https://github.com/vuematerial/vue-material/commit/e9bb62e)), closes [#1215](https://github.com/vuematerial/vue-material/issues/1215)
* **MdBottomBar:** avoid class colisions ([fe916d3](https://github.com/vuematerial/vue-material/commit/fe916d3))
* **MdButton:** add full support for router-link ([6353774](https://github.com/vuematerial/vue-material/commit/6353774))
* **MdButton:** create better detection of router-link to support hmr ([2db10a6](https://github.com/vuematerial/vue-material/commit/2db10a6))
* **MdButton:** file not being recognized by GitHub fs ([920817c](https://github.com/vuematerial/vue-material/commit/920817c))
* **MdButton:** force MdRipple to be added when using MdButton alone ([9b59a9f](https://github.com/vuematerial/vue-material/commit/9b59a9f))
* **MdButton:** read all router link properties and bind to button props ([271f059](https://github.com/vuematerial/vue-material/commit/271f059))
* **MdCard:** fix some theme errors and glitches ([7c47cca](https://github.com/vuematerial/vue-material/commit/7c47cca))
* **MdCheckbox:** typo ([ca0c2a4](https://github.com/vuematerial/vue-material/commit/ca0c2a4))
* **MdChips:** fix issues ([#1159](https://github.com/vuematerial/vue-material/issues/1159)) ([dc428dd](https://github.com/vuematerial/vue-material/commit/dc428dd))
* **MdChips:** add labels for static chips ([#1329](https://github.com/vuematerial/vue-material/issues/1329)) ([b7094cb](https://github.com/vuematerial/vue-material/commit/b7094cb)), closes [#1327](https://github.com/vuematerial/vue-material/issues/1327)
* **MdChips:** make chip allow spaces ([#1211](https://github.com/vuematerial/vue-material/issues/1211)) ([0030083](https://github.com/vuematerial/vue-material/commit/0030083)), closes [#1207](https://github.com/vuematerial/vue-material/issues/1207)
* **MdCore:** prop validator message now uses Vue.util.warn ([c76a630](https://github.com/vuematerial/vue-material/commit/c76a630))
* **MdDatepicker:** avoid warning for duplicated keys ([#1379](https://github.com/vuematerial/vue-material/issues/1379)) ([70712d7](https://github.com/vuematerial/vue-material/commit/70712d7))
* **MdDatepicker:** show today if date is not selected ([#1214](https://github.com/vuematerial/vue-material/issues/1214)) ([ac76cd7](https://github.com/vuematerial/vue-material/commit/ac76cd7)), closes [#1200](https://github.com/vuematerial/vue-material/issues/1200)
* **MdDialog:** IE not rendering Dialogs ([#1356](https://github.com/vuematerial/vue-material/issues/1356)) ([8115f32](https://github.com/vuematerial/vue-material/commit/8115f32))
* **MdDialog:** make prompt dialogs to work with v-model ([9daa006](https://github.com/vuematerial/vue-material/commit/9daa006))
* **MdDivider:** create divider as <li> tag when direct inside lists ([d807367](https://github.com/vuematerial/vue-material/commit/d807367))
* **MdDrawer:** always enforce drawers as array ([3758794](https://github.com/vuematerial/vue-material/commit/3758794))
* **MdDrawer:** revert old behavior for persistent ([cb242c7](https://github.com/vuematerial/vue-material/commit/cb242c7))
* **MdField:** Consider number `0` as hasValue ([#1407](https://github.com/vuematerial/vue-material/issues/1407)) ([d026496](https://github.com/vuematerial/vue-material/commit/d026496)), closes [#1406](https://github.com/vuematerial/vue-material/issues/1406)
* **MdField:** disable clear button while field is disabled ([#1326](https://github.com/vuematerial/vue-material/issues/1326)) ([03a9425](https://github.com/vuematerial/vue-material/commit/03a9425)), closes [#1321](https://github.com/vuematerial/vue-material/issues/1321)
* **MdField:** improve error states and input reset ([1a389b0](https://github.com/vuematerial/vue-material/commit/1a389b0))
* **MdField:** improve icon position ([38245ae](https://github.com/vuematerial/vue-material/commit/38245ae))
* **MdField:** make type prop only available for input ([a69d46c](https://github.com/vuematerial/vue-material/commit/a69d46c))
* **MdField:** make v-model work with vue 2.5.x ([5596575](https://github.com/vuematerial/vue-material/commit/5596575))
* **MdField:** preserve the name attribute on change ([#1385](https://github.com/vuematerial/vue-material/issues/1385)) ([0a83834](https://github.com/vuematerial/vue-material/commit/0a83834))
* **MdField:** prevent MdInput and MdTextarea from emit input events directly ([#1285](https://github.com/vuematerial/vue-material/issues/1285)) ([00832e9](https://github.com/vuematerial/vue-material/commit/00832e9)), closes [#1261](https://github.com/vuematerial/vue-material/issues/1261)
* **MdField:** restore the order after upgrade to Vue 2.4 ([d526aff](https://github.com/vuematerial/vue-material/commit/d526aff))
* **MdField:** theme icons ([16added](https://github.com/vuematerial/vue-material/commit/16added))
* **MdFile:** add required v-model ([3232cbb](https://github.com/vuematerial/vue-material/commit/3232cbb))
* **MdFile:** Remove calling method `onInput` which doesn't exist ([#1176](https://github.com/vuematerial/vue-material/issues/1176)) ([5bf3476](https://github.com/vuematerial/vue-material/commit/5bf3476)), closes [#1163](https://github.com/vuematerial/vue-material/issues/1163)
* **MdHighlightText:** avoid printing 'null' as a value ([#1352](https://github.com/vuematerial/vue-material/issues/1352)) ([4d906b6](https://github.com/vuematerial/vue-material/commit/4d906b6)), closes [#1351](https://github.com/vuematerial/vue-material/issues/1351)
* **MdInput:** avoid InputEvent object from [@input](https://github.com/input) event ([#1196](https://github.com/vuematerial/vue-material/issues/1196)) ([12a4219](https://github.com/vuematerial/vue-material/commit/12a4219)), closes [#1160](https://github.com/vuematerial/vue-material/issues/1160) [#1150](https://github.com/vuematerial/vue-material/issues/1150) [#1203](https://github.com/vuematerial/vue-material/issues/1203) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856051](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856051) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856346](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856346)
* **MdInput:** fix password toggle ([#1178](https://github.com/vuematerial/vue-material/issues/1178)) ([65030e7](https://github.com/vuematerial/vue-material/commit/65030e7)), closes [#1170](https://github.com/vuematerial/vue-material/issues/1170)
* **MdLayout:** add xlarge and large classes to the layout component ([#1323](https://github.com/vuematerial/vue-material/issues/1323)) ([6c5fe65](https://github.com/vuematerial/vue-material/commit/6c5fe65))
* **MdLayout:** change gutter from padding to margin ([55419b3](https://github.com/vuematerial/vue-material/commit/55419b3))
* **MdLayout:** make all content inside a layout without wrap ([152c9c3](https://github.com/vuematerial/vue-material/commit/152c9c3))
* **MdList:** add active style ([fb1c253](https://github.com/vuematerial/vue-material/commit/fb1c253))
* **MdList:** add full support to router-link ([4cbb036](https://github.com/vuematerial/vue-material/commit/4cbb036))
* **MdMenu:** Close menu while another is opened ([#1266](https://github.com/vuematerial/vue-material/issues/1266)) ([ef720c4](https://github.com/vuematerial/vue-material/commit/ef720c4)), closes [#1255](https://github.com/vuematerial/vue-material/issues/1255)
* **MdMenu:** fix close-on-select props ([#1280](https://github.com/vuematerial/vue-material/issues/1280)) ([40406af](https://github.com/vuematerial/vue-material/commit/40406af)), closes [#1279](https://github.com/vuematerial/vue-material/issues/1279)
* **MdOverlay:** make all overlays inside body display:fixed by default ([670a96d](https://github.com/vuematerial/vue-material/commit/670a96d))
* **MdPortal:** always check if targetEl exists after apply it ([3fae6b0](https://github.com/vuematerial/vue-material/commit/3fae6b0))
* **MdPortal:** check fro only children elements before remove ([d7e5845](https://github.com/vuematerial/vue-material/commit/d7e5845))
* **MdPortal:** get the correct transition duration before removing a portal element ([35e4e9d](https://github.com/vuematerial/vue-material/commit/35e4e9d))
* **MdPortal:** improve re render of a portal element ([9631403](https://github.com/vuematerial/vue-material/commit/9631403))
* **MdPortal:** make document.body as a default target for portal ([d438d72](https://github.com/vuematerial/vue-material/commit/d438d72))
* **MdProgressSpinner:** fix firefox radius ([#1221](https://github.com/vuematerial/vue-material/issues/1221)) ([0686e8a](https://github.com/vuematerial/vue-material/commit/0686e8a))
* **MdProgressSpinner:** undefined navigator on SSR ([#1441](https://github.com/vuematerial/vue-material/issues/1441)) ([4722dad](https://github.com/vuematerial/vue-material/commit/4722dad))
* **MdRipple:** clear ripples if called programatically ([#1431](https://github.com/vuematerial/vue-material/issues/1431)) ([9e6aa8a](https://github.com/vuematerial/vue-material/commit/9e6aa8a))
* **MdRipple:** improve ripple performance ([bd0e058](https://github.com/vuematerial/vue-material/commit/bd0e058))
* **MdRipple:** make ripple to be disabled globally ([125ebb4](https://github.com/vuematerial/vue-material/commit/125ebb4))
* **MdRipple:** prevent ripple when scrolling a list ([f183dfe](https://github.com/vuematerial/vue-material/commit/f183dfe))
* **MdScrollbar:** fix scrollbar color and size to better match specs ([5fb4123](https://github.com/vuematerial/vue-material/commit/5fb4123))
* **MdSelect:** emit `md-selected` event after `localValue` changed ([#1282](https://github.com/vuematerial/vue-material/issues/1282)) ([023723a](https://github.com/vuematerial/vue-material/commit/023723a)), closes [#1275](https://github.com/vuematerial/vue-material/issues/1275)
* **MdSelect:** fix dense layout not being rendered properly ([#1346](https://github.com/vuematerial/vue-material/issues/1346)) ([7110eab](https://github.com/vuematerial/vue-material/commit/7110eab)), closes [#1332](https://github.com/vuematerial/vue-material/issues/1332)
* **MdSelect:** fix regression in select model variable name ([c7cff56](https://github.com/vuematerial/vue-material/commit/c7cff56))
* **MdSelect:** make options in disabled groups un-selectable ([#1293](https://github.com/vuematerial/vue-material/issues/1293)) ([89138eb](https://github.com/vuematerial/vue-material/commit/89138eb)), closes [#1286](https://github.com/vuematerial/vue-material/issues/1286)
* **MdSelect:** prevent overflowing arrow icon ([#1373](https://github.com/vuematerial/vue-material/issues/1373)) ([637e914](https://github.com/vuematerial/vue-material/commit/637e914))
* **MdSelect:** prevent select from getting a wrong highlight when mounted ([e3eb993](https://github.com/vuematerial/vue-material/commit/e3eb993))
* **MdSelect:** Reactive options ([#1447](https://github.com/vuematerial/vue-material/issues/1447)) ([01dfdfb](https://github.com/vuematerial/vue-material/commit/01dfdfb)), closes [#1262](https://github.com/vuematerial/vue-material/issues/1262)
* **MdSnackbar:** adjust margins and padding to be compliant with the specs ([5297291](https://github.com/vuematerial/vue-material/commit/5297291))
* **MdSnackbar:** fix snackbar not opening when is not persistent ([6d5a448](https://github.com/vuematerial/vue-material/commit/6d5a448))
* **MdSteppers:** fix styles of vertical steppers being applies to horizontal ([5a5d028](https://github.com/vuematerial/vue-material/commit/5a5d028))
* **MdSteppers:** recalculate styles on window resize ([#1394](https://github.com/vuematerial/vue-material/issues/1394)) ([d3953f7](https://github.com/vuematerial/vue-material/commit/d3953f7))
* **MdTable:** change sort methods ([75c603b](https://github.com/vuematerial/vue-material/commit/75c603b))
* **MdTable:** change sort methods ([64a332b](https://github.com/vuematerial/vue-material/commit/64a332b))
* **MdTable:** fix error to sort by attribute of child object ([#1309](https://github.com/vuematerial/vue-material/issues/1309)) ([9134227](https://github.com/vuematerial/vue-material/commit/9134227))
* **MdTable:** fix height of fixed table for firefox ([#1384](https://github.com/vuematerial/vue-material/issues/1384)) ([e24f8dc](https://github.com/vuematerial/vue-material/commit/e24f8dc))
* **MdTable:** improve sort function on table for numbered columns ([#1353](https://github.com/vuematerial/vue-material/issues/1353)) ([18bb96c](https://github.com/vuematerial/vue-material/commit/18bb96c)), closes [#1349](https://github.com/vuematerial/vue-material/issues/1349)
* **MdTable:** remove table head when column removed ([#1354](https://github.com/vuematerial/vue-material/issues/1354)) ([b54eb10](https://github.com/vuematerial/vue-material/commit/b54eb10)), closes [#1347](https://github.com/vuematerial/vue-material/issues/1347)
* **MdTable:** sync hasValue when the value changes ([#1147](https://github.com/vuematerial/vue-material/issues/1147)) ([fdc5dab](https://github.com/vuematerial/vue-material/commit/fdc5dab)), closes [#1146](https://github.com/vuematerial/vue-material/issues/1146) [#1146](https://github.com/vuematerial/vue-material/issues/1146)
* **MdTabs:** correct indicator position while alignment changed ([#1442](https://github.com/vuematerial/vue-material/issues/1442)) ([c5fc2f5](https://github.com/vuematerial/vue-material/commit/c5fc2f5)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** fix indicator ([#1448](https://github.com/vuematerial/vue-material/issues/1448)) ([b33d0d6](https://github.com/vuematerial/vue-material/commit/b33d0d6)), closes [#1304](https://github.com/vuematerial/vue-material/issues/1304)
* **MdTextarea:** fix input event handler not triggering ([#1341](https://github.com/vuematerial/vue-material/issues/1341)) ([567e9a7](https://github.com/vuematerial/vue-material/commit/567e9a7)), closes [#1340](https://github.com/vuematerial/vue-material/issues/1340)
* **MdTextarea:** prevent emitting `inputEvent` object on `input` ([#1249](https://github.com/vuematerial/vue-material/issues/1249)) ([c83f2a6](https://github.com/vuematerial/vue-material/commit/c83f2a6)), closes [#1247](https://github.com/vuematerial/vue-material/issues/1247)
* **MdToolbar:** fix offset alignment for small screens ([9117cfd](https://github.com/vuematerial/vue-material/commit/9117cfd))
* **MdToolbar:** fix offset alignment for small screens ([acbecce](https://github.com/vuematerial/vue-material/commit/acbecce))
* **MdTooltip:** `mdActive` never updated to true using `.sync` modifier ([b1018fb](https://github.com/vuematerial/vue-material/commit/b1018fb))
* **MdTooltip:** overlaying in dialog ([#1446](https://github.com/vuematerial/vue-material/issues/1446)) ([8ade40f](https://github.com/vuematerial/vue-material/commit/8ade40f))
* menu compatibility with IE (node type statement) ([#1365](https://github.com/vuematerial/vue-material/issues/1365)) ([a4c03be](https://github.com/vuematerial/vue-material/commit/a4c03be)), closes [#1263](https://github.com/vuematerial/vue-material/issues/1263) [#1263](https://github.com/vuematerial/vue-material/issues/1263)
* remove global scoped css affecting all md-content elements ([5fa0d52](https://github.com/vuematerial/vue-material/commit/5fa0d52))
* remove invalid content ([5412ae1](https://github.com/vuematerial/vue-material/commit/5412ae1))
* remove post install ([a859157](https://github.com/vuematerial/vue-material/commit/a859157))
* upgrade vue-template-compiler in yarn.lock ([#1306](https://github.com/vuematerial/vue-material/issues/1306)) ([b1bc2e1](https://github.com/vuematerial/vue-material/commit/b1bc2e1))
* z-index issues ([#1264](https://github.com/vuematerial/vue-material/issues/1264)) ([843056d](https://github.com/vuematerial/vue-material/commit/843056d)), closes [#1134](https://github.com/vuematerial/vue-material/issues/1134)
### Components
* **MdApp:** create a app shell utility to hold drawers ([9d2617e](https://github.com/vuematerial/vue-material/commit/9d2617e))
* **MdAutocomplete:** add better documentation examples ([a448325](https://github.com/vuematerial/vue-material/commit/a448325))
* **MdAvatar:** create avatar component ([#15](https://github.com/vuematerial/vue-material/issues/15)) ([5a6d2e0](https://github.com/vuematerial/vue-material/commit/5a6d2e0))
* **MdCard:** add cards ([17ed67b](https://github.com/vuematerial/vue-material/commit/17ed67b))
* **MdCheckbox:** create checkboxes ([f1414a0](https://github.com/vuematerial/vue-material/commit/f1414a0))
* **MdDatepicker:** create datepicker component ([#25](https://github.com/vuematerial/vue-material/issues/25)) ([05efb1a](https://github.com/vuematerial/vue-material/commit/05efb1a))
* **MdDialog:** create dialog component ([c421630](https://github.com/vuematerial/vue-material/commit/c421630))
* **MdDialog:** create dialog component ([#24](https://github.com/vuematerial/vue-material/issues/24)) ([014e38d](https://github.com/vuematerial/vue-material/commit/014e38d))
* **MdDialog:** create md-file ([#13](https://github.com/vuematerial/vue-material/issues/13)) ([80dd444](https://github.com/vuematerial/vue-material/commit/80dd444))
* **MdDivider:** create dividers ([f790ba9](https://github.com/vuematerial/vue-material/commit/f790ba9))
* **MdDrawer:** add a new component: MdDrawer ([cab7d15](https://github.com/vuematerial/vue-material/commit/cab7d15))
* **MdEmptyState:** create empty state component ([#28](https://github.com/vuematerial/vue-material/issues/28)) ([7381897](https://github.com/vuematerial/vue-material/commit/7381897))
* **MdField:** start the creation of the md-field component ([e97b317](https://github.com/vuematerial/vue-material/commit/e97b317))
* **MdLayout:** recreate md-layout ([#1229](https://github.com/vuematerial/vue-material/issues/1229)) ([652a0c6](https://github.com/vuematerial/vue-material/commit/652a0c6))
* **MdList:** create lists ([da24c63](https://github.com/vuematerial/vue-material/commit/da24c63))
* **MdMenu:** add menu component ([#21](https://github.com/vuematerial/vue-material/issues/21)) ([8241575](https://github.com/vuematerial/vue-material/commit/8241575))
* **MdProgress:** create progress bar and progress spinner ([#34](https://github.com/vuematerial/vue-material/issues/34)) ([19d742b](https://github.com/vuematerial/vue-material/commit/19d742b))
* **MdRadio:** create radio buttons ([dfa5478](https://github.com/vuematerial/vue-material/commit/dfa5478))
* **MdSelect:** create select component ([#27](https://github.com/vuematerial/vue-material/issues/27)) ([e965e86](https://github.com/vuematerial/vue-material/commit/e965e86))
* **MdSnackbar:** add snackbar component ([#19](https://github.com/vuematerial/vue-material/issues/19)) ([614b6fa](https://github.com/vuematerial/vue-material/commit/614b6fa))
* **MdSpeedDial:** create speed dial files ([48b6fd1](https://github.com/vuematerial/vue-material/commit/48b6fd1))
* **MdSteppers:** create steppers component ([2f70440](https://github.com/vuematerial/vue-material/commit/2f70440))
* **MdSubheader:** create subheaders ([28a9916](https://github.com/vuematerial/vue-material/commit/28a9916))
* **MdSwitch:** create switch selector ([dd835da](https://github.com/vuematerial/vue-material/commit/dd835da))
* **MdTable:** create base files for dynamic table ([#29](https://github.com/vuematerial/vue-material/issues/29)) ([0810e69](https://github.com/vuematerial/vue-material/commit/0810e69))
* **MdTable:** create base files for dynamic table ([#33](https://github.com/vuematerial/vue-material/issues/33)) ([799aa80](https://github.com/vuematerial/vue-material/commit/799aa80))
* **MdTabs:** add bottom bar ([#18](https://github.com/vuematerial/vue-material/issues/18)) ([8caef27](https://github.com/vuematerial/vue-material/commit/8caef27))
* **MdTabs:** create tabs ([#17](https://github.com/vuematerial/vue-material/issues/17)) ([af565f4](https://github.com/vuematerial/vue-material/commit/af565f4))
* **MdToolbar:** start documentation of mdToolbar ([759ac43](https://github.com/vuematerial/vue-material/commit/759ac43))
* **MdTooltip:** add tooltips ([#20](https://github.com/vuematerial/vue-material/issues/20)) ([2456ff9](https://github.com/vuematerial/vue-material/commit/2456ff9))
### Features
* add wide support for server side rendering ([#1183](https://github.com/vuematerial/vue-material/issues/1183)) ([ff24b8f](https://github.com/vuematerial/vue-material/commit/ff24b8f))
* create focused interaction for buttons ([409dd11](https://github.com/vuematerial/vue-material/commit/409dd11))
* **MdApp:** add support for custom scrollbar ([e6dc6b5](https://github.com/vuematerial/vue-material/commit/e6dc6b5))
* **MdApp:** add support for md-display-2 as the flexible header ([c030908](https://github.com/vuematerial/vue-material/commit/c030908))
* **MdApp:** allow custom components with slot ([#1387](https://github.com/vuematerial/vue-material/issues/1387)) ([ff341a2](https://github.com/vuematerial/vue-material/commit/ff341a2))
* **MdApp:** create fixed last row option ([f537e12](https://github.com/vuematerial/vue-material/commit/f537e12))
* **MdApp:** create flexible toolbars ([4c3b432](https://github.com/vuematerial/vue-material/commit/4c3b432))
* **MdApp:** create overlaping content above toolbar ([14d68b6](https://github.com/vuematerial/vue-material/commit/14d68b6))
* **MdApp:** create reveal toolbars ([78d2edd](https://github.com/vuematerial/vue-material/commit/78d2edd))
* **MdApp:** create waterfall toolbars ([4da9e77](https://github.com/vuematerial/vue-material/commit/4da9e77))
* **MdApp:** custom class and style ([#1256](https://github.com/vuematerial/vue-material/issues/1256)) ([9073313](https://github.com/vuematerial/vue-material/commit/9073313))
* **MdButton:** add md-fab position classes ([8fb6c66](https://github.com/vuematerial/vue-material/commit/8fb6c66))
* **MdButton:** add md-ripple option to enable/disable the effect ([2b23610](https://github.com/vuematerial/vue-material/commit/2b23610))
* **MdButton:** create floating action buttons ([7b4de04](https://github.com/vuematerial/vue-material/commit/7b4de04))
* **MdButton:** fix to prop not being passed to router-link ([4521af6](https://github.com/vuematerial/vue-material/commit/4521af6))
* **MdCard:** create needed files to start creation of cards ([3d91708](https://github.com/vuematerial/vue-material/commit/3d91708))
* **MdCheckbox:** add support for md-primary hue ([11ddc67](https://github.com/vuematerial/vue-material/commit/11ddc67))
* **MdChips:** add formatter for individual chips ([#1339](https://github.com/vuematerial/vue-material/issues/1339)) ([247a840](https://github.com/vuematerial/vue-material/commit/247a840)), closes [#1288](https://github.com/vuematerial/vue-material/issues/1288) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723276](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723276) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723492](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723492) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723536](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723536) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723959](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723959)
* **MdChips:** feedback for duplicated chip ([#1281](https://github.com/vuematerial/vue-material/issues/1281)) ([d15f63b](https://github.com/vuematerial/vue-material/commit/d15f63b)), closes [#1212](https://github.com/vuematerial/vue-material/issues/1212) [#1212](https://github.com/vuematerial/vue-material/issues/1212)
* **MdDatepicker:** add dateformat ([#1436](https://github.com/vuematerial/vue-material/issues/1436)) ([74aee23](https://github.com/vuematerial/vue-material/commit/74aee23))
* **MdDatepicker:** add option to disable dates by array or function ([1d269e4](https://github.com/vuematerial/vue-material/commit/1d269e4))
* **MdDatepicker:** add support for labels ([#1265](https://github.com/vuematerial/vue-material/issues/1265)) ([9f61c0b](https://github.com/vuematerial/vue-material/commit/9f61c0b))
* **MdDatepicker:** custom first day of a week ([#1409](https://github.com/vuematerial/vue-material/issues/1409)) ([af0dc0a](https://github.com/vuematerial/vue-material/commit/af0dc0a)), closes [#1397](https://github.com/vuematerial/vue-material/issues/1397) [#1397](https://github.com/vuematerial/vue-material/issues/1397)
* **MdDatepicker:** emit date without confirming ([#1426](https://github.com/vuematerial/vue-material/issues/1426)) ([e4af731](https://github.com/vuematerial/vue-material/commit/e4af731))
* **MdDatepicker:** override browser native pickers ([#1270](https://github.com/vuematerial/vue-material/issues/1270)) ([1cfaf3c](https://github.com/vuematerial/vue-material/commit/1cfaf3c))
* **MdDatepicker:** remove fixed label position ([#1417](https://github.com/vuematerial/vue-material/issues/1417)) ([a2cbc98](https://github.com/vuematerial/vue-material/commit/a2cbc98))
* **MdDrawer:** add a awesome mini variant ([40fb9a1](https://github.com/vuematerial/vue-material/commit/40fb9a1))
* **MdDrawer:** create all kinds of drawers ([53a9d98](https://github.com/vuematerial/vue-material/commit/53a9d98))
* **MdField:** add required fields and error messages ([1adc7dd](https://github.com/vuematerial/vue-material/commit/1adc7dd))
* **MdField:** create character counter ([f1bb1c6](https://github.com/vuematerial/vue-material/commit/f1bb1c6))
* **MdField:** create clearable fields ([12bf9a5](https://github.com/vuematerial/vue-material/commit/12bf9a5))
* **MdField:** create md-field with md-input and md-textarea ([5a106cf](https://github.com/vuematerial/vue-material/commit/5a106cf))
* **MdField:** create password toggle ([516f278](https://github.com/vuematerial/vue-material/commit/516f278))
* **MdField:** make icons work together with fields ([13549dc](https://github.com/vuematerial/vue-material/commit/13549dc))
* **MdList:** add support for selection controls ([9cdd3aa](https://github.com/vuematerial/vue-material/commit/9cdd3aa))
* **MdList:** expansion lists ([d4e4277](https://github.com/vuematerial/vue-material/commit/d4e4277))
* **MdList:** highlight router link active item ([c5d922f](https://github.com/vuematerial/vue-material/commit/c5d922f))
* **MdListItemExpand:** reactive expansion ([#1435](https://github.com/vuematerial/vue-material/issues/1435)) ([0f7e28f](https://github.com/vuematerial/vue-material/commit/0f7e28f)), closes [#1425](https://github.com/vuematerial/vue-material/issues/1425)
* **MdListItemLink:** add all `<a>` attributes supported ([#1328](https://github.com/vuematerial/vue-material/issues/1328)) ([c9a2b9f](https://github.com/vuematerial/vue-material/commit/c9a2b9f)), closes [#1320](https://github.com/vuematerial/vue-material/issues/1320)
* **MdList:** lists now support single, double and triple line ([adccbab](https://github.com/vuematerial/vue-material/commit/adccbab))
* **MdList:** make static list items ([a0053d3](https://github.com/vuematerial/vue-material/commit/a0053d3))
* **Mdpp:** create a scrollbar for md-content inside a md-app ([4b9e078](https://github.com/vuematerial/vue-material/commit/4b9e078))
* **MdRadio:** add support for md-primary hue ([084171d](https://github.com/vuematerial/vue-material/commit/084171d))
* **MdRipple:** add a disabled class to make easy to distinguish ([f0d0f7c](https://github.com/vuematerial/vue-material/commit/f0d0f7c))
* **MdRipple:** multiple waves ([#1419](https://github.com/vuematerial/vue-material/issues/1419)) ([70b3aa2](https://github.com/vuematerial/vue-material/commit/70b3aa2))
* **MdSelect:** add md-opened, md-closed events ([#1235](https://github.com/vuematerial/vue-material/issues/1235)) ([2a1d440](https://github.com/vuematerial/vue-material/commit/2a1d440))
* **MdSelect:** add md-selected event ([#1234](https://github.com/vuematerial/vue-material/issues/1234)) ([804c648](https://github.com/vuematerial/vue-material/commit/804c648))
* **MdSnackbar:** add optional persist option ([9efe538](https://github.com/vuematerial/vue-material/commit/9efe538))
* **MdSnackbar:** make snackbar persists across route changes ([0eca578](https://github.com/vuematerial/vue-material/commit/0eca578))
* **MdSpeedDial:** add animation types, directions and event triggers ([492ff05](https://github.com/vuematerial/vue-material/commit/492ff05))
* **MdSpeedDial:** add centered fab and speed dial ([bf8c5f4](https://github.com/vuematerial/vue-material/commit/bf8c5f4))
* **MdSpeedDial:** create morph icon ([2f55de5](https://github.com/vuematerial/vue-material/commit/2f55de5))
* **MdSpeedDial:** start creation of speed dial ([ed5721b](https://github.com/vuematerial/vue-material/commit/ed5721b))
* **MdSwitch:** add support for md-primary hue ([cefe2ab](https://github.com/vuematerial/vue-material/commit/cefe2ab))
* **MdTable:** reactive selection ([#1358](https://github.com/vuematerial/vue-material/issues/1358)) ([906a91d](https://github.com/vuematerial/vue-material/commit/906a91d)), closes [#1348](https://github.com/vuematerial/vue-material/issues/1348) [#1292](https://github.com/vuematerial/vue-material/issues/1292)
* **MdTableRow:** enable native browser events without the .native modifier ([#1393](https://github.com/vuematerial/vue-material/issues/1393)) ([edb484e](https://github.com/vuematerial/vue-material/commit/edb484e))
* **MdToolbar:** create multiline toolbars ([dc870d4](https://github.com/vuematerial/vue-material/commit/dc870d4))
* **MdToolbar:** resize toolbars according to breakpoints ([a052efa](https://github.com/vuematerial/vue-material/commit/a052efa))
### Performance Improvements
* improve app toolbar performance on scroll ([bb66530](https://github.com/vuematerial/vue-material/commit/bb66530))
### Reverts
* fix ads ([d3a123f](https://github.com/vuematerial/vue-material/commit/d3a123f))
* old release script ([ad975b6](https://github.com/vuematerial/vue-material/commit/ad975b6))
### BREAKING CHANGES
* **MdTable:** no more `md-selected` event from `MdTableRow`
* fix(MdTable): select event should be triggered after select update event
* fix(MdTableHeadSelection): select all only take effect on selectable items
<a name="1.0.0-beta-15"></a>
# [1.0.0-beta-15](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-14...v1.0.0-beta-15) (2020-08-13)
### Bug Fixes
* **MdDatepicker:** Pick text button (confirm and cancel) from locale configuration ([#2078](https://github.com/vuematerial/vue-material/issues/2078)) ([01e1124](https://github.com/vuematerial/vue-material/commit/01e1124))
### Features
* active theme section move to navbar + code fund re-style ([#2225](https://github.com/vuematerial/vue-material/issues/2225)) ([a5d027b](https://github.com/vuematerial/vue-material/commit/a5d027b)), closes [#2063](https://github.com/vuematerial/vue-material/issues/2063) [#2062](https://github.com/vuematerial/vue-material/issues/2062) [#2082](https://github.com/vuematerial/vue-material/issues/2082) [#2139](https://github.com/vuematerial/vue-material/issues/2139) [#2145](https://github.com/vuematerial/vue-material/issues/2145) [#2150](https://github.com/vuematerial/vue-material/issues/2150) [#2153](https://github.com/vuematerial/vue-material/issues/2153) [#2164](https://github.com/vuematerial/vue-material/issues/2164) [#80](https://github.com/vuematerial/vue-material/issues/80) [#2181](https://github.com/vuematerial/vue-material/issues/2181) [#2100](https://github.com/vuematerial/vue-material/issues/2100) [#2080](https://github.com/vuematerial/vue-material/issues/2080) [#2117](https://github.com/vuematerial/vue-material/issues/2117) [#2198](https://github.com/vuematerial/vue-material/issues/2198) [#1819](https://github.com/vuematerial/vue-material/issues/1819) [#2064](https://github.com/vuematerial/vue-material/issues/2064) [#2178](https://github.com/vuematerial/vue-material/issues/2178) [#2201](https://github.com/vuematerial/vue-material/issues/2201) [#1929](https://github.com/vuematerial/vue-material/issues/1929) [#2023](https://github.com/vuematerial/vue-material/issues/2023) [#2021](https://github.com/vuematerial/vue-material/issues/2021) [#2065](https://github.com/vuematerial/vue-material/issues/2065) [#1957](https://github.com/vuematerial/vue-material/issues/1957) [#1967](https://github.com/vuematerial/vue-material/issues/1967) [#2081](https://github.com/vuematerial/vue-material/issues/2081) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2091](https://github.com/vuematerial/vue-material/issues/2091) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2183](https://github.com/vuematerial/vue-material/issues/2183) [#2189](https://github.com/vuematerial/vue-material/issues/2189) [#2211](https://github.com/vuematerial/vue-material/issues/2211) [#2215](https://github.com/vuematerial/vue-material/issues/2215) [#2213](https://github.com/vuematerial/vue-material/issues/2213) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2212](https://github.com/vuematerial/vue-material/issues/2212) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2220](https://github.com/vuematerial/vue-material/issues/2220) [#2214](https://github.com/vuematerial/vue-material/issues/2214) [#2224](https://github.com/vuematerial/vue-material/issues/2224)
* add contributors ([#2235](https://github.com/vuematerial/vue-material/issues/2235)) ([14efbd6](https://github.com/vuematerial/vue-material/commit/14efbd6)), closes [#2063](https://github.com/vuematerial/vue-material/issues/2063) [#2062](https://github.com/vuematerial/vue-material/issues/2062) [#2082](https://github.com/vuematerial/vue-material/issues/2082) [#2139](https://github.com/vuematerial/vue-material/issues/2139) [#2145](https://github.com/vuematerial/vue-material/issues/2145) [#2150](https://github.com/vuematerial/vue-material/issues/2150) [#2153](https://github.com/vuematerial/vue-material/issues/2153) [#2164](https://github.com/vuematerial/vue-material/issues/2164) [#80](https://github.com/vuematerial/vue-material/issues/80) [#2181](https://github.com/vuematerial/vue-material/issues/2181) [#2100](https://github.com/vuematerial/vue-material/issues/2100) [#2080](https://github.com/vuematerial/vue-material/issues/2080) [#2117](https://github.com/vuematerial/vue-material/issues/2117) [#2198](https://github.com/vuematerial/vue-material/issues/2198) [#1819](https://github.com/vuematerial/vue-material/issues/1819) [#2064](https://github.com/vuematerial/vue-material/issues/2064) [#2178](https://github.com/vuematerial/vue-material/issues/2178) [#2201](https://github.com/vuematerial/vue-material/issues/2201) [#1929](https://github.com/vuematerial/vue-material/issues/1929) [#2023](https://github.com/vuematerial/vue-material/issues/2023) [#2021](https://github.com/vuematerial/vue-material/issues/2021) [#2065](https://github.com/vuematerial/vue-material/issues/2065) [#1957](https://github.com/vuematerial/vue-material/issues/1957) [#1967](https://github.com/vuematerial/vue-material/issues/1967) [#2081](https://github.com/vuematerial/vue-material/issues/2081) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2091](https://github.com/vuematerial/vue-material/issues/2091) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2183](https://github.com/vuematerial/vue-material/issues/2183) [#2189](https://github.com/vuematerial/vue-material/issues/2189) [#2211](https://github.com/vuematerial/vue-material/issues/2211) [#2215](https://github.com/vuematerial/vue-material/issues/2215) [#2213](https://github.com/vuematerial/vue-material/issues/2213) [#2054](https://github.com/vuematerial/vue-material/issues/2054) [#2212](https://github.com/vuematerial/vue-material/issues/2212) [#2090](https://github.com/vuematerial/vue-material/issues/2090) [#2220](https://github.com/vuematerial/vue-material/issues/2220) [#2214](https://github.com/vuematerial/vue-material/issues/2214) [#2224](https://github.com/vuematerial/vue-material/issues/2224) [#2226](https://github.com/vuematerial/vue-material/issues/2226) [#2228](https://github.com/vuematerial/vue-material/issues/2228) [#2234](https://github.com/vuematerial/vue-material/issues/2234)
<a name="1.0.0-beta-14"></a>
# [1.0.0-beta-14](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-13...v1.0.0-beta-14) (2020-05-27)
### Bug Fixes
* **components,doc:** fix the character counter not reseting when ([#2081](https://github.com/vuematerial/vue-material/issues/2081)) ([6b24539](https://github.com/vuematerial/vue-material/commit/6b24539)), closes [#2054](https://github.com/vuematerial/vue-material/issues/2054)
* **components,doc:** fix the character counter not reseting when ([#2213](https://github.com/vuematerial/vue-material/issues/2213)) ([5137908](https://github.com/vuematerial/vue-material/commit/5137908)), closes [#2054](https://github.com/vuematerial/vue-material/issues/2054)
* **MdDialog:** position centered ([6b46d96](https://github.com/vuematerial/vue-material/commit/6b46d96))
* **MdDialog:** revert ([d51649c](https://github.com/vuematerial/vue-material/commit/d51649c))
* **MdStep:** set tabindex for not active step ([#2215](https://github.com/vuematerial/vue-material/issues/2215)) ([17b0d20](https://github.com/vuematerial/vue-material/commit/17b0d20))
<a name="1.0.0-beta-13"></a>
# [1.0.0-beta-13](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-12...v1.0.0-beta-13) (2020-04-30)
### Bug Fixes
* **MdApp:** remove height 100 to make md-app-content span content height ([#1957](https://github.com/vuematerial/vue-material/issues/1957)) ([94fb4a8](https://github.com/vuematerial/vue-material/commit/94fb4a8))
* Drawer detection ([#1929](https://github.com/vuematerial/vue-material/issues/1929)) ([3aefccb](https://github.com/vuematerial/vue-material/commit/3aefccb))
<a name="1.0.0-beta-12"></a>
# [1.0.0-beta-12](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-11...v1.0.0-beta-12) (2020-04-21)
### Bug Fixes
* **MdMenu:** unexpected close on item click ([#2062](https://github.com/vuematerial/vue-material/issues/2062)) ([c274693](https://github.com/vuematerial/vue-material/commit/c274693))
* **MdRadio:** internal radio not being checked ([#2063](https://github.com/vuematerial/vue-material/issues/2063)) ([a9feb6f](https://github.com/vuematerial/vue-material/commit/a9feb6f))
<a name="1.0.0-beta-11"></a>
# [1.0.0-beta-11](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.2...v1.0.0-beta-11) (2019-05-12)
### Bug Fixes
* **MdApp:** child.data.attrs is undefined ([#1762](https://github.com/vuematerial/vue-material/issues/1762)) ([ffee13d](https://github.com/vuematerial/vue-material/commit/ffee13d)), closes [#1741](https://github.com/vuematerial/vue-material/issues/1741)
* **MdApp:** fix drawer slot ([#1845](https://github.com/vuematerial/vue-material/issues/1845)) ([e6a967b](https://github.com/vuematerial/vue-material/commit/e6a967b))
* **MdApp:** normalized component's tag before checking to match slot … ([#1994](https://github.com/vuematerial/vue-material/issues/1994)) ([05b4744](https://github.com/vuematerial/vue-material/commit/05b4744))
* **MdAutocomplete:** fix option selecting ([#1765](https://github.com/vuematerial/vue-material/issues/1765)) ([24e63ba](https://github.com/vuematerial/vue-material/commit/24e63ba))
* **MdButton:** adjust spacing for multiple toolbar buttons ([#1750](https://github.com/vuematerial/vue-material/issues/1750)) ([84cdb90](https://github.com/vuematerial/vue-material/commit/84cdb90))
* **MdDatepicker:** positioning when used inside flex container ([#2036](https://github.com/vuematerial/vue-material/issues/2036)) ([67677a2](https://github.com/vuematerial/vue-material/commit/67677a2))
* **MdDialogContent:** missing theme class ([#1876](https://github.com/vuematerial/vue-material/issues/1876)) ([6ca54cf](https://github.com/vuematerial/vue-material/commit/6ca54cf))
* **MdField:** remove firefox required box-shadow ([3ff295f](https://github.com/vuematerial/vue-material/commit/3ff295f))
* **MdFile:** disabled icon ([#1787](https://github.com/vuematerial/vue-material/issues/1787)) ([21d7e67](https://github.com/vuematerial/vue-material/commit/21d7e67)), closes [#1782](https://github.com/vuematerial/vue-material/issues/1782)
* **MdFile:** infinite focus loop ([04a4751](https://github.com/vuematerial/vue-material/commit/04a4751))
* **MdInput:** invert password on-off icons ([#2008](https://github.com/vuematerial/vue-material/issues/2008)) ([3e9dfa2](https://github.com/vuematerial/vue-material/commit/3e9dfa2))
* **MdListItem:** allow multiple actions ([#1760](https://github.com/vuematerial/vue-material/issues/1760)) ([714ee9f](https://github.com/vuematerial/vue-material/commit/714ee9f))
* **MdListItem:** expand content cursor style and hover ([#1808](https://github.com/vuematerial/vue-material/issues/1808)) ([739cefa](https://github.com/vuematerial/vue-material/commit/739cefa)), closes [#1643](https://github.com/vuematerial/vue-material/issues/1643)
* **MdListItem:** reduce function complexity ([#1853](https://github.com/vuematerial/vue-material/issues/1853)) ([b09777b](https://github.com/vuematerial/vue-material/commit/b09777b))
* **MdMenuContent:** destroy keydown listener on Esc ([#1766](https://github.com/vuematerial/vue-material/issues/1766)) ([e460e58](https://github.com/vuematerial/vue-material/commit/e460e58))
* **MdProgressSpinner:** fix CSP error ([#1850](https://github.com/vuematerial/vue-material/issues/1850)) ([96d3d8d](https://github.com/vuematerial/vue-material/commit/96d3d8d))
* **MdProgressSpinner:** improve transition ([#1946](https://github.com/vuematerial/vue-material/issues/1946)) ([0e62ae7](https://github.com/vuematerial/vue-material/commit/0e62ae7))
* **MdRipple:** fixed missing ripple effect ([#2059](https://github.com/vuematerial/vue-material/issues/2059)) ([b799671](https://github.com/vuematerial/vue-material/commit/b799671))
* **MdRouterLink:** new router-link registration name ([#1978](https://github.com/vuematerial/vue-material/issues/1978)) ([b1dff40](https://github.com/vuematerial/vue-material/commit/b1dff40))
* **MdSelect:** add missing `this` for calling isLocalValueSet function ([7a690ba](https://github.com/vuematerial/vue-material/commit/7a690ba))
* **MdSelect:** infinite loop error, when no v-model provided ([#2035](https://github.com/vuematerial/vue-material/issues/2035)) ([1d6eced](https://github.com/vuematerial/vue-material/commit/1d6eced))
* **MdSelect:** selected event before mounted ([946ea32](https://github.com/vuematerial/vue-material/commit/946ea32)), closes [#1781](https://github.com/vuematerial/vue-material/issues/1781)
* **MdSnackbar:** add "persistent" argument to createPromise() ([c7e8df8](https://github.com/vuematerial/vue-material/commit/c7e8df8))
* **MdSvgLoader:** svg loader for invalid / missing mimetype ([#1942](https://github.com/vuematerial/vue-material/issues/1942)) ([4fa84a4](https://github.com/vuematerial/vue-material/commit/4fa84a4))
* **MdTable:** add support for index in table row ([#2026](https://github.com/vuematerial/vue-material/issues/2026)) ([f1b65ea](https://github.com/vuematerial/vue-material/commit/f1b65ea))
* **MdTable:** nextTick selection data ([#1874](https://github.com/vuematerial/vue-material/issues/1874)) ([6fbdd21](https://github.com/vuematerial/vue-material/commit/6fbdd21)), closes [#1866](https://github.com/vuematerial/vue-material/issues/1866) [#2](https://github.com/vuematerial/vue-material/issues/2)
* **MdTable:** provide value mutation ([#1789](https://github.com/vuematerial/vue-material/issues/1789)) ([ae38547](https://github.com/vuematerial/vue-material/commit/ae38547)), closes [#1786](https://github.com/vuematerial/vue-material/issues/1786)
* **MdTable:** recalculate fixed header width on data changes ([#1877](https://github.com/vuematerial/vue-material/issues/1877)) ([2b675c9](https://github.com/vuematerial/vue-material/commit/2b675c9))
* **MdTable:** sort on created ([#1775](https://github.com/vuematerial/vue-material/issues/1775)) ([bd1e14b](https://github.com/vuematerial/vue-material/commit/bd1e14b)), closes [#1774](https://github.com/vuematerial/vue-material/issues/1774)
* **MdTable:** undefined table sorting [#1906](https://github.com/vuematerial/vue-material/issues/1906) ([#2012](https://github.com/vuematerial/vue-material/issues/2012)) ([5d54da5](https://github.com/vuematerial/vue-material/commit/5d54da5))
* fix the repeated generated css theme classes if there is multiple themes defined ([#1784](https://github.com/vuematerial/vue-material/issues/1784)) ([2922afa](https://github.com/vuematerial/vue-material/commit/2922afa))
* MdBadge do not accept color [#1854](https://github.com/vuematerial/vue-material/issues/1854) issue ([#1856](https://github.com/vuematerial/vue-material/issues/1856)) ([87cf617](https://github.com/vuematerial/vue-material/commit/87cf617))
* **MdTable:** revert asc direction ([#1776](https://github.com/vuematerial/vue-material/issues/1776)) ([0f82ace](https://github.com/vuematerial/vue-material/commit/0f82ace))
* **MdTableHead:** sort indicator position when there is only one column ([#1743](https://github.com/vuematerial/vue-material/issues/1743)) ([12f0a40](https://github.com/vuematerial/vue-material/commit/12f0a40))
* **MdTabs:** repeat import in all.scss #TimRChen ([#1848](https://github.com/vuematerial/vue-material/issues/1848)) ([2edc13c](https://github.com/vuematerial/vue-material/commit/2edc13c))
* **MdTabs:** setupObservers on mounted immediately ([#1770](https://github.com/vuematerial/vue-material/issues/1770)) ([d8dc038](https://github.com/vuematerial/vue-material/commit/d8dc038)), closes [#1768](https://github.com/vuematerial/vue-material/issues/1768)
* **MdTextarea:** resize anywhen localValue changed ([#1841](https://github.com/vuematerial/vue-material/issues/1841)) ([d81922a](https://github.com/vuematerial/vue-material/commit/d81922a)), closes [#1833](https://github.com/vuematerial/vue-material/issues/1833)
### Code Refactoring
* **MdDatepicker:** Better flow ([#1698](https://github.com/vuematerial/vue-material/issues/1698)) ([8a438ae](https://github.com/vuematerial/vue-material/commit/8a438ae)), closes [#1689](https://github.com/vuematerial/vue-material/issues/1689)
### Features
* add swipeable functionality ([#1618](https://github.com/vuematerial/vue-material/issues/1618)) ([4bed8cc](https://github.com/vuematerial/vue-material/commit/4bed8cc))
* disable complexity rules for some methods ([fb57db4](https://github.com/vuematerial/vue-material/commit/fb57db4))
* router link components improvements ([#1651](https://github.com/vuematerial/vue-material/issues/1651)) ([fee1503](https://github.com/vuematerial/vue-material/commit/fee1503)), closes [#1644](https://github.com/vuematerial/vue-material/issues/1644)
* **MdCardExpandContent:** reactive content ([#1799](https://github.com/vuematerial/vue-material/issues/1799)) ([c3f6eb0](https://github.com/vuematerial/vue-material/commit/c3f6eb0)), closes [#1795](https://github.com/vuematerial/vue-material/issues/1795)
* **MdRadio:** object support ([#1771](https://github.com/vuematerial/vue-material/issues/1771)) ([8670933](https://github.com/vuematerial/vue-material/commit/8670933)), closes [#1753](https://github.com/vuematerial/vue-material/issues/1753)
### BREAKING CHANGES
* **MdDatepicker:** upgrade date-fns to 2.0.0-alpha.7
<a name="1.0.0-beta-10.2"></a>
# [1.0.0-beta-10.2](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.1...v1.0.0-beta-10.2) (2018-05-15)
### Bug Fixes
* **MdTable:** fix table rendering default slot twice ([#1731](https://github.com/vuematerial/vue-material/issues/1731)) ([3c61bcf](https://github.com/vuematerial/vue-material/commit/3c61bcf))
<a name="1.0.0-beta-10.1"></a>
# [1.0.0-beta-10.1](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10...v1.0.0-beta-10.1) (2018-05-13)
### Bug Fixes
* **MdApp:** fix typo ([#1728](https://github.com/vuematerial/vue-material/issues/1728)) ([8bdbaf3](https://github.com/vuematerial/vue-material/commit/8bdbaf3)), closes [#1727](https://github.com/vuematerial/vue-material/issues/1727)
<a name="1.0.0-beta-10"></a>
# [1.0.0-beta-10](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-9...v1.0.0-beta-10) (2018-05-13)
<a name="1.0.0-beta-9"></a>
# [1.0.0-beta-9](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-8...v1.0.0-beta-9) (2018-05-13)
### Bug Fixes
* **Core:** inject SassScript value to CSS variables to fix libsass 3.5.0 ([#1620](https://github.com/vuematerial/vue-material/issues/1620)) ([4f180f6](https://github.com/vuematerial/vue-material/commit/4f180f6)), closes [/sass-lang.com/documentation/file.SASS_CHANGELOG.html#3_5_0__12_July_2017](https://github.com//sass-lang.com/documentation/file.SASS_CHANGELOG.html/issues/3_5_0__12_July_2017) [#1619](https://github.com/vuematerial/vue-material/issues/1619)
* **MdApp:** right drawer, fully reactive ([#1493](https://github.com/vuematerial/vue-material/issues/1493)) ([3ac16c7](https://github.com/vuematerial/vue-material/commit/3ac16c7)), closes [#1204](https://github.com/vuematerial/vue-material/issues/1204)
* **MdBadge:** custom class and style supported ([#1676](https://github.com/vuematerial/vue-material/issues/1676)) ([71b7afa](https://github.com/vuematerial/vue-material/commit/71b7afa))
* **MdBottomBarItem:** missing props to for router link ([#1531](https://github.com/vuematerial/vue-material/issues/1531)) ([6860d3a](https://github.com/vuematerial/vue-material/commit/6860d3a)), closes [#1412](https://github.com/vuematerial/vue-material/issues/1412)
* **MdButton:** change type of mdRippleActive prop to null to support SSR ([baf6a14](https://github.com/vuematerial/vue-material/commit/baf6a14))
* **MdButton:** fab-bottom-center style ([#1724](https://github.com/vuematerial/vue-material/issues/1724)) ([d1b296e](https://github.com/vuematerial/vue-material/commit/d1b296e)), closes [#1722](https://github.com/vuematerial/vue-material/issues/1722)
* **MdButton:** fix events when ripple is on ([#1532](https://github.com/vuematerial/vue-material/issues/1532)) ([e7f8f34](https://github.com/vuematerial/vue-material/commit/e7f8f34))
* **MdButton:** Ripple for firefox ([#1468](https://github.com/vuematerial/vue-material/issues/1468)) ([156506b](https://github.com/vuematerial/vue-material/commit/156506b)), closes [#1461](https://github.com/vuematerial/vue-material/issues/1461)
* **MdCard:** prevent showing scrollbars ([#1580](https://github.com/vuematerial/vue-material/issues/1580)) ([dc7892e](https://github.com/vuematerial/vue-material/commit/dc7892e))
* **MdChips:** improve alignment with other regular fields like md-input ([ce7e075](https://github.com/vuematerial/vue-material/commit/ce7e075))
* **MdCore:** remove all async/await from codebase ([5c3c208](https://github.com/vuematerial/vue-material/commit/5c3c208))
* **MdDialog:** remove md-primary from MdDialogConfirm's cancel button ([#1633](https://github.com/vuematerial/vue-material/issues/1633)) ([e125c0d](https://github.com/vuematerial/vue-material/commit/e125c0d)), closes [#1622](https://github.com/vuematerial/vue-material/issues/1622)
* **MdField:** fix font size for safari ([#1476](https://github.com/vuematerial/vue-material/issues/1476)) ([679f3d6](https://github.com/vuematerial/vue-material/commit/679f3d6))
* **MdField:** fix textarea and inline alignments ([#1646](https://github.com/vuematerial/vue-material/issues/1646)) ([dbeb7e9](https://github.com/vuematerial/vue-material/commit/dbeb7e9))
* **MdFile:** empty statement ([#1716](https://github.com/vuematerial/vue-material/issues/1716)) ([ae10127](https://github.com/vuematerial/vue-material/commit/ae10127)), closes [#1711](https://github.com/vuematerial/vue-material/issues/1711)
* **MdLayout:** remove breakpoint margins ([#1457](https://github.com/vuematerial/vue-material/issues/1457)) ([c568fe3](https://github.com/vuematerial/vue-material/commit/c568fe3))
* **MdMenu:** fix vertical alignment for menu items in IE ([#1615](https://github.com/vuematerial/vue-material/issues/1615)) ([5d3dfcf](https://github.com/vuematerial/vue-material/commit/5d3dfcf))
* **MdMenu:** preventDefault only for specific keys ([7c10a09](https://github.com/vuematerial/vue-material/commit/7c10a09))
* **MdMenuItem:** fix router ([#1474](https://github.com/vuematerial/vue-material/issues/1474)) ([eb6c8df](https://github.com/vuematerial/vue-material/commit/eb6c8df)), closes [#1471](https://github.com/vuematerial/vue-material/issues/1471)
* **MdProgressBar:** query style ([#1683](https://github.com/vuematerial/vue-material/issues/1683)) ([48453a1](https://github.com/vuematerial/vue-material/commit/48453a1)), closes [#1682](https://github.com/vuematerial/vue-material/issues/1682)
* **MdRipple:** clear immediately ([#1506](https://github.com/vuematerial/vue-material/issues/1506)) ([d52954a](https://github.com/vuematerial/vue-material/commit/d52954a))
* **MdSelect:** adjust position when body has margin ([#1551](https://github.com/vuematerial/vue-material/issues/1551)) ([c820b72](https://github.com/vuematerial/vue-material/commit/c820b72))
* **MdSelect:** dropdown icon align with input on botton line variant ([#1600](https://github.com/vuematerial/vue-material/issues/1600)) ([5c30f73](https://github.com/vuematerial/vue-material/commit/5c30f73))
* **MdSelect:** fix select position under md-dialog ([#1525](https://github.com/vuematerial/vue-material/issues/1525)) ([f7990c5](https://github.com/vuematerial/vue-material/commit/f7990c5)), closes [#1149](https://github.com/vuematerial/vue-material/issues/1149)
* **MdSelect:** pass props id and name as pure html attributes ([#1583](https://github.com/vuematerial/vue-material/issues/1583)) ([9fde310](https://github.com/vuematerial/vue-material/commit/9fde310))
* **MdSelect:** update the text if options are updated ([#1481](https://github.com/vuematerial/vue-material/issues/1481)) ([042e571](https://github.com/vuematerial/vue-material/commit/042e571)), closes [#1389](https://github.com/vuematerial/vue-material/issues/1389)
* **MdSteppers:** zero height in IE ([#1664](https://github.com/vuematerial/vue-material/issues/1664)) ([665732c](https://github.com/vuematerial/vue-material/commit/665732c))
* **MdTable:** emit selected/update event only when selected items really changed ([#1585](https://github.com/vuematerial/vue-material/issues/1585)) ([a591144](https://github.com/vuematerial/vue-material/commit/a591144)), closes [#1559](https://github.com/vuematerial/vue-material/issues/1559)
* **MdTable:** fix value condition for slot ([af0b89c](https://github.com/vuematerial/vue-material/commit/af0b89c))
* **MdTable:** make fixed header follow the horizontal scroll ([#1575](https://github.com/vuematerial/vue-material/issues/1575)) ([b14aac3](https://github.com/vuematerial/vue-material/commit/b14aac3))
* **MdTable:** reactive selection ([#1674](https://github.com/vuematerial/vue-material/issues/1674)) ([ddee303](https://github.com/vuematerial/vue-material/commit/ddee303)), closes [#1348](https://github.com/vuematerial/vue-material/issues/1348)
* **MdTableRow:** removeSelectableItem when empty ([#1616](https://github.com/vuematerial/vue-material/issues/1616)) ([6d787bd](https://github.com/vuematerial/vue-material/commit/6d787bd)), closes [#1610](https://github.com/vuematerial/vue-material/issues/1610)
* **MdTabs:** transparent content ([#1725](https://github.com/vuematerial/vue-material/issues/1725)) ([a4e3619](https://github.com/vuematerial/vue-material/commit/a4e3619)), closes [#1713](https://github.com/vuematerial/vue-material/issues/1713)
* build script ([0b4ffc3](https://github.com/vuematerial/vue-material/commit/0b4ffc3))
* constructor name support for IE11 ([95614b6](https://github.com/vuematerial/vue-material/commit/95614b6))
* ios devices do not trigger click events on 'non-clickable' elements ([#1634](https://github.com/vuematerial/vue-material/issues/1634)) ([63b8ac0](https://github.com/vuematerial/vue-material/commit/63b8ac0)), closes [#1503](https://github.com/vuematerial/vue-material/issues/1503)
* **MdTableRow:** update selectableItem while `mdItem` changed ([#1496](https://github.com/vuematerial/vue-material/issues/1496)) ([30c2f80](https://github.com/vuematerial/vue-material/commit/30c2f80)), closes [#1492](https://github.com/vuematerial/vue-material/issues/1492)
* **MdTabs:** correct indicator position on transition end ([#1467](https://github.com/vuematerial/vue-material/issues/1467)) ([bc3b611](https://github.com/vuematerial/vue-material/commit/bc3b611)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** remove ResizeObserver to improve the size and position calculation ([#1552](https://github.com/vuematerial/vue-material/issues/1552)) ([ef0cd2f](https://github.com/vuematerial/vue-material/commit/ef0cd2f))
* make dev env works ([a8e3978](https://github.com/vuematerial/vue-material/commit/a8e3978))
### Components
* **MdBadge:** new md-badge component ([#1465](https://github.com/vuematerial/vue-material/issues/1465)) ([3c60a38](https://github.com/vuematerial/vue-material/commit/3c60a38))
### Features
* **MdBadge:** add prop validation ([a53aff6](https://github.com/vuematerial/vue-material/commit/a53aff6))
* **MdCheckbox:** add `indeterminate` variant ([#1597](https://github.com/vuematerial/vue-material/issues/1597)) ([e373857](https://github.com/vuematerial/vue-material/commit/e373857))
* **MdCheckbox:** add object to possible checkbox value ([#1556](https://github.com/vuematerial/vue-material/issues/1556)) ([05821e2](https://github.com/vuematerial/vue-material/commit/05821e2))
* **MdCheckBox:** True / false value supporting ([#1703](https://github.com/vuematerial/vue-material/issues/1703)) ([7cdcb66](https://github.com/vuematerial/vue-material/commit/7cdcb66)), closes [#1701](https://github.com/vuematerial/vue-material/issues/1701)
* **MdChips:** Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([c502a16](https://github.com/vuematerial/vue-material/commit/c502a16))
* **MdDatepicker:** add close and open events ([#1577](https://github.com/vuematerial/vue-material/issues/1577)) ([5cb9b7b](https://github.com/vuematerial/vue-material/commit/5cb9b7b))
* **MdDatepicker:** add immediately option ([#1607](https://github.com/vuematerial/vue-material/issues/1607)) ([f62ec6a](https://github.com/vuematerial/vue-material/commit/f62ec6a)), closes [#1606](https://github.com/vuematerial/vue-material/issues/1606)
* **MdDatepicker:** Debounce the conversion into a date object ([#1666](https://github.com/vuematerial/vue-material/issues/1666)) ([a47ebe1](https://github.com/vuematerial/vue-material/commit/a47ebe1))
* **MdDialog:** add emit event when clicked outside of dialog ([#1567](https://github.com/vuematerial/vue-material/issues/1567)) ([b19f6f0](https://github.com/vuematerial/vue-material/commit/b19f6f0))
* **MdField:** add [@md](https://github.com/md)-clear event ([#1635](https://github.com/vuematerial/vue-material/issues/1635)) ([6ef5235](https://github.com/vuematerial/vue-material/commit/6ef5235))
* **MdField:** add prefixes and suffixes ([#1592](https://github.com/vuematerial/vue-material/issues/1592)) ([a30d84c](https://github.com/vuematerial/vue-material/commit/a30d84c))
* **MdField:** new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([f2347f1](https://github.com/vuematerial/vue-material/commit/f2347f1))
* **MdFile:** Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([fbf6d2a](https://github.com/vuematerial/vue-material/commit/fbf6d2a))
* **MdList:** expand only one option ([#1645](https://github.com/vuematerial/vue-material/issues/1645)) ([09b8573](https://github.com/vuematerial/vue-material/commit/09b8573)), closes [#1641](https://github.com/vuematerial/vue-material/issues/1641)
* **MdListItemExpand:** add expanded and collapsed events ([#1495](https://github.com/vuematerial/vue-material/issues/1495)) ([11c2785](https://github.com/vuematerial/vue-material/commit/11c2785)), closes [#1490](https://github.com/vuematerial/vue-material/issues/1490)
* **MdMenu:** new props mdCloseOnClick ([#1630](https://github.com/vuematerial/vue-material/issues/1630)) ([ecf5cb7](https://github.com/vuematerial/vue-material/commit/ecf5cb7))
* **MdSnackbar:** keep alive if its persistent ([#1561](https://github.com/vuematerial/vue-material/issues/1561)) ([33007b4](https://github.com/vuematerial/vue-material/commit/33007b4))
* **MdTable:** allow 2D array as the model value ([#1477](https://github.com/vuematerial/vue-material/issues/1477)) ([aed487a](https://github.com/vuematerial/vue-material/commit/aed487a))
* **MdTable:** allow custom value for mdHeight ([#1522](https://github.com/vuematerial/vue-material/issues/1522)) ([c63b757](https://github.com/vuematerial/vue-material/commit/c63b757))
* **MdTableCell:** add `md-id` prop ([#1584](https://github.com/vuematerial/vue-material/issues/1584)) ([7e7249a](https://github.com/vuematerial/vue-material/commit/7e7249a))
### Performance Improvements
* move universal selector from html tag ([#1652](https://github.com/vuematerial/vue-material/issues/1652)) ([2340eae](https://github.com/vuematerial/vue-material/commit/2340eae))
### Reverts
* new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([ff0a5bf](https://github.com/vuematerial/vue-material/commit/ff0a5bf))
* Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([e1bfad0](https://github.com/vuematerial/vue-material/commit/e1bfad0))
* Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([5b8e0fe](https://github.com/vuematerial/vue-material/commit/5b8e0fe))
### BREAKING CHANGES
* **MdApp:** Replace useless props `mdLeft` with `!this.mdRight`
* **MdApp:** no more than one drawer in a MdApp
* fix(MdDrawerRightPrevious): right drawer styles
use an previous element for styling container with right drawer with similar css codes
* fix(MdDrawer): Temporary style
* fix(MdAppSideDrawer): correct component name
* fix(MdApp): reactive persistent drawer
fully reactive drawer
* **MdCheckBox:** checkbox without setting value is true / false as default
<a name="1.0.0-beta-8"></a>
# [1.0.0-beta-8](https://github.com/vuematerial/vue-material/compare/4521af6...v1.0.0-beta-8) (2018-01-29)
### Bug Fixes
* **MdApp:** create card inside overlap mode ([607143f](https://github.com/vuematerial/vue-material/commit/607143f))
* **MdApp:** fix fixed-last not revealing the first row after scroll up ([bad65a2](https://github.com/vuematerial/vue-material/commit/bad65a2))
* **MdApp:** fix persistent drawer not pushing the content ([0388d84](https://github.com/vuematerial/vue-material/commit/0388d84))
* **MdApp:** fix persistent drawer not pushing the content ([7d86e8c](https://github.com/vuematerial/vue-material/commit/7d86e8c))
* **MdApp:** fix reveal scroll flickering after 1px scroll ([2fb232e](https://github.com/vuematerial/vue-material/commit/2fb232e))
* **MdApp:** fix reveal scroll not being updated ([6ed4522](https://github.com/vuematerial/vue-material/commit/6ed4522))
* **MdApp:** fix styles after ssr support ([27e9e7d](https://github.com/vuematerial/vue-material/commit/27e9e7d))
* **MdApp:** prevent md-app withou children to raise an error ([5b71335](https://github.com/vuematerial/vue-material/commit/5b71335))
* **MdAutocomplete:** fix input emit when cleared ([#1295](https://github.com/vuematerial/vue-material/issues/1295)) ([8a055e8](https://github.com/vuematerial/vue-material/commit/8a055e8))
* **MdAutocomplete:** prevent show options twice ([#1410](https://github.com/vuematerial/vue-material/issues/1410)) ([6a719b5](https://github.com/vuematerial/vue-material/commit/6a719b5)), closes [#1408](https://github.com/vuematerial/vue-material/issues/1408)
* **MdAutocomplete:** sync v-model with search term ([#1218](https://github.com/vuematerial/vue-material/issues/1218)) ([e9bb62e](https://github.com/vuematerial/vue-material/commit/e9bb62e)), closes [#1215](https://github.com/vuematerial/vue-material/issues/1215)
* **MdBottomBar:** avoid class colisions ([fe916d3](https://github.com/vuematerial/vue-material/commit/fe916d3))
* **MdButton:** add full support for router-link ([6353774](https://github.com/vuematerial/vue-material/commit/6353774))
* **MdButton:** create better detection of router-link to support hmr ([2db10a6](https://github.com/vuematerial/vue-material/commit/2db10a6))
* **MdButton:** file not being recognized by GitHub fs ([920817c](https://github.com/vuematerial/vue-material/commit/920817c))
* **MdButton:** force MdRipple to be added when using MdButton alone ([9b59a9f](https://github.com/vuematerial/vue-material/commit/9b59a9f))
* **MdButton:** read all router link properties and bind to button props ([271f059](https://github.com/vuematerial/vue-material/commit/271f059))
* **MdCard:** fix some theme errors and glitches ([7c47cca](https://github.com/vuematerial/vue-material/commit/7c47cca))
* **MdCheckbox:** typo ([ca0c2a4](https://github.com/vuematerial/vue-material/commit/ca0c2a4))
* **MdChips:** fix issues ([#1159](https://github.com/vuematerial/vue-material/issues/1159)) ([dc428dd](https://github.com/vuematerial/vue-material/commit/dc428dd))
* **MdChips:** add labels for static chips ([#1329](https://github.com/vuematerial/vue-material/issues/1329)) ([b7094cb](https://github.com/vuematerial/vue-material/commit/b7094cb)), closes [#1327](https://github.com/vuematerial/vue-material/issues/1327)
* **MdChips:** make chip allow spaces ([#1211](https://github.com/vuematerial/vue-material/issues/1211)) ([0030083](https://github.com/vuematerial/vue-material/commit/0030083)), closes [#1207](https://github.com/vuematerial/vue-material/issues/1207)
* **MdCore:** prop validator message now uses Vue.util.warn ([c76a630](https://github.com/vuematerial/vue-material/commit/c76a630))
* **MdDatepicker:** avoid warning for duplicated keys ([#1379](https://github.com/vuematerial/vue-material/issues/1379)) ([70712d7](https://github.com/vuematerial/vue-material/commit/70712d7))
* **MdDatepicker:** show today if date is not selected ([#1214](https://github.com/vuematerial/vue-material/issues/1214)) ([ac76cd7](https://github.com/vuematerial/vue-material/commit/ac76cd7)), closes [#1200](https://github.com/vuematerial/vue-material/issues/1200)
* **MdDialog:** IE not rendering Dialogs ([#1356](https://github.com/vuematerial/vue-material/issues/1356)) ([8115f32](https://github.com/vuematerial/vue-material/commit/8115f32))
* **MdDialog:** make prompt dialogs to work with v-model ([9daa006](https://github.com/vuematerial/vue-material/commit/9daa006))
* **MdDivider:** create divider as <li> tag when direct inside lists ([d807367](https://github.com/vuematerial/vue-material/commit/d807367))
* **MdDrawer:** always enforce drawers as array ([3758794](https://github.com/vuematerial/vue-material/commit/3758794))
* **MdDrawer:** revert old behavior for persistent ([cb242c7](https://github.com/vuematerial/vue-material/commit/cb242c7))
* **MdField:** Consider number `0` as hasValue ([#1407](https://github.com/vuematerial/vue-material/issues/1407)) ([d026496](https://github.com/vuematerial/vue-material/commit/d026496)), closes [#1406](https://github.com/vuematerial/vue-material/issues/1406)
* **MdField:** disable clear button while field is disabled ([#1326](https://github.com/vuematerial/vue-material/issues/1326)) ([03a9425](https://github.com/vuematerial/vue-material/commit/03a9425)), closes [#1321](https://github.com/vuematerial/vue-material/issues/1321)
* **MdField:** improve error states and input reset ([1a389b0](https://github.com/vuematerial/vue-material/commit/1a389b0))
* **MdField:** improve icon position ([38245ae](https://github.com/vuematerial/vue-material/commit/38245ae))
* **MdField:** make type prop only available for input ([a69d46c](https://github.com/vuematerial/vue-material/commit/a69d46c))
* **MdField:** make v-model work with vue 2.5.x ([5596575](https://github.com/vuematerial/vue-material/commit/5596575))
* **MdField:** preserve the name attribute on change ([#1385](https://github.com/vuematerial/vue-material/issues/1385)) ([0a83834](https://github.com/vuematerial/vue-material/commit/0a83834))
* **MdField:** prevent MdInput and MdTextarea from emit input events directly ([#1285](https://github.com/vuematerial/vue-material/issues/1285)) ([00832e9](https://github.com/vuematerial/vue-material/commit/00832e9)), closes [#1261](https://github.com/vuematerial/vue-material/issues/1261)
* **MdField:** restore the order after upgrade to Vue 2.4 ([d526aff](https://github.com/vuematerial/vue-material/commit/d526aff))
* **MdField:** theme icons ([16added](https://github.com/vuematerial/vue-material/commit/16added))
* **MdFile:** add required v-model ([3232cbb](https://github.com/vuematerial/vue-material/commit/3232cbb))
* **MdFile:** Remove calling method `onInput` which doesn't exist ([#1176](https://github.com/vuematerial/vue-material/issues/1176)) ([5bf3476](https://github.com/vuematerial/vue-material/commit/5bf3476)), closes [#1163](https://github.com/vuematerial/vue-material/issues/1163)
* **MdHighlightText:** avoid printing 'null' as a value ([#1352](https://github.com/vuematerial/vue-material/issues/1352)) ([4d906b6](https://github.com/vuematerial/vue-material/commit/4d906b6)), closes [#1351](https://github.com/vuematerial/vue-material/issues/1351)
* **MdInput:** avoid InputEvent object from [@input](https://github.com/input) event ([#1196](https://github.com/vuematerial/vue-material/issues/1196)) ([12a4219](https://github.com/vuematerial/vue-material/commit/12a4219)), closes [#1160](https://github.com/vuematerial/vue-material/issues/1160) [#1150](https://github.com/vuematerial/vue-material/issues/1150) [#1203](https://github.com/vuematerial/vue-material/issues/1203) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856051](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856051) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856346](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856346)
* **MdInput:** fix password toggle ([#1178](https://github.com/vuematerial/vue-material/issues/1178)) ([65030e7](https://github.com/vuematerial/vue-material/commit/65030e7)), closes [#1170](https://github.com/vuematerial/vue-material/issues/1170)
* **MdLayout:** add xlarge and large classes to the layout component ([#1323](https://github.com/vuematerial/vue-material/issues/1323)) ([6c5fe65](https://github.com/vuematerial/vue-material/commit/6c5fe65))
* **MdLayout:** change gutter from padding to margin ([55419b3](https://github.com/vuematerial/vue-material/commit/55419b3))
* **MdLayout:** make all content inside a layout without wrap ([152c9c3](https://github.com/vuematerial/vue-material/commit/152c9c3))
* **MdList:** add active style ([fb1c253](https://github.com/vuematerial/vue-material/commit/fb1c253))
* **MdList:** add full support to router-link ([4cbb036](https://github.com/vuematerial/vue-material/commit/4cbb036))
* **MdMenu:** Close menu while another is opened ([#1266](https://github.com/vuematerial/vue-material/issues/1266)) ([ef720c4](https://github.com/vuematerial/vue-material/commit/ef720c4)), closes [#1255](https://github.com/vuematerial/vue-material/issues/1255)
* **MdMenu:** fix close-on-select props ([#1280](https://github.com/vuematerial/vue-material/issues/1280)) ([40406af](https://github.com/vuematerial/vue-material/commit/40406af)), closes [#1279](https://github.com/vuematerial/vue-material/issues/1279)
* **MdOverlay:** make all overlays inside body display:fixed by default ([670a96d](https://github.com/vuematerial/vue-material/commit/670a96d))
* **MdPortal:** always check if targetEl exists after apply it ([3fae6b0](https://github.com/vuematerial/vue-material/commit/3fae6b0))
* **MdPortal:** check fro only children elements before remove ([d7e5845](https://github.com/vuematerial/vue-material/commit/d7e5845))
* **MdPortal:** get the correct transition duration before removing a portal element ([35e4e9d](https://github.com/vuematerial/vue-material/commit/35e4e9d))
* **MdPortal:** improve re render of a portal element ([9631403](https://github.com/vuematerial/vue-material/commit/9631403))
* **MdPortal:** make document.body as a default target for portal ([d438d72](https://github.com/vuematerial/vue-material/commit/d438d72))
* **MdProgressSpinner:** fix firefox radius ([#1221](https://github.com/vuematerial/vue-material/issues/1221)) ([0686e8a](https://github.com/vuematerial/vue-material/commit/0686e8a))
* **MdProgressSpinner:** undefined navigator on SSR ([#1441](https://github.com/vuematerial/vue-material/issues/1441)) ([4722dad](https://github.com/vuematerial/vue-material/commit/4722dad))
* **MdRipple:** clear ripples if called programatically ([#1431](https://github.com/vuematerial/vue-material/issues/1431)) ([9e6aa8a](https://github.com/vuematerial/vue-material/commit/9e6aa8a))
* **MdRipple:** improve ripple performance ([bd0e058](https://github.com/vuematerial/vue-material/commit/bd0e058))
* **MdRipple:** make ripple to be disabled globally ([125ebb4](https://github.com/vuematerial/vue-material/commit/125ebb4))
* **MdRipple:** prevent ripple when scrolling a list ([f183dfe](https://github.com/vuematerial/vue-material/commit/f183dfe))
* **MdScrollbar:** fix scrollbar color and size to better match specs ([5fb4123](https://github.com/vuematerial/vue-material/commit/5fb4123))
* **MdSelect:** emit `md-selected` event after `localValue` changed ([#1282](https://github.com/vuematerial/vue-material/issues/1282)) ([023723a](https://github.com/vuematerial/vue-material/commit/023723a)), closes [#1275](https://github.com/vuematerial/vue-material/issues/1275)
* **MdSelect:** fix dense layout not being rendered properly ([#1346](https://github.com/vuematerial/vue-material/issues/1346)) ([7110eab](https://github.com/vuematerial/vue-material/commit/7110eab)), closes [#1332](https://github.com/vuematerial/vue-material/issues/1332)
* **MdSelect:** fix regression in select model variable name ([c7cff56](https://github.com/vuematerial/vue-material/commit/c7cff56))
* **MdSelect:** make options in disabled groups un-selectable ([#1293](https://github.com/vuematerial/vue-material/issues/1293)) ([89138eb](https://github.com/vuematerial/vue-material/commit/89138eb)), closes [#1286](https://github.com/vuematerial/vue-material/issues/1286)
* **MdSelect:** prevent overflowing arrow icon ([#1373](https://github.com/vuematerial/vue-material/issues/1373)) ([637e914](https://github.com/vuematerial/vue-material/commit/637e914))
* **MdSelect:** prevent select from getting a wrong highlight when mounted ([e3eb993](https://github.com/vuematerial/vue-material/commit/e3eb993))
* **MdSelect:** Reactive options ([#1447](https://github.com/vuematerial/vue-material/issues/1447)) ([01dfdfb](https://github.com/vuematerial/vue-material/commit/01dfdfb)), closes [#1262](https://github.com/vuematerial/vue-material/issues/1262)
* **MdSnackbar:** adjust margins and padding to be compliant with the specs ([5297291](https://github.com/vuematerial/vue-material/commit/5297291))
* **MdSnackbar:** fix snackbar not opening when is not persistent ([6d5a448](https://github.com/vuematerial/vue-material/commit/6d5a448))
* **MdSteppers:** fix styles of vertical steppers being applies to horizontal ([5a5d028](https://github.com/vuematerial/vue-material/commit/5a5d028))
* **MdSteppers:** recalculate styles on window resize ([#1394](https://github.com/vuematerial/vue-material/issues/1394)) ([d3953f7](https://github.com/vuematerial/vue-material/commit/d3953f7))
* **MdTable:** change sort methods ([75c603b](https://github.com/vuematerial/vue-material/commit/75c603b))
* **MdTable:** change sort methods ([64a332b](https://github.com/vuematerial/vue-material/commit/64a332b))
* **MdTable:** fix error to sort by attribute of child object ([#1309](https://github.com/vuematerial/vue-material/issues/1309)) ([9134227](https://github.com/vuematerial/vue-material/commit/9134227))
* **MdTable:** fix height of fixed table for firefox ([#1384](https://github.com/vuematerial/vue-material/issues/1384)) ([e24f8dc](https://github.com/vuematerial/vue-material/commit/e24f8dc))
* **MdTable:** improve sort function on table for numbered columns ([#1353](https://github.com/vuematerial/vue-material/issues/1353)) ([18bb96c](https://github.com/vuematerial/vue-material/commit/18bb96c)), closes [#1349](https://github.com/vuematerial/vue-material/issues/1349)
* **MdTable:** remove table head when column removed ([#1354](https://github.com/vuematerial/vue-material/issues/1354)) ([b54eb10](https://github.com/vuematerial/vue-material/commit/b54eb10)), closes [#1347](https://github.com/vuematerial/vue-material/issues/1347)
* **MdTable:** sync hasValue when the value changes ([#1147](https://github.com/vuematerial/vue-material/issues/1147)) ([fdc5dab](https://github.com/vuematerial/vue-material/commit/fdc5dab)), closes [#1146](https://github.com/vuematerial/vue-material/issues/1146) [#1146](https://github.com/vuematerial/vue-material/issues/1146)
* **MdTabs:** correct indicator position while alignment changed ([#1442](https://github.com/vuematerial/vue-material/issues/1442)) ([c5fc2f5](https://github.com/vuematerial/vue-material/commit/c5fc2f5)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** fix indicator ([#1448](https://github.com/vuematerial/vue-material/issues/1448)) ([b33d0d6](https://github.com/vuematerial/vue-material/commit/b33d0d6)), closes [#1304](https://github.com/vuematerial/vue-material/issues/1304)
* **MdTextarea:** fix input event handler not triggering ([#1341](https://github.com/vuematerial/vue-material/issues/1341)) ([567e9a7](https://github.com/vuematerial/vue-material/commit/567e9a7)), closes [#1340](https://github.com/vuematerial/vue-material/issues/1340)
* **MdTextarea:** prevent emitting `inputEvent` object on `input` ([#1249](https://github.com/vuematerial/vue-material/issues/1249)) ([c83f2a6](https://github.com/vuematerial/vue-material/commit/c83f2a6)), closes [#1247](https://github.com/vuematerial/vue-material/issues/1247)
* **MdTooltip:** `mdActive` never updated to true using `.sync` modifier ([b1018fb](https://github.com/vuematerial/vue-material/commit/b1018fb))
* **MdTooltip:** overlaying in dialog ([#1446](https://github.com/vuematerial/vue-material/issues/1446)) ([8ade40f](https://github.com/vuematerial/vue-material/commit/8ade40f))
* add beta flag ([bd96842](https://github.com/vuematerial/vue-material/commit/bd96842))
* add jest-vue to replace jest-vue-preprocessor ([505627c](https://github.com/vuematerial/vue-material/commit/505627c))
* change broken image ([0868406](https://github.com/vuematerial/vue-material/commit/0868406))
* fix splash not changing the colors properly ([94f9d92](https://github.com/vuematerial/vue-material/commit/94f9d92))
* getting startet with wrong javascript markup ([7914eb8](https://github.com/vuematerial/vue-material/commit/7914eb8))
* getting startet with wrong javascript markup ([73360f8](https://github.com/vuematerial/vue-material/commit/73360f8))
* menu compatibility with IE (node type statement) ([#1365](https://github.com/vuematerial/vue-material/issues/1365)) ([a4c03be](https://github.com/vuematerial/vue-material/commit/a4c03be)), closes [#1263](https://github.com/vuematerial/vue-material/issues/1263) [#1263](https://github.com/vuematerial/vue-material/issues/1263)
* remove global scoped css affecting all md-content elements ([5fa0d52](https://github.com/vuematerial/vue-material/commit/5fa0d52))
* remove invalid content ([5412ae1](https://github.com/vuematerial/vue-material/commit/5412ae1))
* remove post install ([a859157](https://github.com/vuematerial/vue-material/commit/a859157))
* upgrade vue-template-compiler in yarn.lock ([#1306](https://github.com/vuematerial/vue-material/issues/1306)) ([b1bc2e1](https://github.com/vuematerial/vue-material/commit/b1bc2e1))
* **MdToolbar:** fix offset alignment for small screens ([9117cfd](https://github.com/vuematerial/vue-material/commit/9117cfd))
* **MdToolbar:** fix offset alignment for small screens ([acbecce](https://github.com/vuematerial/vue-material/commit/acbecce))
* change default fab color to accent ([5893895](https://github.com/vuematerial/vue-material/commit/5893895))
* make checkbo and radio to work with disabled attribute ([88d7755](https://github.com/vuematerial/vue-material/commit/88d7755))
* make field to have an required indicator ([facbea8](https://github.com/vuematerial/vue-material/commit/facbea8))
* make input id unique per instance ([981d281](https://github.com/vuematerial/vue-material/commit/981d281))
* make meta colors off by default and add an option to enable it ([c67a1c0](https://github.com/vuematerial/vue-material/commit/c67a1c0))
* z-index issues ([#1264](https://github.com/vuematerial/vue-material/issues/1264)) ([843056d](https://github.com/vuematerial/vue-material/commit/843056d)), closes [#1134](https://github.com/vuematerial/vue-material/issues/1134)
### Components
* **MdApp:** create a app shell utility to hold drawers ([9d2617e](https://github.com/vuematerial/vue-material/commit/9d2617e))
* **MdAutocomplete:** add better documentation examples ([a448325](https://github.com/vuematerial/vue-material/commit/a448325))
* **MdAvatar:** create avatar component ([#15](https://github.com/vuematerial/vue-material/issues/15)) ([5a6d2e0](https://github.com/vuematerial/vue-material/commit/5a6d2e0))
* **MdCard:** add cards ([17ed67b](https://github.com/vuematerial/vue-material/commit/17ed67b))
* **MdCheckbox:** create checkboxes ([f1414a0](https://github.com/vuematerial/vue-material/commit/f1414a0))
* **MdDatepicker:** create datepicker component ([#25](https://github.com/vuematerial/vue-material/issues/25)) ([05efb1a](https://github.com/vuematerial/vue-material/commit/05efb1a))
* **MdDialog:** create dialog component ([c421630](https://github.com/vuematerial/vue-material/commit/c421630))
* **MdDialog:** create dialog component ([#24](https://github.com/vuematerial/vue-material/issues/24)) ([014e38d](https://github.com/vuematerial/vue-material/commit/014e38d))
* **MdDialog:** create md-file ([#13](https://github.com/vuematerial/vue-material/issues/13)) ([80dd444](https://github.com/vuematerial/vue-material/commit/80dd444))
* **MdDivider:** create dividers ([f790ba9](https://github.com/vuematerial/vue-material/commit/f790ba9))
* **MdDrawer:** add a new component: MdDrawer ([cab7d15](https://github.com/vuematerial/vue-material/commit/cab7d15))
* **MdEmptyState:** create empty state component ([#28](https://github.com/vuematerial/vue-material/issues/28)) ([7381897](https://github.com/vuematerial/vue-material/commit/7381897))
* **MdField:** start the creation of the md-field component ([e97b317](https://github.com/vuematerial/vue-material/commit/e97b317))
* **MdLayout:** recreate md-layout ([#1229](https://github.com/vuematerial/vue-material/issues/1229)) ([652a0c6](https://github.com/vuematerial/vue-material/commit/652a0c6))
* **MdList:** create lists ([da24c63](https://github.com/vuematerial/vue-material/commit/da24c63))
* **MdMenu:** add menu component ([#21](https://github.com/vuematerial/vue-material/issues/21)) ([8241575](https://github.com/vuematerial/vue-material/commit/8241575))
* **MdProgress:** create progress bar and progress spinner ([#34](https://github.com/vuematerial/vue-material/issues/34)) ([19d742b](https://github.com/vuematerial/vue-material/commit/19d742b))
* **MdRadio:** create radio buttons ([dfa5478](https://github.com/vuematerial/vue-material/commit/dfa5478))
* **MdSelect:** create select component ([#27](https://github.com/vuematerial/vue-material/issues/27)) ([e965e86](https://github.com/vuematerial/vue-material/commit/e965e86))
* **MdSnackbar:** add snackbar component ([#19](https://github.com/vuematerial/vue-material/issues/19)) ([614b6fa](https://github.com/vuematerial/vue-material/commit/614b6fa))
* **MdSpeedDial:** create speed dial files ([48b6fd1](https://github.com/vuematerial/vue-material/commit/48b6fd1))
* **MdSteppers:** create steppers component ([2f70440](https://github.com/vuematerial/vue-material/commit/2f70440))
* **MdSubheader:** create subheaders ([28a9916](https://github.com/vuematerial/vue-material/commit/28a9916))
* **MdSwitch:** create switch selector ([dd835da](https://github.com/vuematerial/vue-material/commit/dd835da))
* **MdTable:** create base files for dynamic table ([#29](https://github.com/vuematerial/vue-material/issues/29)) ([0810e69](https://github.com/vuematerial/vue-material/commit/0810e69))
* **MdTable:** create base files for dynamic table ([#33](https://github.com/vuematerial/vue-material/issues/33)) ([799aa80](https://github.com/vuematerial/vue-material/commit/799aa80))
* **MdTabs:** add bottom bar ([#18](https://github.com/vuematerial/vue-material/issues/18)) ([8caef27](https://github.com/vuematerial/vue-material/commit/8caef27))
* **MdTabs:** create tabs ([#17](https://github.com/vuematerial/vue-material/issues/17)) ([af565f4](https://github.com/vuematerial/vue-material/commit/af565f4))
* **MdToolbar:** start documentation of mdToolbar ([759ac43](https://github.com/vuematerial/vue-material/commit/759ac43))
* **MdTooltip:** add tooltips ([#20](https://github.com/vuematerial/vue-material/issues/20)) ([2456ff9](https://github.com/vuematerial/vue-material/commit/2456ff9))
### Features
* **MdApp:** add support for custom scrollbar ([e6dc6b5](https://github.com/vuematerial/vue-material/commit/e6dc6b5))
* **MdApp:** add support for md-display-2 as the flexible header ([c030908](https://github.com/vuematerial/vue-material/commit/c030908))
* **MdApp:** allow custom components with slot ([#1387](https://github.com/vuematerial/vue-material/issues/1387)) ([ff341a2](https://github.com/vuematerial/vue-material/commit/ff341a2))
* **MdApp:** create fixed last row option ([f537e12](https://github.com/vuematerial/vue-material/commit/f537e12))
* **MdApp:** create flexible toolbars ([4c3b432](https://github.com/vuematerial/vue-material/commit/4c3b432))
* **MdApp:** create overlaping content above toolbar ([14d68b6](https://github.com/vuematerial/vue-material/commit/14d68b6))
* **MdApp:** create reveal toolbars ([78d2edd](https://github.com/vuematerial/vue-material/commit/78d2edd))
* **MdApp:** create waterfall toolbars ([4da9e77](https://github.com/vuematerial/vue-material/commit/4da9e77))
* **MdApp:** custom class and style ([#1256](https://github.com/vuematerial/vue-material/issues/1256)) ([9073313](https://github.com/vuematerial/vue-material/commit/9073313))
* **MdButton:** add md-fab position classes ([8fb6c66](https://github.com/vuematerial/vue-material/commit/8fb6c66))
* **MdButton:** add md-ripple option to enable/disable the effect ([2b23610](https://github.com/vuematerial/vue-material/commit/2b23610))
* **MdButton:** create floating action buttons ([7b4de04](https://github.com/vuematerial/vue-material/commit/7b4de04))
* **MdButton:** fix to prop not being passed to router-link ([4521af6](https://github.com/vuematerial/vue-material/commit/4521af6))
* **MdCard:** create needed files to start creation of cards ([3d91708](https://github.com/vuematerial/vue-material/commit/3d91708))
* **MdCheckbox:** add support for md-primary hue ([11ddc67](https://github.com/vuematerial/vue-material/commit/11ddc67))
* **MdChips:** add formatter for individual chips ([#1339](https://github.com/vuematerial/vue-material/issues/1339)) ([247a840](https://github.com/vuematerial/vue-material/commit/247a840)), closes [#1288](https://github.com/vuematerial/vue-material/issues/1288) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723276](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723276) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723492](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723492) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723536](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723536) [/github.com/vuematerial/vue-material/pull/1339#discussion_r158723959](https://github.com//github.com/vuematerial/vue-material/pull/1339/issues/discussion_r158723959)
* **MdChips:** feedback for duplicated chip ([#1281](https://github.com/vuematerial/vue-material/issues/1281)) ([d15f63b](https://github.com/vuematerial/vue-material/commit/d15f63b)), closes [#1212](https://github.com/vuematerial/vue-material/issues/1212) [#1212](https://github.com/vuematerial/vue-material/issues/1212)
* **MdDatepicker:** add dateformat ([#1436](https://github.com/vuematerial/vue-material/issues/1436)) ([74aee23](https://github.com/vuematerial/vue-material/commit/74aee23))
* **MdDatepicker:** add option to disable dates by array or function ([1d269e4](https://github.com/vuematerial/vue-material/commit/1d269e4))
* **MdDatepicker:** add support for labels ([#1265](https://github.com/vuematerial/vue-material/issues/1265)) ([9f61c0b](https://github.com/vuematerial/vue-material/commit/9f61c0b))
* **MdDatepicker:** custom first day of a week ([#1409](https://github.com/vuematerial/vue-material/issues/1409)) ([af0dc0a](https://github.com/vuematerial/vue-material/commit/af0dc0a)), closes [#1397](https://github.com/vuematerial/vue-material/issues/1397) [#1397](https://github.com/vuematerial/vue-material/issues/1397)
* **MdDatepicker:** emit date without confirming ([#1426](https://github.com/vuematerial/vue-material/issues/1426)) ([e4af731](https://github.com/vuematerial/vue-material/commit/e4af731))
* **MdDatepicker:** override browser native pickers ([#1270](https://github.com/vuematerial/vue-material/issues/1270)) ([1cfaf3c](https://github.com/vuematerial/vue-material/commit/1cfaf3c))
* **MdDatepicker:** remove fixed label position ([#1417](https://github.com/vuematerial/vue-material/issues/1417)) ([a2cbc98](https://github.com/vuematerial/vue-material/commit/a2cbc98))
* **MdDrawer:** add a awesome mini variant ([40fb9a1](https://github.com/vuematerial/vue-material/commit/40fb9a1))
* **MdDrawer:** create all kinds of drawers ([53a9d98](https://github.com/vuematerial/vue-material/commit/53a9d98))
* **MdField:** add required fields and error messages ([1adc7dd](https://github.com/vuematerial/vue-material/commit/1adc7dd))
* **MdField:** create character counter ([f1bb1c6](https://github.com/vuematerial/vue-material/commit/f1bb1c6))
* **MdField:** create clearable fields ([12bf9a5](https://github.com/vuematerial/vue-material/commit/12bf9a5))
* **MdField:** create md-field with md-input and md-textarea ([5a106cf](https://github.com/vuematerial/vue-material/commit/5a106cf))
* **MdField:** create password toggle ([516f278](https://github.com/vuematerial/vue-material/commit/516f278))
* **MdField:** make icons work together with fields ([13549dc](https://github.com/vuematerial/vue-material/commit/13549dc))
* **MdList:** add support for selection controls ([9cdd3aa](https://github.com/vuematerial/vue-material/commit/9cdd3aa))
* **MdList:** expansion lists ([d4e4277](https://github.com/vuematerial/vue-material/commit/d4e4277))
* **MdList:** highlight router link active item ([c5d922f](https://github.com/vuematerial/vue-material/commit/c5d922f))
* **MdList:** lists now support single, double and triple line ([adccbab](https://github.com/vuematerial/vue-material/commit/adccbab))
* **MdList:** make static list items ([a0053d3](https://github.com/vuematerial/vue-material/commit/a0053d3))
* **MdListItemExpand:** reactive expansion ([#1435](https://github.com/vuematerial/vue-material/issues/1435)) ([0f7e28f](https://github.com/vuematerial/vue-material/commit/0f7e28f)), closes [#1425](https://github.com/vuematerial/vue-material/issues/1425)
* **MdListItemLink:** add all `<a>` attributes supported ([#1328](https://github.com/vuematerial/vue-material/issues/1328)) ([c9a2b9f](https://github.com/vuematerial/vue-material/commit/c9a2b9f)), closes [#1320](https://github.com/vuematerial/vue-material/issues/1320)
* **Mdpp:** create a scrollbar for md-content inside a md-app ([4b9e078](https://github.com/vuematerial/vue-material/commit/4b9e078))
* **MdRadio:** add support for md-primary hue ([084171d](https://github.com/vuematerial/vue-material/commit/084171d))
* **MdRipple:** add a disabled class to make easy to distinguish ([f0d0f7c](https://github.com/vuematerial/vue-material/commit/f0d0f7c))
* **MdRipple:** multiple waves ([#1419](https://github.com/vuematerial/vue-material/issues/1419)) ([70b3aa2](https://github.com/vuematerial/vue-material/commit/70b3aa2))
* **MdSelect:** add md-opened, md-closed events ([#1235](https://github.com/vuematerial/vue-material/issues/1235)) ([2a1d440](https://github.com/vuematerial/vue-material/commit/2a1d440))
* **MdSelect:** add md-selected event ([#1234](https://github.com/vuematerial/vue-material/issues/1234)) ([804c648](https://github.com/vuematerial/vue-material/commit/804c648))
* **MdSnackbar:** add optional persist option ([9efe538](https://github.com/vuematerial/vue-material/commit/9efe538))
* **MdSnackbar:** make snackbar persists across route changes ([0eca578](https://github.com/vuematerial/vue-material/commit/0eca578))
* **MdSpeedDial:** add animation types, directions and event triggers ([492ff05](https://github.com/vuematerial/vue-material/commit/492ff05))
* **MdSpeedDial:** add centered fab and speed dial ([bf8c5f4](https://github.com/vuematerial/vue-material/commit/bf8c5f4))
* **MdSpeedDial:** create morph icon ([2f55de5](https://github.com/vuematerial/vue-material/commit/2f55de5))
* **MdSpeedDial:** start creation of speed dial ([ed5721b](https://github.com/vuematerial/vue-material/commit/ed5721b))
* **MdSwitch:** add support for md-primary hue ([cefe2ab](https://github.com/vuematerial/vue-material/commit/cefe2ab))
* **MdTable:** reactive selection ([#1358](https://github.com/vuematerial/vue-material/issues/1358)) ([906a91d](https://github.com/vuematerial/vue-material/commit/906a91d)), closes [#1348](https://github.com/vuematerial/vue-material/issues/1348) [#1292](https://github.com/vuematerial/vue-material/issues/1292)
* **MdTableRow:** enable native browser events without the .native modifier ([#1393](https://github.com/vuematerial/vue-material/issues/1393)) ([edb484e](https://github.com/vuematerial/vue-material/commit/edb484e))
* add wide support for server side rendering ([#1183](https://github.com/vuematerial/vue-material/issues/1183)) ([ff24b8f](https://github.com/vuematerial/vue-material/commit/ff24b8f))
* create focused interaction for buttons ([409dd11](https://github.com/vuematerial/vue-material/commit/409dd11))
* **MdToolbar:** create multiline toolbars ([dc870d4](https://github.com/vuematerial/vue-material/commit/dc870d4))
* **MdToolbar:** resize toolbars according to breakpoints ([a052efa](https://github.com/vuematerial/vue-material/commit/a052efa))
### Performance Improvements
* improve app toolbar performance on scroll ([bb66530](https://github.com/vuematerial/vue-material/commit/bb66530))
### Reverts
* fix ads ([d3a123f](https://github.com/vuematerial/vue-material/commit/d3a123f))
* old release script ([ad975b6](https://github.com/vuematerial/vue-material/commit/ad975b6))
### BREAKING CHANGES
* **MdTable:** no more `md-selected` event from `MdTableRow`
* fix(MdTable): select event should be triggered after select update event
* fix(MdTableHeadSelection): select all only take effect on selectable items
<a name="1.0.0-beta-14"></a>
# [1.0.0-beta-14](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-11...v1.0.0-beta-14) (2020-05-27)
<a name="1.0.0-beta-11"></a>
# [1.0.0-beta-11](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.2...v1.0.0-beta-11) (2019-05-12)
### Bug Fixes
* **MdApp:** child.data.attrs is undefined ([#1762](https://github.com/vuematerial/vue-material/issues/1762)) ([ffee13d](https://github.com/vuematerial/vue-material/commit/ffee13d)), closes [#1741](https://github.com/vuematerial/vue-material/issues/1741)
* **MdApp:** fix drawer slot ([#1845](https://github.com/vuematerial/vue-material/issues/1845)) ([e6a967b](https://github.com/vuematerial/vue-material/commit/e6a967b))
* **MdApp:** normalized component's tag before checking to match slot … ([#1994](https://github.com/vuematerial/vue-material/issues/1994)) ([05b4744](https://github.com/vuematerial/vue-material/commit/05b4744))
* **MdAutocomplete:** fix option selecting ([#1765](https://github.com/vuematerial/vue-material/issues/1765)) ([24e63ba](https://github.com/vuematerial/vue-material/commit/24e63ba))
* **MdButton:** adjust spacing for multiple toolbar buttons ([#1750](https://github.com/vuematerial/vue-material/issues/1750)) ([84cdb90](https://github.com/vuematerial/vue-material/commit/84cdb90))
* **MdDatepicker:** positioning when used inside flex container ([#2036](https://github.com/vuematerial/vue-material/issues/2036)) ([67677a2](https://github.com/vuematerial/vue-material/commit/67677a2))
* **MdDialogContent:** missing theme class ([#1876](https://github.com/vuematerial/vue-material/issues/1876)) ([6ca54cf](https://github.com/vuematerial/vue-material/commit/6ca54cf))
* **MdField:** remove firefox required box-shadow ([3ff295f](https://github.com/vuematerial/vue-material/commit/3ff295f))
* **MdFile:** disabled icon ([#1787](https://github.com/vuematerial/vue-material/issues/1787)) ([21d7e67](https://github.com/vuematerial/vue-material/commit/21d7e67)), closes [#1782](https://github.com/vuematerial/vue-material/issues/1782)
* **MdFile:** infinite focus loop ([04a4751](https://github.com/vuematerial/vue-material/commit/04a4751))
* **MdInput:** invert password on-off icons ([#2008](https://github.com/vuematerial/vue-material/issues/2008)) ([3e9dfa2](https://github.com/vuematerial/vue-material/commit/3e9dfa2))
* **MdListItem:** allow multiple actions ([#1760](https://github.com/vuematerial/vue-material/issues/1760)) ([714ee9f](https://github.com/vuematerial/vue-material/commit/714ee9f))
* **MdListItem:** expand content cursor style and hover ([#1808](https://github.com/vuematerial/vue-material/issues/1808)) ([739cefa](https://github.com/vuematerial/vue-material/commit/739cefa)), closes [#1643](https://github.com/vuematerial/vue-material/issues/1643)
* **MdListItem:** reduce function complexity ([#1853](https://github.com/vuematerial/vue-material/issues/1853)) ([b09777b](https://github.com/vuematerial/vue-material/commit/b09777b))
* **MdMenuContent:** destroy keydown listener on Esc ([#1766](https://github.com/vuematerial/vue-material/issues/1766)) ([e460e58](https://github.com/vuematerial/vue-material/commit/e460e58))
* **MdProgressSpinner:** fix CSP error ([#1850](https://github.com/vuematerial/vue-material/issues/1850)) ([96d3d8d](https://github.com/vuematerial/vue-material/commit/96d3d8d))
* **MdProgressSpinner:** improve transition ([#1946](https://github.com/vuematerial/vue-material/issues/1946)) ([0e62ae7](https://github.com/vuematerial/vue-material/commit/0e62ae7))
* **MdRipple:** fixed missing ripple effect ([#2059](https://github.com/vuematerial/vue-material/issues/2059)) ([b799671](https://github.com/vuematerial/vue-material/commit/b799671))
* **MdRouterLink:** new router-link registration name ([#1978](https://github.com/vuematerial/vue-material/issues/1978)) ([b1dff40](https://github.com/vuematerial/vue-material/commit/b1dff40))
* **MdSelect:** add missing `this` for calling isLocalValueSet function ([7a690ba](https://github.com/vuematerial/vue-material/commit/7a690ba))
* **MdSelect:** infinite loop error, when no v-model provided ([#2035](https://github.com/vuematerial/vue-material/issues/2035)) ([1d6eced](https://github.com/vuematerial/vue-material/commit/1d6eced))
* **MdSelect:** selected event before mounted ([946ea32](https://github.com/vuematerial/vue-material/commit/946ea32)), closes [#1781](https://github.com/vuematerial/vue-material/issues/1781)
* **MdSnackbar:** add "persistent" argument to createPromise() ([c7e8df8](https://github.com/vuematerial/vue-material/commit/c7e8df8))
* **MdSvgLoader:** svg loader for invalid / missing mimetype ([#1942](https://github.com/vuematerial/vue-material/issues/1942)) ([4fa84a4](https://github.com/vuematerial/vue-material/commit/4fa84a4))
* **MdTable:** add support for index in table row ([#2026](https://github.com/vuematerial/vue-material/issues/2026)) ([f1b65ea](https://github.com/vuematerial/vue-material/commit/f1b65ea))
* **MdTable:** nextTick selection data ([#1874](https://github.com/vuematerial/vue-material/issues/1874)) ([6fbdd21](https://github.com/vuematerial/vue-material/commit/6fbdd21)), closes [#1866](https://github.com/vuematerial/vue-material/issues/1866) [#2](https://github.com/vuematerial/vue-material/issues/2)
* **MdTable:** provide value mutation ([#1789](https://github.com/vuematerial/vue-material/issues/1789)) ([ae38547](https://github.com/vuematerial/vue-material/commit/ae38547)), closes [#1786](https://github.com/vuematerial/vue-material/issues/1786)
* **MdTable:** recalculate fixed header width on data changes ([#1877](https://github.com/vuematerial/vue-material/issues/1877)) ([2b675c9](https://github.com/vuematerial/vue-material/commit/2b675c9))
* **MdTable:** sort on created ([#1775](https://github.com/vuematerial/vue-material/issues/1775)) ([bd1e14b](https://github.com/vuematerial/vue-material/commit/bd1e14b)), closes [#1774](https://github.com/vuematerial/vue-material/issues/1774)
* **MdTable:** undefined table sorting [#1906](https://github.com/vuematerial/vue-material/issues/1906) ([#2012](https://github.com/vuematerial/vue-material/issues/2012)) ([5d54da5](https://github.com/vuematerial/vue-material/commit/5d54da5))
* fix the repeated generated css theme classes if there is multiple themes defined ([#1784](https://github.com/vuematerial/vue-material/issues/1784)) ([2922afa](https://github.com/vuematerial/vue-material/commit/2922afa))
* MdBadge do not accept color [#1854](https://github.com/vuematerial/vue-material/issues/1854) issue ([#1856](https://github.com/vuematerial/vue-material/issues/1856)) ([87cf617](https://github.com/vuematerial/vue-material/commit/87cf617))
* **MdTable:** revert asc direction ([#1776](https://github.com/vuematerial/vue-material/issues/1776)) ([0f82ace](https://github.com/vuematerial/vue-material/commit/0f82ace))
* **MdTableHead:** sort indicator position when there is only one column ([#1743](https://github.com/vuematerial/vue-material/issues/1743)) ([12f0a40](https://github.com/vuematerial/vue-material/commit/12f0a40))
* **MdTabs:** repeat import in all.scss #TimRChen ([#1848](https://github.com/vuematerial/vue-material/issues/1848)) ([2edc13c](https://github.com/vuematerial/vue-material/commit/2edc13c))
* **MdTabs:** setupObservers on mounted immediately ([#1770](https://github.com/vuematerial/vue-material/issues/1770)) ([d8dc038](https://github.com/vuematerial/vue-material/commit/d8dc038)), closes [#1768](https://github.com/vuematerial/vue-material/issues/1768)
* **MdTextarea:** resize anywhen localValue changed ([#1841](https://github.com/vuematerial/vue-material/issues/1841)) ([d81922a](https://github.com/vuematerial/vue-material/commit/d81922a)), closes [#1833](https://github.com/vuematerial/vue-material/issues/1833)
### Code Refactoring
* **MdDatepicker:** Better flow ([#1698](https://github.com/vuematerial/vue-material/issues/1698)) ([8a438ae](https://github.com/vuematerial/vue-material/commit/8a438ae)), closes [#1689](https://github.com/vuematerial/vue-material/issues/1689)
### Features
* add swipeable functionality ([#1618](https://github.com/vuematerial/vue-material/issues/1618)) ([4bed8cc](https://github.com/vuematerial/vue-material/commit/4bed8cc))
* disable complexity rules for some methods ([fb57db4](https://github.com/vuematerial/vue-material/commit/fb57db4))
* router link components improvements ([#1651](https://github.com/vuematerial/vue-material/issues/1651)) ([fee1503](https://github.com/vuematerial/vue-material/commit/fee1503)), closes [#1644](https://github.com/vuematerial/vue-material/issues/1644)
* **MdCardExpandContent:** reactive content ([#1799](https://github.com/vuematerial/vue-material/issues/1799)) ([c3f6eb0](https://github.com/vuematerial/vue-material/commit/c3f6eb0)), closes [#1795](https://github.com/vuematerial/vue-material/issues/1795)
* **MdRadio:** object support ([#1771](https://github.com/vuematerial/vue-material/issues/1771)) ([8670933](https://github.com/vuematerial/vue-material/commit/8670933)), closes [#1753](https://github.com/vuematerial/vue-material/issues/1753)
### BREAKING CHANGES
* **MdDatepicker:** upgrade date-fns to 2.0.0-alpha.7
<a name="1.0.0-beta-10.2"></a>
# [1.0.0-beta-10.2](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10.1...v1.0.0-beta-10.2) (2018-05-15)
### Bug Fixes
* **MdTable:** fix table rendering default slot twice ([#1731](https://github.com/vuematerial/vue-material/issues/1731)) ([3c61bcf](https://github.com/vuematerial/vue-material/commit/3c61bcf))
<a name="1.0.0-beta-10.1"></a>
# [1.0.0-beta-10.1](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-10...v1.0.0-beta-10.1) (2018-05-13)
### Bug Fixes
* **MdApp:** fix typo ([#1728](https://github.com/vuematerial/vue-material/issues/1728)) ([8bdbaf3](https://github.com/vuematerial/vue-material/commit/8bdbaf3)), closes [#1727](https://github.com/vuematerial/vue-material/issues/1727)
<a name="1.0.0-beta-10"></a>
# [1.0.0-beta-10](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-9...v1.0.0-beta-10) (2018-05-13)
<a name="1.0.0-beta-9"></a>
# [1.0.0-beta-9](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-8...v1.0.0-beta-9) (2018-05-13)
### Bug Fixes
* **Core:** inject SassScript value to CSS variables to fix libsass 3.5.0 ([#1620](https://github.com/vuematerial/vue-material/issues/1620)) ([4f180f6](https://github.com/vuematerial/vue-material/commit/4f180f6)), closes [/sass-lang.com/documentation/file.SASS_CHANGELOG.html#3_5_0__12_July_2017](https://github.com//sass-lang.com/documentation/file.SASS_CHANGELOG.html/issues/3_5_0__12_July_2017) [#1619](https://github.com/vuematerial/vue-material/issues/1619)
* **MdApp:** right drawer, fully reactive ([#1493](https://github.com/vuematerial/vue-material/issues/1493)) ([3ac16c7](https://github.com/vuematerial/vue-material/commit/3ac16c7)), closes [#1204](https://github.com/vuematerial/vue-material/issues/1204)
* **MdBadge:** custom class and style supported ([#1676](https://github.com/vuematerial/vue-material/issues/1676)) ([71b7afa](https://github.com/vuematerial/vue-material/commit/71b7afa))
* **MdBottomBarItem:** missing props to for router link ([#1531](https://github.com/vuematerial/vue-material/issues/1531)) ([6860d3a](https://github.com/vuematerial/vue-material/commit/6860d3a)), closes [#1412](https://github.com/vuematerial/vue-material/issues/1412)
* **MdButton:** change type of mdRippleActive prop to null to support SSR ([baf6a14](https://github.com/vuematerial/vue-material/commit/baf6a14))
* **MdButton:** fab-bottom-center style ([#1724](https://github.com/vuematerial/vue-material/issues/1724)) ([d1b296e](https://github.com/vuematerial/vue-material/commit/d1b296e)), closes [#1722](https://github.com/vuematerial/vue-material/issues/1722)
* **MdButton:** fix events when ripple is on ([#1532](https://github.com/vuematerial/vue-material/issues/1532)) ([e7f8f34](https://github.com/vuematerial/vue-material/commit/e7f8f34))
* **MdButton:** Ripple for firefox ([#1468](https://github.com/vuematerial/vue-material/issues/1468)) ([156506b](https://github.com/vuematerial/vue-material/commit/156506b)), closes [#1461](https://github.com/vuematerial/vue-material/issues/1461)
* **MdCard:** prevent showing scrollbars ([#1580](https://github.com/vuematerial/vue-material/issues/1580)) ([dc7892e](https://github.com/vuematerial/vue-material/commit/dc7892e))
* **MdChips:** improve alignment with other regular fields like md-input ([ce7e075](https://github.com/vuematerial/vue-material/commit/ce7e075))
* **MdCore:** remove all async/await from codebase ([5c3c208](https://github.com/vuematerial/vue-material/commit/5c3c208))
* **MdDialog:** remove md-primary from MdDialogConfirm's cancel button ([#1633](https://github.com/vuematerial/vue-material/issues/1633)) ([e125c0d](https://github.com/vuematerial/vue-material/commit/e125c0d)), closes [#1622](https://github.com/vuematerial/vue-material/issues/1622)
* **MdField:** fix font size for safari ([#1476](https://github.com/vuematerial/vue-material/issues/1476)) ([679f3d6](https://github.com/vuematerial/vue-material/commit/679f3d6))
* **MdField:** fix textarea and inline alignments ([#1646](https://github.com/vuematerial/vue-material/issues/1646)) ([dbeb7e9](https://github.com/vuematerial/vue-material/commit/dbeb7e9))
* **MdFile:** empty statement ([#1716](https://github.com/vuematerial/vue-material/issues/1716)) ([ae10127](https://github.com/vuematerial/vue-material/commit/ae10127)), closes [#1711](https://github.com/vuematerial/vue-material/issues/1711)
* **MdLayout:** remove breakpoint margins ([#1457](https://github.com/vuematerial/vue-material/issues/1457)) ([c568fe3](https://github.com/vuematerial/vue-material/commit/c568fe3))
* **MdMenu:** fix vertical alignment for menu items in IE ([#1615](https://github.com/vuematerial/vue-material/issues/1615)) ([5d3dfcf](https://github.com/vuematerial/vue-material/commit/5d3dfcf))
* **MdMenu:** preventDefault only for specific keys ([7c10a09](https://github.com/vuematerial/vue-material/commit/7c10a09))
* **MdMenuItem:** fix router ([#1474](https://github.com/vuematerial/vue-material/issues/1474)) ([eb6c8df](https://github.com/vuematerial/vue-material/commit/eb6c8df)), closes [#1471](https://github.com/vuematerial/vue-material/issues/1471)
* **MdProgressBar:** query style ([#1683](https://github.com/vuematerial/vue-material/issues/1683)) ([48453a1](https://github.com/vuematerial/vue-material/commit/48453a1)), closes [#1682](https://github.com/vuematerial/vue-material/issues/1682)
* **MdRipple:** clear immediately ([#1506](https://github.com/vuematerial/vue-material/issues/1506)) ([d52954a](https://github.com/vuematerial/vue-material/commit/d52954a))
* **MdSelect:** adjust position when body has margin ([#1551](https://github.com/vuematerial/vue-material/issues/1551)) ([c820b72](https://github.com/vuematerial/vue-material/commit/c820b72))
* **MdSelect:** dropdown icon align with input on botton line variant ([#1600](https://github.com/vuematerial/vue-material/issues/1600)) ([5c30f73](https://github.com/vuematerial/vue-material/commit/5c30f73))
* **MdSelect:** fix select position under md-dialog ([#1525](https://github.com/vuematerial/vue-material/issues/1525)) ([f7990c5](https://github.com/vuematerial/vue-material/commit/f7990c5)), closes [#1149](https://github.com/vuematerial/vue-material/issues/1149)
* **MdSelect:** pass props id and name as pure html attributes ([#1583](https://github.com/vuematerial/vue-material/issues/1583)) ([9fde310](https://github.com/vuematerial/vue-material/commit/9fde310))
* **MdSelect:** update the text if options are updated ([#1481](https://github.com/vuematerial/vue-material/issues/1481)) ([042e571](https://github.com/vuematerial/vue-material/commit/042e571)), closes [#1389](https://github.com/vuematerial/vue-material/issues/1389)
* **MdSteppers:** zero height in IE ([#1664](https://github.com/vuematerial/vue-material/issues/1664)) ([665732c](https://github.com/vuematerial/vue-material/commit/665732c))
* **MdTable:** emit selected/update event only when selected items really changed ([#1585](https://github.com/vuematerial/vue-material/issues/1585)) ([a591144](https://github.com/vuematerial/vue-material/commit/a591144)), closes [#1559](https://github.com/vuematerial/vue-material/issues/1559)
* **MdTable:** fix value condition for slot ([af0b89c](https://github.com/vuematerial/vue-material/commit/af0b89c))
* **MdTable:** make fixed header follow the horizontal scroll ([#1575](https://github.com/vuematerial/vue-material/issues/1575)) ([b14aac3](https://github.com/vuematerial/vue-material/commit/b14aac3))
* **MdTable:** reactive selection ([#1674](https://github.com/vuematerial/vue-material/issues/1674)) ([ddee303](https://github.com/vuematerial/vue-material/commit/ddee303)), closes [#1348](https://github.com/vuematerial/vue-material/issues/1348)
* **MdTableRow:** removeSelectableItem when empty ([#1616](https://github.com/vuematerial/vue-material/issues/1616)) ([6d787bd](https://github.com/vuematerial/vue-material/commit/6d787bd)), closes [#1610](https://github.com/vuematerial/vue-material/issues/1610)
* **MdTabs:** transparent content ([#1725](https://github.com/vuematerial/vue-material/issues/1725)) ([a4e3619](https://github.com/vuematerial/vue-material/commit/a4e3619)), closes [#1713](https://github.com/vuematerial/vue-material/issues/1713)
* build script ([0b4ffc3](https://github.com/vuematerial/vue-material/commit/0b4ffc3))
* constructor name support for IE11 ([95614b6](https://github.com/vuematerial/vue-material/commit/95614b6))
* ios devices do not trigger click events on 'non-clickable' elements ([#1634](https://github.com/vuematerial/vue-material/issues/1634)) ([63b8ac0](https://github.com/vuematerial/vue-material/commit/63b8ac0)), closes [#1503](https://github.com/vuematerial/vue-material/issues/1503)
* **MdTableRow:** update selectableItem while `mdItem` changed ([#1496](https://github.com/vuematerial/vue-material/issues/1496)) ([30c2f80](https://github.com/vuematerial/vue-material/commit/30c2f80)), closes [#1492](https://github.com/vuematerial/vue-material/issues/1492)
* **MdTabs:** correct indicator position on transition end ([#1467](https://github.com/vuematerial/vue-material/issues/1467)) ([bc3b611](https://github.com/vuematerial/vue-material/commit/bc3b611)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** remove ResizeObserver to improve the size and position calculation ([#1552](https://github.com/vuematerial/vue-material/issues/1552)) ([ef0cd2f](https://github.com/vuematerial/vue-material/commit/ef0cd2f))
* make dev env works ([a8e3978](https://github.com/vuematerial/vue-material/commit/a8e3978))
### Components
* **MdBadge:** new md-badge component ([#1465](https://github.com/vuematerial/vue-material/issues/1465)) ([3c60a38](https://github.com/vuematerial/vue-material/commit/3c60a38))
### Features
* **MdBadge:** add prop validation ([a53aff6](https://github.com/vuematerial/vue-material/commit/a53aff6))
* **MdCheckbox:** add `indeterminate` variant ([#1597](https://github.com/vuematerial/vue-material/issues/1597)) ([e373857](https://github.com/vuematerial/vue-material/commit/e373857))
* **MdCheckbox:** add object to possible checkbox value ([#1556](https://github.com/vuematerial/vue-material/issues/1556)) ([05821e2](https://github.com/vuematerial/vue-material/commit/05821e2))
* **MdCheckBox:** True / false value supporting ([#1703](https://github.com/vuematerial/vue-material/issues/1703)) ([7cdcb66](https://github.com/vuematerial/vue-material/commit/7cdcb66)), closes [#1701](https://github.com/vuematerial/vue-material/issues/1701)
* **MdChips:** Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([c502a16](https://github.com/vuematerial/vue-material/commit/c502a16))
* **MdDatepicker:** add close and open events ([#1577](https://github.com/vuematerial/vue-material/issues/1577)) ([5cb9b7b](https://github.com/vuematerial/vue-material/commit/5cb9b7b))
* **MdDatepicker:** add immediately option ([#1607](https://github.com/vuematerial/vue-material/issues/1607)) ([f62ec6a](https://github.com/vuematerial/vue-material/commit/f62ec6a)), closes [#1606](https://github.com/vuematerial/vue-material/issues/1606)
* **MdDatepicker:** Debounce the conversion into a date object ([#1666](https://github.com/vuematerial/vue-material/issues/1666)) ([a47ebe1](https://github.com/vuematerial/vue-material/commit/a47ebe1))
* **MdDialog:** add emit event when clicked outside of dialog ([#1567](https://github.com/vuematerial/vue-material/issues/1567)) ([b19f6f0](https://github.com/vuematerial/vue-material/commit/b19f6f0))
* **MdField:** add [@md](https://github.com/md)-clear event ([#1635](https://github.com/vuematerial/vue-material/issues/1635)) ([6ef5235](https://github.com/vuematerial/vue-material/commit/6ef5235))
* **MdField:** add prefixes and suffixes ([#1592](https://github.com/vuematerial/vue-material/issues/1592)) ([a30d84c](https://github.com/vuematerial/vue-material/commit/a30d84c))
* **MdField:** new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([f2347f1](https://github.com/vuematerial/vue-material/commit/f2347f1))
* **MdFile:** Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([fbf6d2a](https://github.com/vuematerial/vue-material/commit/fbf6d2a))
* **MdList:** expand only one option ([#1645](https://github.com/vuematerial/vue-material/issues/1645)) ([09b8573](https://github.com/vuematerial/vue-material/commit/09b8573)), closes [#1641](https://github.com/vuematerial/vue-material/issues/1641)
* **MdListItemExpand:** add expanded and collapsed events ([#1495](https://github.com/vuematerial/vue-material/issues/1495)) ([11c2785](https://github.com/vuematerial/vue-material/commit/11c2785)), closes [#1490](https://github.com/vuematerial/vue-material/issues/1490)
* **MdMenu:** new props mdCloseOnClick ([#1630](https://github.com/vuematerial/vue-material/issues/1630)) ([ecf5cb7](https://github.com/vuematerial/vue-material/commit/ecf5cb7))
* **MdSnackbar:** keep alive if its persistent ([#1561](https://github.com/vuematerial/vue-material/issues/1561)) ([33007b4](https://github.com/vuematerial/vue-material/commit/33007b4))
* **MdTable:** allow 2D array as the model value ([#1477](https://github.com/vuematerial/vue-material/issues/1477)) ([aed487a](https://github.com/vuematerial/vue-material/commit/aed487a))
* **MdTable:** allow custom value for mdHeight ([#1522](https://github.com/vuematerial/vue-material/issues/1522)) ([c63b757](https://github.com/vuematerial/vue-material/commit/c63b757))
* **MdTableCell:** add `md-id` prop ([#1584](https://github.com/vuematerial/vue-material/issues/1584)) ([7e7249a](https://github.com/vuematerial/vue-material/commit/7e7249a))
### Performance Improvements
* move universal selector from html tag ([#1652](https://github.com/vuematerial/vue-material/issues/1652)) ([2340eae](https://github.com/vuematerial/vue-material/commit/2340eae))
### Reverts
* new field variants ([#1545](https://github.com/vuematerial/vue-material/issues/1545)) ([ff0a5bf](https://github.com/vuematerial/vue-material/commit/ff0a5bf))
* Support with field variants ([#1662](https://github.com/vuematerial/vue-material/issues/1662)) ([e1bfad0](https://github.com/vuematerial/vue-material/commit/e1bfad0))
* Support with field variants ([#1668](https://github.com/vuematerial/vue-material/issues/1668)) ([5b8e0fe](https://github.com/vuematerial/vue-material/commit/5b8e0fe))
### BREAKING CHANGES
* **MdApp:** Replace useless props `mdLeft` with `!this.mdRight`
* **MdApp:** no more than one drawer in a MdApp
* fix(MdDrawerRightPrevious): right drawer styles
use an previous element for styling container with right drawer with similar css codes
* fix(MdDrawer): Temporary style
* fix(MdAppSideDrawer): correct component name
* fix(MdApp): reactive persistent drawer
fully reactive drawer
* **MdCheckBox:** checkbox without setting value is true / false as default
<a name="1.0.0-beta-8"></a>
# [1.0.0-beta-8](https://github.com/vuematerial/vue-material/compare/4521af6...v1.0.0-beta-8) (2018-01-29)
### Bug Fixes
* **MdApp:** create card inside overlap mode ([607143f](https://github.com/vuematerial/vue-material/commit/607143f))
* **MdApp:** fix fixed-last not revealing the first row after scroll up ([bad65a2](https://github.com/vuematerial/vue-material/commit/bad65a2))
* **MdApp:** fix persistent drawer not pushing the content ([0388d84](https://github.com/vuematerial/vue-material/commit/0388d84))
* **MdApp:** fix persistent drawer not pushing the content ([7d86e8c](https://github.com/vuematerial/vue-material/commit/7d86e8c))
* **MdApp:** fix reveal scroll flickering after 1px scroll ([2fb232e](https://github.com/vuematerial/vue-material/commit/2fb232e))
* **MdApp:** fix reveal scroll not being updated ([6ed4522](https://github.com/vuematerial/vue-material/commit/6ed4522))
* **MdApp:** fix styles after ssr support ([27e9e7d](https://github.com/vuematerial/vue-material/commit/27e9e7d))
* **MdApp:** prevent md-app withou children to raise an error ([5b71335](https://github.com/vuematerial/vue-material/commit/5b71335))
* **MdAutocomplete:** fix input emit when cleared ([#1295](https://github.com/vuematerial/vue-material/issues/1295)) ([8a055e8](https://github.com/vuematerial/vue-material/commit/8a055e8))
* **MdAutocomplete:** prevent show options twice ([#1410](https://github.com/vuematerial/vue-material/issues/1410)) ([6a719b5](https://github.com/vuematerial/vue-material/commit/6a719b5)), closes [#1408](https://github.com/vuematerial/vue-material/issues/1408)
* **MdAutocomplete:** sync v-model with search term ([#1218](https://github.com/vuematerial/vue-material/issues/1218)) ([e9bb62e](https://github.com/vuematerial/vue-material/commit/e9bb62e)), closes [#1215](https://github.com/vuematerial/vue-material/issues/1215)
* **MdBottomBar:** avoid class colisions ([fe916d3](https://github.com/vuematerial/vue-material/commit/fe916d3))
* **MdButton:** add full support for router-link ([6353774](https://github.com/vuematerial/vue-material/commit/6353774))
* **MdButton:** create better detection of router-link to support hmr ([2db10a6](https://github.com/vuematerial/vue-material/commit/2db10a6))
* **MdButton:** file not being recognized by GitHub fs ([920817c](https://github.com/vuematerial/vue-material/commit/920817c))
* **MdButton:** force MdRipple to be added when using MdButton alone ([9b59a9f](https://github.com/vuematerial/vue-material/commit/9b59a9f))
* **MdButton:** read all router link properties and bind to button props ([271f059](https://github.com/vuematerial/vue-material/commit/271f059))
* **MdCard:** fix some theme errors and glitches ([7c47cca](https://github.com/vuematerial/vue-material/commit/7c47cca))
* **MdCheckbox:** typo ([ca0c2a4](https://github.com/vuematerial/vue-material/commit/ca0c2a4))
* **MdChips:** fix issues ([#1159](https://github.com/vuematerial/vue-material/issues/1159)) ([dc428dd](https://github.com/vuematerial/vue-material/commit/dc428dd))
* **MdChips:** add labels for static chips ([#1329](https://github.com/vuematerial/vue-material/issues/1329)) ([b7094cb](https://github.com/vuematerial/vue-material/commit/b7094cb)), closes [#1327](https://github.com/vuematerial/vue-material/issues/1327)
* **MdChips:** make chip allow spaces ([#1211](https://github.com/vuematerial/vue-material/issues/1211)) ([0030083](https://github.com/vuematerial/vue-material/commit/0030083)), closes [#1207](https://github.com/vuematerial/vue-material/issues/1207)
* **MdCore:** prop validator message now uses Vue.util.warn ([c76a630](https://github.com/vuematerial/vue-material/commit/c76a630))
* **MdDatepicker:** avoid warning for duplicated keys ([#1379](https://github.com/vuematerial/vue-material/issues/1379)) ([70712d7](https://github.com/vuematerial/vue-material/commit/70712d7))
* **MdDatepicker:** show today if date is not selected ([#1214](https://github.com/vuematerial/vue-material/issues/1214)) ([ac76cd7](https://github.com/vuematerial/vue-material/commit/ac76cd7)), closes [#1200](https://github.com/vuematerial/vue-material/issues/1200)
* **MdDialog:** IE not rendering Dialogs ([#1356](https://github.com/vuematerial/vue-material/issues/1356)) ([8115f32](https://github.com/vuematerial/vue-material/commit/8115f32))
* **MdDialog:** make prompt dialogs to work with v-model ([9daa006](https://github.com/vuematerial/vue-material/commit/9daa006))
* **MdDivider:** create divider as <li> tag when direct inside lists ([d807367](https://github.com/vuematerial/vue-material/commit/d807367))
* **MdDrawer:** always enforce drawers as array ([3758794](https://github.com/vuematerial/vue-material/commit/3758794))
* **MdDrawer:** revert old behavior for persistent ([cb242c7](https://github.com/vuematerial/vue-material/commit/cb242c7))
* **MdField:** Consider number `0` as hasValue ([#1407](https://github.com/vuematerial/vue-material/issues/1407)) ([d026496](https://github.com/vuematerial/vue-material/commit/d026496)), closes [#1406](https://github.com/vuematerial/vue-material/issues/1406)
* **MdField:** disable clear button while field is disabled ([#1326](https://github.com/vuematerial/vue-material/issues/1326)) ([03a9425](https://github.com/vuematerial/vue-material/commit/03a9425)), closes [#1321](https://github.com/vuematerial/vue-material/issues/1321)
* **MdField:** improve error states and input reset ([1a389b0](https://github.com/vuematerial/vue-material/commit/1a389b0))
* **MdField:** improve icon position ([38245ae](https://github.com/vuematerial/vue-material/commit/38245ae))
* **MdField:** make type prop only available for input ([a69d46c](https://github.com/vuematerial/vue-material/commit/a69d46c))
* **MdField:** make v-model work with vue 2.5.x ([5596575](https://github.com/vuematerial/vue-material/commit/5596575))
* **MdField:** preserve the name attribute on change ([#1385](https://github.com/vuematerial/vue-material/issues/1385)) ([0a83834](https://github.com/vuematerial/vue-material/commit/0a83834))
* **MdField:** prevent MdInput and MdTextarea from emit input events directly ([#1285](https://github.com/vuematerial/vue-material/issues/1285)) ([00832e9](https://github.com/vuematerial/vue-material/commit/00832e9)), closes [#1261](https://github.com/vuematerial/vue-material/issues/1261)
* **MdField:** restore the order after upgrade to Vue 2.4 ([d526aff](https://github.com/vuematerial/vue-material/commit/d526aff))
* **MdField:** theme icons ([16added](https://github.com/vuematerial/vue-material/commit/16added))
* **MdFile:** add required v-model ([3232cbb](https://github.com/vuematerial/vue-material/commit/3232cbb))
* **MdFile:** Remove calling method `onInput` which doesn't exist ([#1176](https://github.com/vuematerial/vue-material/issues/1176)) ([5bf3476](https://github.com/vuematerial/vue-material/commit/5bf3476)), closes [#1163](https://github.com/vuematerial/vue-material/issues/1163)
* **MdHighlightText:** avoid printing 'null' as a value ([#1352](https://github.com/vuematerial/vue-material/issues/1352)) ([4d906b6](https://github.com/vuematerial/vue-material/commit/4d906b6)), closes [#1351](https://github.com/vuematerial/vue-material/issues/1351)
* **MdInput:** avoid InputEvent object from [@input](https://github.com/input) event ([#1196](https://github.com/vuematerial/vue-material/issues/1196)) ([12a4219](https://github.com/vuematerial/vue-material/commit/12a4219)), closes [#1160](https://github.com/vuematerial/vue-material/issues/1160) [#1150](https://github.com/vuematerial/vue-material/issues/1150) [#1203](https://github.com/vuematerial/vue-material/issues/1203) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856051](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856051) [/github.com/vuematerial/vue-material/pull/1196#discussion_r152856346](https://github.com//github.com/vuematerial/vue-material/pull/1196/issues/discussion_r152856346)
* **MdInput:** fix password toggle ([#1178](https://github.com/vuematerial/vue-material/issues/1178)) ([65030e7](https://github.com/vuematerial/vue-material/commit/65030e7)), closes [#1170](https://github.com/vuematerial/vue-material/issues/1170)
* **MdLayout:** add xlarge and large classes to the layout component ([#1323](https://github.com/vuematerial/vue-material/issues/1323)) ([6c5fe65](https://github.com/vuematerial/vue-material/commit/6c5fe65))
* **MdLayout:** change gutter from padding to margin ([55419b3](https://github.com/vuematerial/vue-material/commit/55419b3))
* **MdLayout:** make all content inside a layout without wrap ([152c9c3](https://github.com/vuematerial/vue-material/commit/152c9c3))
* **MdList:** add active style ([fb1c253](https://github.com/vuematerial/vue-material/commit/fb1c253))
* **MdList:** add full support to router-link ([4cbb036](https://github.com/vuematerial/vue-material/commit/4cbb036))
* **MdMenu:** Close menu while another is opened ([#1266](https://github.com/vuematerial/vue-material/issues/1266)) ([ef720c4](https://github.com/vuematerial/vue-material/commit/ef720c4)), closes [#1255](https://github.com/vuematerial/vue-material/issues/1255)
* **MdMenu:** fix close-on-select props ([#1280](https://github.com/vuematerial/vue-material/issues/1280)) ([40406af](https://github.com/vuematerial/vue-material/commit/40406af)), closes [#1279](https://github.com/vuematerial/vue-material/issues/1279)
* **MdOverlay:** make all overlays inside body display:fixed by default ([670a96d](https://github.com/vuematerial/vue-material/commit/670a96d))
* **MdPortal:** always check if targetEl exists after apply it ([3fae6b0](https://github.com/vuematerial/vue-material/commit/3fae6b0))
* **MdPortal:** check fro only children elements before remove ([d7e5845](https://github.com/vuematerial/vue-material/commit/d7e5845))
* **MdPortal:** get the correct transition duration before removing a portal element ([35e4e9d](https://github.com/vuematerial/vue-material/commit/35e4e9d))
* **MdPortal:** improve re render of a portal element ([9631403](https://github.com/vuematerial/vue-material/commit/9631403))
* **MdPortal:** make document.body as a default target for portal ([d438d72](https://github.com/vuematerial/vue-material/commit/d438d72))
* **MdProgressSpinner:** fix firefox radius ([#1221](https://github.com/vuematerial/vue-material/issues/1221)) ([0686e8a](https://github.com/vuematerial/vue-material/commit/0686e8a))
* **MdProgressSpinner:** undefined navigator on SSR ([#1441](https://github.com/vuematerial/vue-material/issues/1441)) ([4722dad](https://github.com/vuematerial/vue-material/commit/4722dad))
* **MdRipple:** clear ripples if called programatically ([#1431](https://github.com/vuematerial/vue-material/issues/1431)) ([9e6aa8a](https://github.com/vuematerial/vue-material/commit/9e6aa8a))
* **MdRipple:** improve ripple performance ([bd0e058](https://github.com/vuematerial/vue-material/commit/bd0e058))
* **MdRipple:** make ripple to be disabled globally ([125ebb4](https://github.com/vuematerial/vue-material/commit/125ebb4))
* **MdRipple:** prevent ripple when scrolling a list ([f183dfe](https://github.com/vuematerial/vue-material/commit/f183dfe))
* **MdScrollbar:** fix scrollbar color and size to better match specs ([5fb4123](https://github.com/vuematerial/vue-material/commit/5fb4123))
* **MdSelect:** emit `md-selected` event after `localValue` changed ([#1282](https://github.com/vuematerial/vue-material/issues/1282)) ([023723a](https://github.com/vuematerial/vue-material/commit/023723a)), closes [#1275](https://github.com/vuematerial/vue-material/issues/1275)
* **MdSelect:** fix dense layout not being rendered properly ([#1346](https://github.com/vuematerial/vue-material/issues/1346)) ([7110eab](https://github.com/vuematerial/vue-material/commit/7110eab)), closes [#1332](https://github.com/vuematerial/vue-material/issues/1332)
* **MdSelect:** fix regression in select model variable name ([c7cff56](https://github.com/vuematerial/vue-material/commit/c7cff56))
* **MdSelect:** make options in disabled groups un-selectable ([#1293](https://github.com/vuematerial/vue-material/issues/1293)) ([89138eb](https://github.com/vuematerial/vue-material/commit/89138eb)), closes [#1286](https://github.com/vuematerial/vue-material/issues/1286)
* **MdSelect:** prevent overflowing arrow icon ([#1373](https://github.com/vuematerial/vue-material/issues/1373)) ([637e914](https://github.com/vuematerial/vue-material/commit/637e914))
* **MdSelect:** prevent select from getting a wrong highlight when mounted ([e3eb993](https://github.com/vuematerial/vue-material/commit/e3eb993))
* **MdSelect:** Reactive options ([#1447](https://github.com/vuematerial/vue-material/issues/1447)) ([01dfdfb](https://github.com/vuematerial/vue-material/commit/01dfdfb)), closes [#1262](https://github.com/vuematerial/vue-material/issues/1262)
* **MdSnackbar:** adjust margins and padding to be compliant with the specs ([5297291](https://github.com/vuematerial/vue-material/commit/5297291))
* **MdSnackbar:** fix snackbar not opening when is not persistent ([6d5a448](https://github.com/vuematerial/vue-material/commit/6d5a448))
* **MdSteppers:** fix styles of vertical steppers being applies to horizontal ([5a5d028](https://github.com/vuematerial/vue-material/commit/5a5d028))
* **MdSteppers:** recalculate styles on window resize ([#1394](https://github.com/vuematerial/vue-material/issues/1394)) ([d3953f7](https://github.com/vuematerial/vue-material/commit/d3953f7))
* **MdTable:** change sort methods ([75c603b](https://github.com/vuematerial/vue-material/commit/75c603b))
* **MdTable:** change sort methods ([64a332b](https://github.com/vuematerial/vue-material/commit/64a332b))
* **MdTable:** fix error to sort by attribute of child object ([#1309](https://github.com/vuematerial/vue-material/issues/1309)) ([9134227](https://github.com/vuematerial/vue-material/commit/9134227))
* **MdTable:** fix height of fixed table for firefox ([#1384](https://github.com/vuematerial/vue-material/issues/1384)) ([e24f8dc](https://github.com/vuematerial/vue-material/commit/e24f8dc))
* **MdTable:** improve sort function on table for numbered columns ([#1353](https://github.com/vuematerial/vue-material/issues/1353)) ([18bb96c](https://github.com/vuematerial/vue-material/commit/18bb96c)), closes [#1349](https://github.com/vuematerial/vue-material/issues/1349)
* **MdTable:** remove table head when column removed ([#1354](https://github.com/vuematerial/vue-material/issues/1354)) ([b54eb10](https://github.com/vuematerial/vue-material/commit/b54eb10)), closes [#1347](https://github.com/vuematerial/vue-material/issues/1347)
* **MdTable:** sync hasValue when the value changes ([#1147](https://github.com/vuematerial/vue-material/issues/1147)) ([fdc5dab](https://github.com/vuematerial/vue-material/commit/fdc5dab)), closes [#1146](https://github.com/vuematerial/vue-material/issues/1146) [#1146](https://github.com/vuematerial/vue-material/issues/1146)
* **MdTabs:** correct indicator position while alignment changed ([#1442](https://github.com/vuematerial/vue-material/issues/1442)) ([c5fc2f5](https://github.com/vuematerial/vue-material/commit/c5fc2f5)), closes [#1432](https://github.com/vuematerial/vue-material/issues/1432)
* **MdTabs:** fix indicator ([#1448](https://github.com/vuematerial/vue-material/issues/1448)) ([b33d0d6](https://github.com/vuematerial/vue-material/commit/b33d0d6)), closes [#1304](https://github.com/vuematerial/vue-material/issues/1304)
* **MdTextarea:** fix input event handler not triggering ([#1341](https://github.com/vuematerial/vue-material/issues/1341)) ([567e9a7](https://github.com/vuematerial/vue-material/commit/567e9a7)), closes [#1340](https://github.com/vuematerial/vue-material/issues/1340)
* **MdTextarea:** prevent emitting `inputEvent` object on `input` ([#1249](https://github.com/vuematerial/vue-material/issues/1249)) ([c83f2a6](https://github.com/vuematerial/vue-material/commit/c83f2a6)), closes [#1247](https://github.com/vuematerial/vue-material/issues/1247)
* **MdTooltip:** `mdActive` never updated to true using `.sync` modifier ([b1018fb](https://github.com/vuematerial/vue-material/commit/b1018fb))
* **MdTooltip:** overlaying in dialog ([#1446](https://github.com/vuematerial/vue-material/issues/1446)) ([8ade40f](https://github.com/vuematerial/vue-material/commit/8ade40f))
* add beta flag ([bd96842](https://github.com/vuematerial/vue-material/commit/bd96842))
* add jest-vue to replace jest-vue-preprocessor ([505627c](https://github.com/vuematerial/vue-material/commit/505627c))
* change broken image ([0868406](https://github.com/vuematerial/vue-material/commit/0868406))
* fix splash not changing the colors properly ([94f9d92](https://github.com/vuematerial/vue-material/commit/94f9d92))
* getting startet with wrong javascript markup ([7914eb8](https://github.com/vuematerial/vue-material/commit/7914eb8))
* getting startet with wrong javascript markup ([73360f8](https://github.com/vuematerial/vue-material/commit/73360f8))
* menu compatibility with IE (node type statement) ([#1365](https://github.com/vuematerial/vue-material/issues/1365)) ([a4c03be](https://github.com/vuematerial/vue-material/commit/a4c03be)), closes [#1263](https://github.com/vuematerial/vue-material/issues/1263) [#1263](https://github.com/vuematerial/vue-material/issues/1263)
* remove global scoped css affecting all md-content elements ([5fa0d52](https://github.com/vuematerial/vue-material/commit/5fa0d52))
* remove invalid content ([5412ae1](https://github.com/vuematerial/vue-material/commit/5412ae1))
* remove post install ([a859157](https://github.com/vuematerial/vue-material/commit/a859157))
* upgrade vue-template-compiler in yarn.lock ([#1306](https://github.com/vuematerial/vue-material/issues/1306)) ([b1bc2e1](https://github.com/vuematerial/vue-material/commit/b1bc2e1))
* **MdToolbar:** fix offset alignment for small screens ([9117cfd](https://github.com/vuematerial/vue-material/commit/9117cfd))
* **MdToolbar:** fix offset alignment for small screens ([acbecce](https://github.com/vuematerial/vue-material/commit/acbecce))
* change default fab color to accent ([5893895](https://github.com/vuematerial/vue-material/commit/5893895))
* make checkbo and radio to work with disabled attribute ([88d7755](https://github.com/vuematerial/vue-material/commit/88d7755))
* make field to have an required indicator ([facbea8](https://github.com/vuematerial/vue-material/commit/facbea8))
* make input id unique per instance ([981d281](https://github.com/vuematerial/vue-material/commit/981d281))
* make meta colors off by default and add an option to enable it ([c67a1c0](https://github.com/vuematerial/vue-material/commit/c67a1c0))
* z-index issues ([#1264](https://github.com/vuematerial/vue-material/issues/1264)) ([843056d](https://github.com/vuematerial/vue-material/commit/843056d)), closes [#1134](https://github.com/vuematerial/vue-material/issues/1134)
### Components
* **MdApp:** create a app shell utility to hold drawers ([9d2617e](https://github.com/vuematerial/vue-material/commit/9d2617e))
* **MdAutocomplete:** add better documentation examples ([a448325](https://github.com/vuematerial/vue-material/commit/a448325))
* **MdAvatar:** create avatar component ([#15](https://github.com/vuematerial/vue-material/issues/15)) ([5a6d2e0](https://github.com/vuematerial/vue-material/commit/5a6d2e0))
* **MdCard:** add cards ([17ed67b](https://github.com/vuematerial/vue-material/commit/17ed67b))
* **MdCheckbox:** cr
gitextract_psytouek/
├── .babelrc
├── .codeclimate.yml
├── .editorconfig
├── .eslintignore
├── .eslintrc
├── .github/
│ ├── CODE_OF_CONDUCT.md
│ ├── COMMIT_CONVENTION.md
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE.md
│ ├── PULL_REQUEST_TEMPLATE.md
│ ├── config.yml
│ └── stale.yml
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── FUNDING.yml
├── LICENSE.md
├── README.md
├── ROADMAP.md
├── build/
│ ├── config.js
│ ├── docs/
│ │ ├── index.js
│ │ ├── offline.js
│ │ └── webpack.js
│ ├── generate-changelog.js
│ ├── git-hooks/
│ │ ├── commit-msg
│ │ ├── install.sh
│ │ ├── pre-commit
│ │ └── pre-push
│ ├── lib/
│ │ ├── banner.js
│ │ ├── index.js
│ │ ├── themes.js
│ │ └── webpack.js
│ ├── loaders/
│ │ └── component-example-loader.js
│ ├── local/
│ │ ├── client.js
│ │ ├── index.js
│ │ └── webpack.js
│ ├── new-component.js
│ └── release.sh
├── dist/
│ ├── base/
│ │ └── theme.scss
│ ├── components/
│ │ ├── MdApp/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAutocomplete/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAvatar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBadge/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBottomBar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdButton/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCard/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCheckbox/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdChips/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdContent/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDatepicker/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDialog/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDivider/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDrawer/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdElevation/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdEmptyState/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdField/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdHighlightText/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdIcon/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdImage/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdLayout/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdList/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdMenu/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdProgress/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRadio/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRipple/
│ │ │ ├── index.css
│ │ │ └── index.js
│ │ ├── MdSnackbar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSpeedDial/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSteppers/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSubheader/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSwitch/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTable/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTabs/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdToolbar/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTooltip/
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── index.css
│ │ └── index.js
│ ├── theme/
│ │ ├── all.scss
│ │ ├── black-green-dark.css
│ │ ├── black-green-light.css
│ │ ├── color-contrast.scss
│ │ ├── default-dark.css
│ │ ├── default.css
│ │ ├── engine.scss
│ │ ├── functions.scss
│ │ ├── mixins.scss
│ │ ├── palette.scss
│ │ ├── prebuilt/
│ │ │ ├── black-green-dark.scss
│ │ │ ├── black-green-light.scss
│ │ │ ├── default-dark.scss
│ │ │ └── default.scss
│ │ └── variables.scss
│ ├── vue-material.css
│ └── vue-material.js
├── docs/
│ ├── _redirects
│ ├── app/
│ │ ├── App.vue
│ │ ├── banner.js
│ │ ├── components/
│ │ │ ├── AdManager.vue
│ │ │ ├── ApiItem.vue
│ │ │ ├── ApiTable/
│ │ │ │ ├── ApiTable.vue
│ │ │ │ └── theme.scss
│ │ │ ├── CodeBlock.vue
│ │ │ ├── CodeExample.vue
│ │ │ ├── CodeLoading.vue
│ │ │ ├── CodesandboxEdit.vue
│ │ │ ├── DocsLoader.vue
│ │ │ ├── GridLayout.vue
│ │ │ ├── GridLayoutItem.vue
│ │ │ ├── LogoVueMaterial.vue
│ │ │ ├── NoteBlock/
│ │ │ │ ├── NoteBlock.vue
│ │ │ │ └── theme.scss
│ │ │ ├── PageContainer.vue
│ │ │ ├── SplashContainer.vue
│ │ │ ├── icons/
│ │ │ │ └── IconButton.vue
│ │ │ └── index.js
│ │ ├── config.js
│ │ ├── i18n/
│ │ │ ├── en-US/
│ │ │ │ ├── components.js
│ │ │ │ ├── index.js
│ │ │ │ └── pages.js
│ │ │ └── index.js
│ │ ├── index.js
│ │ ├── mixins/
│ │ │ ├── codeSource.js
│ │ │ └── docsExample.js
│ │ ├── pages/
│ │ │ ├── About.vue
│ │ │ ├── Components/
│ │ │ │ ├── App/
│ │ │ │ │ ├── App.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Flexible.vue
│ │ │ │ │ ├── LastRowFixed.vue
│ │ │ │ │ ├── Normal.vue
│ │ │ │ │ ├── Overlap.vue
│ │ │ │ │ ├── Reveal.vue
│ │ │ │ │ └── Waterfall.vue
│ │ │ │ ├── Autocomplete/
│ │ │ │ │ ├── Autocomplete.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutocompleteAsync.vue
│ │ │ │ │ ├── AutocompleteBox.vue
│ │ │ │ │ ├── AutocompleteSearch.vue
│ │ │ │ │ ├── AutocompleteStatic.vue
│ │ │ │ │ ├── AutocompleteTemplate.vue
│ │ │ │ │ └── AutocompleteTrigger.vue
│ │ │ │ ├── Avatar/
│ │ │ │ │ ├── Avatar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Placeholder.vue
│ │ │ │ │ ├── Regular.vue
│ │ │ │ │ └── Sizes.vue
│ │ │ │ ├── Badge/
│ │ │ │ │ ├── Badge.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Buttons.vue
│ │ │ │ │ ├── Dense.vue
│ │ │ │ │ └── Lists.vue
│ │ │ │ ├── BottomBar/
│ │ │ │ │ ├── BottomBar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BarCustomTemplate.vue
│ │ │ │ │ ├── BarRouter.vue
│ │ │ │ │ ├── ChangingThemes.vue
│ │ │ │ │ └── Shift.vue
│ │ │ │ ├── Button/
│ │ │ │ │ ├── Button.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ButtonRouter.vue
│ │ │ │ │ ├── ButtonVsLink.vue
│ │ │ │ │ ├── FloatingButtons.vue
│ │ │ │ │ ├── IconButtons.vue
│ │ │ │ │ └── RegularButtons.vue
│ │ │ │ ├── Card/
│ │ │ │ │ ├── Card.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── CardExpansion.vue
│ │ │ │ │ ├── Layouts.vue
│ │ │ │ │ ├── Media.vue
│ │ │ │ │ ├── MediaCover.vue
│ │ │ │ │ ├── RegularCards.vue
│ │ │ │ │ └── ThemeColors.vue
│ │ │ │ ├── Checkbox/
│ │ │ │ │ ├── Checkbox.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── CheckboxHueColors.vue
│ │ │ │ │ ├── RegularCheckboxes.vue
│ │ │ │ │ └── TrueFalseValue.vue
│ │ │ │ ├── Chips/
│ │ │ │ │ ├── Chips.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutoInsert.vue
│ │ │ │ │ ├── ChipCustomTemplate.vue
│ │ │ │ │ ├── DuplicatedFeedback.vue
│ │ │ │ │ ├── Editable.vue
│ │ │ │ │ ├── Format.vue
│ │ │ │ │ ├── SingleChip.vue
│ │ │ │ │ ├── Static.vue
│ │ │ │ │ └── Themed.vue
│ │ │ │ ├── Content/
│ │ │ │ │ ├── Content.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── PaperContent.vue
│ │ │ │ ├── Datepicker/
│ │ │ │ │ ├── Datepicker.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BasicDatepicker.vue
│ │ │ │ │ ├── CancelOpenDatepicker.vue
│ │ │ │ │ ├── CloseOnSelectDatepicker.vue
│ │ │ │ │ ├── DisabledDatesDatepicker.vue
│ │ │ │ │ ├── LabeledDatepicker.vue
│ │ │ │ │ └── MultiTypesDatepicker.vue
│ │ │ │ ├── Dialog/
│ │ │ │ │ ├── Dialog.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── DialogAlert.vue
│ │ │ │ │ ├── DialogConfirm.vue
│ │ │ │ │ ├── DialogCustom.vue
│ │ │ │ │ └── DialogPrompt.vue
│ │ │ │ ├── Divider/
│ │ │ │ │ ├── Divider.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── Divider.vue
│ │ │ │ ├── Drawer/
│ │ │ │ │ ├── Drawer.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── PermanentCard.vue
│ │ │ │ │ ├── PermanentClipped.vue
│ │ │ │ │ ├── PermanentFull.vue
│ │ │ │ │ ├── PersistentFull.vue
│ │ │ │ │ ├── PersistentMini.vue
│ │ │ │ │ └── Temporary.vue
│ │ │ │ ├── EmptyState/
│ │ │ │ │ ├── EmptyState.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── EmptyStateBasic.vue
│ │ │ │ │ ├── EmptyStateColors.vue
│ │ │ │ │ └── EmptyStateRounded.vue
│ │ │ │ ├── File/
│ │ │ │ │ ├── File.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── FileField.vue
│ │ │ │ ├── Form/
│ │ │ │ │ ├── Form.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── FormValidation.vue
│ │ │ │ ├── Icon/
│ │ │ │ │ ├── Icon.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── FontAwesome.vue
│ │ │ │ │ ├── MaterialIcons.vue
│ │ │ │ │ └── SvgAssets.vue
│ │ │ │ ├── Input/
│ │ │ │ │ ├── Input.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Counters.vue
│ │ │ │ │ ├── ErrorsMessages.vue
│ │ │ │ │ ├── FieldIcons.vue
│ │ │ │ │ ├── Fixes.vue
│ │ │ │ │ ├── InlineActions.vue
│ │ │ │ │ └── TextFields.vue
│ │ │ │ ├── List/
│ │ │ │ │ ├── List.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Controls.vue
│ │ │ │ │ ├── DoubleLine.vue
│ │ │ │ │ ├── ListExpansion.vue
│ │ │ │ │ ├── ListTypes.vue
│ │ │ │ │ ├── SingleLine.vue
│ │ │ │ │ └── TripleLine.vue
│ │ │ │ ├── Menu/
│ │ │ │ │ ├── Menu.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AutoClose.vue
│ │ │ │ │ ├── Directions.vue
│ │ │ │ │ ├── MenuAlignments.vue
│ │ │ │ │ ├── MultipleContent.vue
│ │ │ │ │ └── Sizes.vue
│ │ │ │ ├── ProgressBar/
│ │ │ │ │ ├── ProgressBar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ProgressBarBuffer.vue
│ │ │ │ │ ├── ProgressBarDeterminate.vue
│ │ │ │ │ ├── ProgressBarIndeterminate.vue
│ │ │ │ │ └── ProgressBarQuery.vue
│ │ │ │ ├── ProgressSpinner/
│ │ │ │ │ ├── ProgressSpinner.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ProgressSpinnerDeterminate.vue
│ │ │ │ │ ├── ProgressSpinnerIndeterminate.vue
│ │ │ │ │ └── ProgressSpinnerSizes.vue
│ │ │ │ ├── Radio/
│ │ │ │ │ ├── Radio.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── RadioHueColors.vue
│ │ │ │ │ └── RegularRadio.vue
│ │ │ │ ├── Select/
│ │ │ │ │ ├── Select.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── BasicSelect.vue
│ │ │ │ │ ├── DenseSelect.vue
│ │ │ │ │ ├── DisabledSelect.vue
│ │ │ │ │ ├── MultipleSelect.vue
│ │ │ │ │ └── OptgroupSelect.vue
│ │ │ │ ├── Snackbar/
│ │ │ │ │ ├── Snackbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SnackbarExample.vue
│ │ │ │ ├── SpeedDial/
│ │ │ │ │ ├── SpeedDial.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── AnimationTypes.vue
│ │ │ │ │ ├── EventTriggers.vue
│ │ │ │ │ ├── MorphingIcon.vue
│ │ │ │ │ └── PositionDirection.vue
│ │ │ │ ├── Steppers/
│ │ │ │ │ ├── Steppers.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── StepperAlternative.vue
│ │ │ │ │ ├── StepperHorizontal.vue
│ │ │ │ │ ├── StepperLinear.vue
│ │ │ │ │ ├── StepperNonEditable.vue
│ │ │ │ │ ├── StepperRoute.vue
│ │ │ │ │ └── StepperVertical.vue
│ │ │ │ ├── Subheader/
│ │ │ │ │ ├── Subheader.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SubheaderExample.vue
│ │ │ │ ├── Switch/
│ │ │ │ │ ├── Switch.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── RegularSwitch.vue
│ │ │ │ │ └── SwitchHueColors.vue
│ │ │ │ ├── Table/
│ │ │ │ │ ├── Table.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── TableBasic.vue
│ │ │ │ │ ├── TableCard.vue
│ │ │ │ │ ├── TableCustomSort.vue
│ │ │ │ │ ├── TableFixed.vue
│ │ │ │ │ ├── TableMultiple.vue
│ │ │ │ │ ├── TablePagination.vue
│ │ │ │ │ ├── TablePaginationRemote.vue
│ │ │ │ │ ├── TableSearch.vue
│ │ │ │ │ ├── TableSingle.vue
│ │ │ │ │ ├── TableSort.vue
│ │ │ │ │ └── TableTemplate.vue
│ │ │ │ ├── Tabs/
│ │ │ │ │ ├── Tabs.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── TabAlignments.vue
│ │ │ │ │ ├── TabContent.vue
│ │ │ │ │ ├── TabCustomTemplate.vue
│ │ │ │ │ ├── TabIcons.vue
│ │ │ │ │ ├── TabRouter.vue
│ │ │ │ │ └── TabsOrdering.vue
│ │ │ │ ├── Toolbar/
│ │ │ │ │ ├── Toolbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── ContentActions.vue
│ │ │ │ │ ├── RegularToolbar.vue
│ │ │ │ │ └── ToolbarSizes.vue
│ │ │ │ └── Tooltip/
│ │ │ │ ├── Tooltip.vue
│ │ │ │ └── examples/
│ │ │ │ ├── Delay.vue
│ │ │ │ ├── Direction.vue
│ │ │ │ └── Dynamically.vue
│ │ │ ├── Components.vue
│ │ │ ├── Configuration.vue
│ │ │ ├── Error.vue
│ │ │ ├── GettingStarted.vue
│ │ │ ├── Home/
│ │ │ │ ├── Home.vue
│ │ │ │ ├── HomeEcosystem.vue
│ │ │ │ ├── HomeFeatures.vue
│ │ │ │ ├── HomeHeader.vue
│ │ │ │ ├── HomePremium.vue
│ │ │ │ ├── HomeSponsors.vue
│ │ │ │ └── icons/
│ │ │ │ ├── HomeIcon.vue
│ │ │ │ ├── HomeIconCircle.vue
│ │ │ │ ├── HomeIconDevices.vue
│ │ │ │ └── HomeIconSquare.vue
│ │ │ ├── License.vue
│ │ │ ├── PremiumThemes/
│ │ │ │ └── PremiumThemes.vue
│ │ │ ├── Themes/
│ │ │ │ ├── Advanced.vue
│ │ │ │ ├── Concepts.vue
│ │ │ │ ├── Configuration.vue
│ │ │ │ ├── Prebuilt.vue
│ │ │ │ └── Themes.vue
│ │ │ ├── UiElements/
│ │ │ │ ├── Elevation/
│ │ │ │ │ ├── Elevation.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── ElevationExample.vue
│ │ │ │ ├── Layout/
│ │ │ │ │ ├── Layout.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ ├── LayoutHorizontalAlignment.vue
│ │ │ │ │ ├── LayoutHorizontalColumns.vue
│ │ │ │ │ ├── LayoutHorizontalGutter.vue
│ │ │ │ │ ├── LayoutHorizontalHide.vue
│ │ │ │ │ ├── LayoutHorizontalNested.vue
│ │ │ │ │ ├── LayoutHorizontalResponsive.vue
│ │ │ │ │ ├── LayoutHorizontalSizes.vue
│ │ │ │ │ └── LayoutVertical.vue
│ │ │ │ ├── Scrollbar/
│ │ │ │ │ ├── Scrollbar.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── ScrollbarExample.vue
│ │ │ │ ├── TextSelection/
│ │ │ │ │ ├── TextSelection.vue
│ │ │ │ │ └── examples/
│ │ │ │ │ └── SelectionExample.vue
│ │ │ │ └── Typography/
│ │ │ │ ├── Typography.vue
│ │ │ │ └── examples/
│ │ │ │ └── TypographyExample.vue
│ │ │ ├── UiElements.vue
│ │ │ └── WithRouter.vue
│ │ ├── routes.js
│ │ ├── store/
│ │ │ ├── actions.js
│ │ │ ├── index.js
│ │ │ ├── mutation-types.js
│ │ │ ├── mutations.js
│ │ │ └── state.js
│ │ ├── template/
│ │ │ ├── MainFooter.vue
│ │ │ ├── MainHeader.vue
│ │ │ ├── MainNav.vue
│ │ │ └── MainNavContent.vue
│ │ └── themes/
│ │ ├── dark-green.scss
│ │ ├── dark.scss
│ │ ├── default-dark.scss
│ │ ├── default.scss
│ │ ├── demo.scss
│ │ ├── docs-imports.scss
│ │ └── light-green.scss
│ ├── browserconfig.xml
│ ├── index.html
│ └── manifest.json
├── package.json
├── src/
│ ├── base/
│ │ ├── base.scss
│ │ ├── index.scss
│ │ ├── scrollbar.scss
│ │ ├── theme.scss
│ │ └── typography.scss
│ ├── components/
│ │ ├── MdAnimation/
│ │ │ └── variables.scss
│ │ ├── MdApp/
│ │ │ ├── MdApp.test.js
│ │ │ ├── MdApp.vue
│ │ │ ├── MdAppContent.vue
│ │ │ ├── MdAppDrawer.vue
│ │ │ ├── MdAppInternalDrawer.vue
│ │ │ ├── MdAppMixin.js
│ │ │ ├── MdAppSideDrawer.vue
│ │ │ ├── MdAppToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAutocomplete/
│ │ │ ├── MdAutocomplete.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdAvatar/
│ │ │ ├── MdAvatar.test.js
│ │ │ ├── MdAvatar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBadge/
│ │ │ ├── MdBadge.test.js
│ │ │ ├── MdBadge.vue
│ │ │ ├── MdBadgeStandalone.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdBottomBar/
│ │ │ ├── MdBottomBar.test.js
│ │ │ ├── MdBottomBar.vue
│ │ │ ├── MdBottomBarItem.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdButton/
│ │ │ ├── MdButton.test.js
│ │ │ ├── MdButton.vue
│ │ │ ├── MdButtonContent.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCard/
│ │ │ ├── MdCard.test.js
│ │ │ ├── MdCard.vue
│ │ │ ├── MdCardActions/
│ │ │ │ ├── MdCardActions.test.js
│ │ │ │ └── MdCardActions.vue
│ │ │ ├── MdCardArea/
│ │ │ │ ├── MdCardArea.test.js
│ │ │ │ └── MdCardArea.vue
│ │ │ ├── MdCardContent/
│ │ │ │ ├── MdCardContent.test.js
│ │ │ │ └── MdCardContent.vue
│ │ │ ├── MdCardExpand/
│ │ │ │ ├── MdCardExpand.test.js
│ │ │ │ ├── MdCardExpand.vue
│ │ │ │ ├── MdCardExpandContent.vue
│ │ │ │ └── MdCardExpandTrigger.vue
│ │ │ ├── MdCardHeader/
│ │ │ │ ├── MdCardHeader.test.js
│ │ │ │ ├── MdCardHeader.vue
│ │ │ │ └── MdCardHeaderText.vue
│ │ │ ├── MdCardMedia/
│ │ │ │ ├── MdCardMedia.test.js
│ │ │ │ ├── MdCardMedia.vue
│ │ │ │ ├── MdCardMediaActions.vue
│ │ │ │ └── MdCardMediaCover.vue
│ │ │ ├── base.scss
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdCheckbox/
│ │ │ ├── MdCheckbox.test.js
│ │ │ ├── MdCheckbox.vue
│ │ │ ├── MdCheckboxMixin.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdChips/
│ │ │ ├── MdChip.vue
│ │ │ ├── MdChips.test.js
│ │ │ ├── MdChips.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdContent/
│ │ │ ├── MdContent.test.js
│ │ │ ├── MdContent.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDatepicker/
│ │ │ ├── MdDatepicker.test.js
│ │ │ ├── MdDatepicker.vue
│ │ │ ├── MdDatepickerDialog.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDialog/
│ │ │ ├── MdDialog.test.js
│ │ │ ├── MdDialog.vue
│ │ │ ├── MdDialogActions.vue
│ │ │ ├── MdDialogAlert/
│ │ │ │ ├── MdDialogAlert.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogConfirm/
│ │ │ │ ├── MdDialogConfirm.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogContent.vue
│ │ │ ├── MdDialogPrompt/
│ │ │ │ ├── MdDialogPrompt.vue
│ │ │ │ └── index.js
│ │ │ ├── MdDialogRender.js
│ │ │ ├── MdDialogTitle.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDivider/
│ │ │ ├── MdDivider.test.js
│ │ │ ├── MdDivider.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdDrawer/
│ │ │ ├── MdDrawer.test.js
│ │ │ ├── MdDrawer.vue
│ │ │ ├── MdDrawerRightPrevious.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdElevation/
│ │ │ ├── elevation.scss
│ │ │ ├── index.js
│ │ │ ├── mixins.scss
│ │ │ └── variables.scss
│ │ ├── MdEmptyState/
│ │ │ ├── MdEmptyState.test.js
│ │ │ ├── MdEmptyState.vue
│ │ │ ├── MdEmptyStateProps.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdField/
│ │ │ ├── MdField.test.js
│ │ │ ├── MdField.vue
│ │ │ ├── MdFieldMixin.js
│ │ │ ├── MdFile/
│ │ │ │ ├── MdFile.test.js
│ │ │ │ └── MdFile.vue
│ │ │ ├── MdInput/
│ │ │ │ ├── MdInput.test.js
│ │ │ │ └── MdInput.vue
│ │ │ ├── MdSelect/
│ │ │ │ ├── MdOptgroup.vue
│ │ │ │ ├── MdOption.vue
│ │ │ │ ├── MdSelect.vue
│ │ │ │ └── index.js
│ │ │ ├── MdTextarea/
│ │ │ │ └── MdTextarea.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdFocusTrap/
│ │ │ └── MdFocusTrap.js
│ │ ├── MdHighlightText/
│ │ │ ├── MdHighlightText.vue
│ │ │ └── index.js
│ │ ├── MdIcon/
│ │ │ ├── MdIcon.test.js
│ │ │ ├── MdIcon.vue
│ │ │ ├── index.js
│ │ │ ├── mixins.scss
│ │ │ └── theme.scss
│ │ ├── MdImage/
│ │ │ ├── MdImage.test.js
│ │ │ ├── MdImage.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdLayout/
│ │ │ ├── index.js
│ │ │ ├── layout.scss
│ │ │ ├── mixins.scss
│ │ │ └── variables.scss
│ │ ├── MdList/
│ │ │ ├── MdList.test.js
│ │ │ ├── MdList.vue
│ │ │ ├── MdListItem/
│ │ │ │ ├── MdListItem.test.js
│ │ │ │ ├── MdListItem.vue
│ │ │ │ ├── MdListItemButton.vue
│ │ │ │ ├── MdListItemContent.vue
│ │ │ │ ├── MdListItemDefault.vue
│ │ │ │ ├── MdListItemExpand.vue
│ │ │ │ ├── MdListItemFakeButton.vue
│ │ │ │ ├── MdListItemLink.vue
│ │ │ │ ├── MdListItemMixin.js
│ │ │ │ └── MdListItemRouter.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdMenu/
│ │ │ ├── MdMenu.test.js
│ │ │ ├── MdMenu.vue
│ │ │ ├── MdMenuContent.vue
│ │ │ ├── MdMenuItem.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdOverlay/
│ │ │ ├── MdOverlay.test.js
│ │ │ └── MdOverlay.vue
│ │ ├── MdPopover/
│ │ │ ├── MdPopover.test.js
│ │ │ └── MdPopover.vue
│ │ ├── MdPortal/
│ │ │ ├── MdPortal.js
│ │ │ └── MdPortal.test.js
│ │ ├── MdProgress/
│ │ │ ├── MdProgressBar/
│ │ │ │ ├── MdProgressBar.test.js
│ │ │ │ └── MdProgressBar.vue
│ │ │ ├── MdProgressSpinner/
│ │ │ │ ├── MdProgressSpinner.test.js
│ │ │ │ └── MdProgressSpinner.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRadio/
│ │ │ ├── MdRadio.test.js
│ │ │ ├── MdRadio.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdRipple/
│ │ │ ├── MdRipple.vue
│ │ │ ├── MdWave.vue
│ │ │ └── index.js
│ │ ├── MdSnackbar/
│ │ │ ├── MdSnackbar.vue
│ │ │ ├── MdSnackbarContent.vue
│ │ │ ├── MdSnackbarQueue.js
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSpeedDial/
│ │ │ ├── MdSpeedDial.test.js
│ │ │ ├── MdSpeedDial.vue
│ │ │ ├── MdSpeedDialContent.vue
│ │ │ ├── MdSpeedDialTarget.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSteppers/
│ │ │ ├── MdStep.vue
│ │ │ ├── MdStepHeader.vue
│ │ │ ├── MdSteppers.test.js
│ │ │ ├── MdSteppers.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSubheader/
│ │ │ ├── MdSubheader.test.js
│ │ │ ├── MdSubheader.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdSvgLoader/
│ │ │ ├── MdSvgLoader.test.js
│ │ │ └── MdSvgLoader.vue
│ │ ├── MdSwitch/
│ │ │ ├── MdSwitch.test.js
│ │ │ ├── MdSwitch.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTable/
│ │ │ ├── MdTable.vue
│ │ │ ├── MdTableAlternateHeader.vue
│ │ │ ├── MdTableCell.vue
│ │ │ ├── MdTableCellSelection.vue
│ │ │ ├── MdTableContainer.js
│ │ │ ├── MdTableEmptyState.vue
│ │ │ ├── MdTableHead.vue
│ │ │ ├── MdTableHeadSelection.vue
│ │ │ ├── MdTablePagination.vue
│ │ │ ├── MdTableRow.vue
│ │ │ ├── MdTableRowGhost.vue
│ │ │ ├── MdTableThead.vue
│ │ │ ├── MdTableToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTabs/
│ │ │ ├── MdTab.vue
│ │ │ ├── MdTabs.test.js
│ │ │ ├── MdTabs.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTagSwitcher/
│ │ │ └── MdTagSwitcher.vue
│ │ ├── MdToolbar/
│ │ │ ├── MdToolbar.test.js
│ │ │ ├── MdToolbar.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ ├── MdTooltip/
│ │ │ ├── MdTooltip.test.js
│ │ │ ├── MdTooltip.vue
│ │ │ ├── index.js
│ │ │ └── theme.scss
│ │ └── index.js
│ ├── core/
│ │ ├── MdComponent.js
│ │ ├── MdTheme.js
│ │ ├── icons/
│ │ │ ├── MdArrowDownIcon.vue
│ │ │ ├── MdArrowLeftIcon.vue
│ │ │ ├── MdArrowRightIcon.vue
│ │ │ ├── MdCheckIcon.vue
│ │ │ ├── MdClearIcon.vue
│ │ │ ├── MdDateIcon.vue
│ │ │ ├── MdDropDownIcon.vue
│ │ │ ├── MdEditIcon.vue
│ │ │ ├── MdFileIcon.vue
│ │ │ ├── MdPasswordOffIcon.vue
│ │ │ ├── MdPasswordOnIcon.vue
│ │ │ ├── MdUpwardIcon.vue
│ │ │ └── MdWarningIcon.vue
│ │ ├── mixins/
│ │ │ ├── MdAssetIcon/
│ │ │ │ └── MdAssetIcon.js
│ │ │ ├── MdFocused/
│ │ │ │ └── MdFocused.js
│ │ │ ├── MdRipple/
│ │ │ │ └── MdRipple.js
│ │ │ ├── MdRouterLink/
│ │ │ │ └── MdRouterLink.js
│ │ │ └── MdSwipeable/
│ │ │ └── MdSwipeable.js
│ │ └── utils/
│ │ ├── MdContains.js
│ │ ├── MdDebounce.js
│ │ ├── MdInteractionEvents.js
│ │ ├── MdObserveElement.js
│ │ ├── MdObserveEvent.js
│ │ ├── MdPropValidator.js
│ │ ├── MdReactive.js
│ │ ├── MdResizeObserver.js
│ │ ├── MdRouterLinkProps.js
│ │ ├── MdThrottling.js
│ │ └── MdUuid.js
│ ├── index.js
│ ├── material.js
│ ├── material.test.js
│ └── theme/
│ ├── all.scss
│ ├── color-contrast.scss
│ ├── engine.scss
│ ├── functions.scss
│ ├── mixins.scss
│ ├── palette.scss
│ ├── prebuilt/
│ │ ├── black-green-dark.scss
│ │ ├── black-green-light.scss
│ │ ├── default-dark.scss
│ │ └── default.scss
│ └── variables.scss
└── test/
├── setup.js
├── styleMock.js
└── utils/
├── mockConsole.js
├── mockRequest.js
├── mountStringSlot.js
└── mountTemplate.js
Showing preview only (330K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (3514 symbols across 65 files)
FILE: build/docs/webpack.js
method minChunks (line 132) | minChunks (module) {
FILE: build/generate-changelog.js
method transform (line 17) | transform (pkg) {
FILE: build/lib/themes.js
function getThemeFiles (line 6) | function getThemeFiles (source) {
FILE: build/lib/webpack.js
function toUpperCase (line 17) | function toUpperCase (_, c) {
function classify (line 21) | function classify (str) {
function getDirectories (line 25) | function getDirectories (src) {
function setComponentsConfig (line 31) | function setComponentsConfig (entries, output) {
function getCopyPaths (line 51) | function getCopyPaths () {
function getExtractedCSSName (line 81) | function getExtractedCSSName ({ filename }) {
FILE: build/loaders/component-example-loader.js
function camelCaseToDash (line 8) | function camelCaseToDash (str) {
FILE: build/new-component.js
function pascalToDash (line 4) | function pascalToDash (str) {
function toCamelCase (line 8) | function toCamelCase (str) {
function getVueComponent (line 12) | function getVueComponent (name) {
function getTestFile (line 37) | function getTestFile (name) {
function getThemeFile (line 61) | function getThemeFile (name) {
function getIndexFile (line 70) | function getIndexFile (name) {
function getDocsFile (line 81) | function getDocsFile (name) {
function getExampleFile (line 116) | function getExampleFile (name) {
FILE: dist/components/MdApp/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}
function i (line 6) | function i(e){return e&&w.includes(o(e.tag))}
function a (line 6) | function a(e){return!!e&&(""===e.mdRight||!!e.mdRight)}
function l (line 6) | function l(e,t){return e&&w.includes(e.slot)||i(t)}
function s (line 6) | function s(e){return JSON.stringify({persistent:e&&e["md-persistent"],pe...
function d (line 6) | function d(e,t,r,n,i){var d=[],u=!1;return e&&e.forEach((function(e){var...
function u (line 6) | function u(e){var t=e.filter((function(e){return["md-app-drawer","md-app...
function c (line 6) | function c(e){var t=e&&e["md-permanent"];return t&&("clipped"===t||"card...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enume...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(){throw Error("setTimeout has not been defined")}
function n (line 6) | function n(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(u===setTimeout)return setTimeout(e,0);if((u===r||!u)&&s...
function i (line 6) | function i(e){if(c===clearTimeout)return clearTimeout(e);if((c===n||!c)&...
function a (line 6) | function a(){p&&m&&(p=!1,m.length?f=m.concat(f):h=-1,f.length&&l())}
function l (line 6) | function l(){var e,t;if(!p){for(e=o(a),p=!0,t=f.length;t;){for(m=f,f=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function d (line 6) | function d(){}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(241)}
function n (line 6) | function n(e){r(243)}
function n (line 6) | function n(e){r(246)}
function n (line 6) | function n(e){r(251)}
function n (line 6) | function n(e){r(254)}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===p}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?u(n(e),e,t):e}
function i (line 6) | function i(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return u;var r=t.customMerge(e);return...
function l (line 6) | function l(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(l(e))}
function d (line 6) | function d(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function u (line 6) | function u(e,t,r){var n,a,l;return r=r||{},r.arrayMerge=r.arrayMerge||i,...
FILE: dist/components/MdAutocomplete/index.js
function t (line 6) | function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{...
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){n(267)}
function o (line 6) | function o(e,t){var n,o,r,i=t.length,s=e.length;if(s>i)return!1;if(s===i...
function n (line 6) | function n(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"fu...
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdAvatar/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(273)}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return l;var r=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function c (line 6) | function c(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,r){var n,a,i;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdBadge/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(260)}
function r (line 6) | function r(e){n(262)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function u (line 6) | function u(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,n){var r,a,i;return n=n||{},n.arrayMerge=n.arrayMerge||u,...
FILE: dist/components/MdBottomBar/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function t (line 6) | function t(){return e.apply(this,arguments)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(l===setTimeout)return setTimeout(e,0);if((l===n||!l)&&s...
function i (line 6) | function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function u (line 6) | function u(){m&&p&&(m=!1,p.length?d=p.concat(d):h=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!m){for(e=o(u),m=!0,t=d.length;t;){for(p=d,d=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function c (line 6) | function c(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(277)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return l;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
FILE: dist/components/MdButton/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function i (line 6) | function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function u (line 6) | function u(){p&&m&&(p=!1,m.length?d=m.concat(d):h=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!p){for(e=o(u),p=!0,t=d.length;t;){for(m=d,d=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(43)}
function r (line 6) | function r(){try{var e=Object.defineProperty({},"passive",{get:function(...
function o (line 6) | function o(e){var t=(e.keyCode,e.target);y.currentElement=t}
function i (line 6) | function i(e){y.currentElement=null}
function u (line 6) | function u(){h.addEventListener("keyup",o)}
function a (line 6) | function a(){h.addEventListener("pointerup",i)}
function s (line 6) | function s(){h.addEventListener("MSPointerUp",i)}
function l (line 6) | function l(){h.addEventListener("mouseup",i),"ontouchend"in window&&h.ad...
function c (line 6) | function c(){window.PointerEvent?a():window.MSPointerEvent?s():l(),u()}
function f (line 6) | function f(){m||(h=document.body,r(),c(),m=!0)}
function r (line 6) | function r(e){n(45)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
FILE: dist/components/MdCard/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e,t){var n,r,a=[],o=!0,i=!1,u=void 0;try{for(n=e[Symbol.itera...
function e (line 6) | function e(e,t){var n,r,a=[],o=!0,i=!1,u=void 0;try{for(n=e[Symbol.itera...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(284)}
function r (line 6) | function r(e){n(287)}
function r (line 6) | function r(e){n(290)}
function r (line 6) | function r(e){n(295)}
function r (line 6) | function r(e){n(298)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(301)}
function r (line 6) | function r(e){n(304)}
function r (line 6) | function r(e){n(307)}
function r (line 6) | function r(e){n(310)}
function r (line 6) | function r(e){n(312)}
function r (line 6) | function r(e){n(315)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function a (line 6) | function a(e,t){return!1!==t.clone&&t.isMergeableObject(e)?d(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return a(e,n)}))}
function i (line 6) | function i(e,t){if(!t.customMerge)return d;var n=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(u(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function d (line 6) | function d(e,t,n){var r,i,u;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
FILE: dist/components/MdCheckbox/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function i (line 6) | function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function u (line 6) | function u(){m&&h&&(m=!1,h.length?d=h.concat(d):p=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!m){for(e=o(u),m=!0,t=d.length;t;){for(h=d,d=[];...
function l (line 6) | function l(e,t){this.fun=e,this.array=t}
function s (line 6) | function s(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(319)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function l (line 6) | function l(e){return Object.keys(e).concat(a(e))}
function s (line 6) | function s(e,t,n){var r={};return n.isMergeableObject(e)&&l(e).forEach((...
function c (line 6) | function c(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
FILE: dist/components/MdChips/index.js
function t (line 6) | function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(36)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function i (line 6) | function i(){throw Error("clearTimeout has not been defined")}
function r (line 6) | function r(e){if(d===setTimeout)return setTimeout(e,0);if((d===n||!d)&&s...
function o (line 6) | function o(e){if(c===clearTimeout)return clearTimeout(e);if((c===i||!c)&...
function u (line 6) | function u(){p&&m&&(p=!1,m.length?f=m.concat(f):h=-1,f.length&&s())}
function s (line 6) | function s(){var e,t;if(!p){for(e=r(u),p=!0,t=f.length;t;){for(m=f,f=[];...
function a (line 6) | function a(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function i (line 6) | function i(e){n(24)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(25)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(323)}
function i (line 6) | function i(e){n(326)}
function i (line 6) | function i(e){n(43)}
function i (line 6) | function i(e){n(38)}
function i (line 6) | function i(){try{var e=Object.defineProperty({},"passive",{get:function(...
function r (line 6) | function r(e){var t=(e.keyCode,e.target);y.currentElement=t}
function o (line 6) | function o(e){y.currentElement=null}
function u (line 6) | function u(){h.addEventListener("keyup",r)}
function s (line 6) | function s(){h.addEventListener("pointerup",o)}
function a (line 6) | function a(){h.addEventListener("MSPointerUp",o)}
function l (line 6) | function l(){h.addEventListener("mouseup",o),"ontouchend"in window&&h.ad...
function d (line 6) | function d(){window.PointerEvent?s():window.MSPointerEvent?a():l(),u()}
function c (line 6) | function c(){m||(h=document.body,i(),d(),m=!0)}
function i (line 6) | function i(e){n(45)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function i (line 6) | function i(e){return Array.isArray(e)?[]:{}}
function r (line 6) | function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?d(i(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return r(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return d;var n=t.customMerge(e);return...
function s (line 6) | function s(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function a (line 6) | function a(e){return Object.keys(e).concat(s(e))}
function l (line 6) | function l(e,t,n){var i={};return n.isMergeableObject(e)&&a(e).forEach((...
function d (line 6) | function d(e,t,n){var i,u,s;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
function i (line 6) | function i(e){n(87)}
FILE: dist/components/MdContent/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var r=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function l (line 6) | function l(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,r){var n,a,i;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdDatepicker/index.js
function e (line 6) | function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symb...
function o (line 6) | function o(t){Object(i.a)(1,arguments);var e=Object.prototype.toString.c...
function r (line 6) | function r(t){n(36)}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symb...
function o (line 6) | function o(t){return Object(a.a)(1,arguments),t instanceof Date||"object...
function i (line 6) | function i(t){if(Object(a.a)(1,arguments),!o(t)&&"number"!=typeof t)retu...
function r (line 6) | function r(t,e){var n,r;return Object(u.a)(2,arguments),n=Object(a.a)(t)...
function o (line 6) | function o(t,e){return Object(u.a)(2,arguments),r(t,-Object(i.a)(e))}
function r (line 6) | function r(t){var e,n;return Object(l.a)(1,arguments),e=Object(c.a)(t),n...
function o (line 6) | function o(t){var e,n;return Object(l.a)(1,arguments),e=Object(a.a)(t),n...
function r (line 6) | function r(t){var e,n,r,u,c,l;return Object(i.a)(1,arguments),e=Object(o...
function r (line 6) | function r(t,e){var n,r,o,i,a,d,p,h,y,m,b,v;return Object(l.a)(1,argumen...
function o (line 6) | function o(t,e){var n,o;return Object(l.a)(1,arguments),n=Object(a.a)(t)...
function r (line 6) | function r(t){var e=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.get...
function r (line 6) | function r(t){return-1!==a.indexOf(t)}
function o (line 6) | function o(t){return-1!==u.indexOf(t)}
function i (line 6) | function i(t,e,n){if("YYYY"===t)throw new RangeError("Use `yyyy` instead...
function r (line 6) | function r(t){return function(){var e=arguments.length>0&&void 0!==argum...
function o (line 6) | function o(t){return function(e,n){var r,o,i,a,u,c;return"formatting"==(...
function i (line 6) | function i(t){return function(e){var n,r,o,i,c,l=arguments.length>1&&voi...
function a (line 6) | function a(t,e){for(var n in t)if(t.hasOwnProperty(n)&&e(t[n]))return n}
function u (line 6) | function u(t,e){for(var n=0;n<t.length;n++)if(e(t[n]))return n}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function o (line 6) | function o(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.len...
function r (line 6) | function r(t,e){var n,r,u,c,l;return Object(a.a)(2,arguments),n=Object(i...
function r (line 6) | function r(t){var e,n,r,a;return Object(i.a)(1,arguments),e=Object(o.a)(...
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(t){if(s===setTimeout)return setTimeout(t,0);if((s===n||!s)&&s...
function i (line 6) | function i(t){if(f===clearTimeout)return clearTimeout(t);if((f===r||!f)&...
function a (line 6) | function a(){p&&h&&(p=!1,h.length?d=h.concat(d):y=-1,d.length&&u())}
function u (line 6) | function u(){var t,e;if(!p){for(t=o(a),p=!0,e=d.length;e;){for(h=d,d=[];...
function c (line 6) | function c(t,e){this.fun=t,this.array=e}
function l (line 6) | function l(){}
function r (line 6) | function r(t){if(null===t||!0===t||!1===t)return NaN;var e=+t;return isN...
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){n(331)}
function r (line 6) | function r(t){var e,n,r,o;return Object(p.a)(1,arguments),e=Object(d.a)(...
function o (line 6) | function o(t,e){for(var n=t<0?"-":"",r=""+Math.abs(t);r.length<e;)r="0"+...
function i (line 6) | function i(t,e){var n,r=t>0?"-":"+",i=Math.abs(t),a=Math.floor(i/60),u=i...
function a (line 6) | function a(t,e){if(t%60==0){return(t>0?"-":"+")+o(Math.abs(t)/60,2)}retu...
function u (line 6) | function u(t,e){var n=e||"",r=t>0?"-":"+",i=Math.abs(t);return r+o(Math....
function c (line 6) | function c(t,e,n){var r,o,i,a,u,c,h,y,m,b,v,g,w,O,_,E,R,N,A,B,L,U,H,$,Y,...
function l (line 6) | function l(t){var e=t.match(E);return e?e[1].replace(R,"'"):t}
function r (line 6) | function r(t,e){if(null==t)throw new TypeError("assign requires that inp...
function o (line 6) | function o(t){"@babel/helpers - typeof";return(o="function"==typeof Symb...
function i (line 6) | function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("S...
function a (line 6) | function a(t,e){return(a=Object.setPrototypeOf||function(t,e){return t._...
function u (line 6) | function u(t){var e=s();return function(){var n,r,o=f(t);return e?(r=f(t...
function c (line 6) | function c(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?l(t):e}
function l (line 6) | function l(t){if(void 0===t)throw new ReferenceError("this hasn't been i...
function s (line 6) | function s(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function f (line 6) | function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function d (line 6) | function d(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a ...
function p (line 6) | function p(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.enu...
function h (line 6) | function h(t,e,n){return e&&p(t.prototype,e),n&&p(t,n),t}
function y (line 6) | function y(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enume...
function m (line 6) | function m(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a ...
function b (line 6) | function b(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.enu...
function v (line 6) | function v(t,e,n){return e&&b(t.prototype,e),n&&b(t,n),t}
function g (line 6) | function g(t){"@babel/helpers - typeof";return(g="function"==typeof Symb...
function w (line 6) | function w(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a ...
function O (line 6) | function O(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.enu...
function _ (line 6) | function _(t,e,n){return e&&O(t.prototype,e),n&&O(t,n),t}
function j (line 6) | function j(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("S...
function T (line 6) | function T(t,e){return(T=Object.setPrototypeOf||function(t,e){return t._...
function P (line 6) | function P(t){var e=k();return function(){var n,r,o=S(t);return e?(r=S(t...
function M (line 6) | function M(t,e){return!e||"object"!==g(e)&&"function"!=typeof e?x(t):e}
function x (line 6) | function x(t){if(void 0===t)throw new ReferenceError("this hasn't been i...
function k (line 6) | function k(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function S (line 6) | function S(t){return(S=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function D (line 6) | function D(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enume...
function C (line 6) | function C(t,e){return t?{value:e(t.value),rest:t.rest}:t}
function E (line 6) | function E(t,e){var n=e.match(t);return n?{value:parseInt(n[0],10),rest:...
function R (line 6) | function R(t,e){var n,r,o,i,a=e.match(t);return a?"Z"===a[0]?{value:0,re...
function F (line 6) | function F(t){return E(ru.anyDigitsSigned,t)}
function N (line 6) | function N(t,e){switch(t){case 1:return E(ru.singleDigit,e);case 2:retur...
function A (line 6) | function A(t,e){switch(t){case 1:return E(ru.singleDigitSigned,e);case 2...
function B (line 6) | function B(t){switch(t){case"morning":return 4;case"evening":return 17;c...
function L (line 6) | function L(t,e){var n,r,o,i,a=e>0,u=a?e:1-e;return u<=50?n=t||100:(r=u+5...
function U (line 6) | function U(t){return t%400==0||t%4==0&&t%100!=0}
function H (line 6) | function H(t){"@babel/helpers - typeof";return(H="function"==typeof Symb...
function $ (line 6) | function $(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a ...
function Y (line 6) | function Y(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.enu...
function q (line 6) | function q(t,e,n){return e&&Y(t.prototype,e),n&&Y(t,n),t}
function I (line 6) | function I(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("S...
function W (line 6) | function W(t,e){return(W=Object.setPrototypeOf||function(t,e){return t._...
function V (line 6) | function V(t){var e=Q();return function(){var n,r,o=X(t);return e?(r=X(t...
function G (line 6) | function G(t,e){return!e||"object"!==H(e)&&"function"!=typeof e?z(t):e}
function z (line 6) | function z(t){if(void 0===t)throw new ReferenceError("this hasn't been i...
function Q (line 6) | function Q(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function X (line 6) | function X(t){return(X=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function J (line 6) | function J(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enume...
function K (line 6) | function K(t){"@babel/helpers - typeof";return(K="function"==typeof Symb...
function Z (line 6) | function Z(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a ...
function tt (line 6) | function tt(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function et (line 6) | function et(t,e,n){return e&&tt(t.prototype,e),n&&tt(t,n),t}
function nt (line 6) | function nt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function rt (line 6) | function rt(t,e){return(rt=Object.setPrototypeOf||function(t,e){return t...
function ot (line 6) | function ot(t){var e=ut();return function(){var n,r,o=ct(t);return e?(r=...
function it (line 6) | function it(t,e){return!e||"object"!==K(e)&&"function"!=typeof e?at(t):e}
function at (line 6) | function at(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function ut (line 6) | function ut(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ct (line 6) | function ct(t){return(ct=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function lt (line 6) | function lt(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function st (line 6) | function st(t){"@babel/helpers - typeof";return(st="function"==typeof Sy...
function ft (line 6) | function ft(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function dt (line 6) | function dt(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function pt (line 6) | function pt(t,e,n){return e&&dt(t.prototype,e),n&&dt(t,n),t}
function ht (line 6) | function ht(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function yt (line 6) | function yt(t,e){return(yt=Object.setPrototypeOf||function(t,e){return t...
function mt (line 6) | function mt(t){var e=gt();return function(){var n,r,o=wt(t);return e?(r=...
function bt (line 6) | function bt(t,e){return!e||"object"!==st(e)&&"function"!=typeof e?vt(t):e}
function vt (line 6) | function vt(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function gt (line 6) | function gt(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function wt (line 6) | function wt(t){return(wt=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Ot (line 6) | function Ot(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function _t (line 6) | function _t(t){"@babel/helpers - typeof";return(_t="function"==typeof Sy...
function jt (line 6) | function jt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Tt (line 6) | function Tt(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Pt (line 6) | function Pt(t,e,n){return e&&Tt(t.prototype,e),n&&Tt(t,n),t}
function Mt (line 6) | function Mt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function xt (line 6) | function xt(t,e){return(xt=Object.setPrototypeOf||function(t,e){return t...
function kt (line 6) | function kt(t){var e=Ct();return function(){var n,r,o=Et(t);return e?(r=...
function St (line 6) | function St(t,e){return!e||"object"!==_t(e)&&"function"!=typeof e?Dt(t):e}
function Dt (line 6) | function Dt(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Ct (line 6) | function Ct(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Et (line 6) | function Et(t){return(Et=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Rt (line 6) | function Rt(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Ft (line 6) | function Ft(t){"@babel/helpers - typeof";return(Ft="function"==typeof Sy...
function Nt (line 6) | function Nt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function At (line 6) | function At(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Bt (line 6) | function Bt(t,e,n){return e&&At(t.prototype,e),n&&At(t,n),t}
function Lt (line 6) | function Lt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Ut (line 6) | function Ut(t,e){return(Ut=Object.setPrototypeOf||function(t,e){return t...
function Ht (line 6) | function Ht(t){var e=qt();return function(){var n,r,o=It(t);return e?(r=...
function $t (line 6) | function $t(t,e){return!e||"object"!==Ft(e)&&"function"!=typeof e?Yt(t):e}
function Yt (line 6) | function Yt(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function qt (line 6) | function qt(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function It (line 6) | function It(t){return(It=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Wt (line 6) | function Wt(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Vt (line 6) | function Vt(t){"@babel/helpers - typeof";return(Vt="function"==typeof Sy...
function Gt (line 6) | function Gt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function zt (line 6) | function zt(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Qt (line 6) | function Qt(t,e,n){return e&&zt(t.prototype,e),n&&zt(t,n),t}
function Xt (line 6) | function Xt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Jt (line 6) | function Jt(t,e){return(Jt=Object.setPrototypeOf||function(t,e){return t...
function Kt (line 6) | function Kt(t){var e=ee();return function(){var n,r,o=ne(t);return e?(r=...
function Zt (line 6) | function Zt(t,e){return!e||"object"!==Vt(e)&&"function"!=typeof e?te(t):e}
function te (line 6) | function te(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function ee (line 6) | function ee(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ne (line 6) | function ne(t){return(ne=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function re (line 6) | function re(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function oe (line 6) | function oe(t){"@babel/helpers - typeof";return(oe="function"==typeof Sy...
function ie (line 6) | function ie(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function ae (line 6) | function ae(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ue (line 6) | function ue(t,e,n){return e&&ae(t.prototype,e),n&&ae(t,n),t}
function ce (line 6) | function ce(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function le (line 6) | function le(t,e){return(le=Object.setPrototypeOf||function(t,e){return t...
function se (line 6) | function se(t){var e=pe();return function(){var n,r,o=he(t);return e?(r=...
function fe (line 6) | function fe(t,e){return!e||"object"!==oe(e)&&"function"!=typeof e?de(t):e}
function de (line 6) | function de(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function pe (line 6) | function pe(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function he (line 6) | function he(t){return(he=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function ye (line 6) | function ye(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function me (line 6) | function me(t){"@babel/helpers - typeof";return(me="function"==typeof Sy...
function be (line 6) | function be(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function ve (line 6) | function ve(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ge (line 6) | function ge(t,e,n){return e&&ve(t.prototype,e),n&&ve(t,n),t}
function we (line 6) | function we(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Oe (line 6) | function Oe(t,e){return(Oe=Object.setPrototypeOf||function(t,e){return t...
function _e (line 6) | function _e(t){var e=Pe();return function(){var n,r,o=Me(t);return e?(r=...
function je (line 6) | function je(t,e){return!e||"object"!==me(e)&&"function"!=typeof e?Te(t):e}
function Te (line 6) | function Te(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Pe (line 6) | function Pe(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Me (line 6) | function Me(t){return(Me=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function xe (line 6) | function xe(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function ke (line 6) | function ke(t,e,n){var r,o,i;return Object($a.a)(2,arguments),r=Object(A...
function Se (line 6) | function Se(t){"@babel/helpers - typeof";return(Se="function"==typeof Sy...
function De (line 6) | function De(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Ce (line 6) | function Ce(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Ee (line 6) | function Ee(t,e,n){return e&&Ce(t.prototype,e),n&&Ce(t,n),t}
function Re (line 6) | function Re(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Fe (line 6) | function Fe(t,e){return(Fe=Object.setPrototypeOf||function(t,e){return t...
function Ne (line 6) | function Ne(t){var e=Le();return function(){var n,r,o=Ue(t);return e?(r=...
function Ae (line 6) | function Ae(t,e){return!e||"object"!==Se(e)&&"function"!=typeof e?Be(t):e}
function Be (line 6) | function Be(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Le (line 6) | function Le(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ue (line 6) | function Ue(t){return(Ue=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function He (line 6) | function He(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function $e (line 6) | function $e(t,e){var n,r,o;return Object($a.a)(2,arguments),n=Object(Aa....
function Ye (line 6) | function Ye(t){"@babel/helpers - typeof";return(Ye="function"==typeof Sy...
function qe (line 6) | function qe(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Ie (line 6) | function Ie(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function We (line 6) | function We(t,e,n){return e&&Ie(t.prototype,e),n&&Ie(t,n),t}
function Ve (line 6) | function Ve(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Ge (line 6) | function Ge(t,e){return(Ge=Object.setPrototypeOf||function(t,e){return t...
function ze (line 6) | function ze(t){var e=Je();return function(){var n,r,o=Ke(t);return e?(r=...
function Qe (line 6) | function Qe(t,e){return!e||"object"!==Ye(e)&&"function"!=typeof e?Xe(t):e}
function Xe (line 6) | function Xe(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Je (line 6) | function Je(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ke (line 6) | function Ke(t){return(Ke=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Ze (line 6) | function Ze(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function tn (line 6) | function tn(t){"@babel/helpers - typeof";return(tn="function"==typeof Sy...
function en (line 6) | function en(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function nn (line 6) | function nn(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function rn (line 6) | function rn(t,e,n){return e&&nn(t.prototype,e),n&&nn(t,n),t}
function on (line 6) | function on(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function an (line 6) | function an(t,e){return(an=Object.setPrototypeOf||function(t,e){return t...
function un (line 6) | function un(t){var e=sn();return function(){var n,r,o=fn(t);return e?(r=...
function cn (line 6) | function cn(t,e){return!e||"object"!==tn(e)&&"function"!=typeof e?ln(t):e}
function ln (line 6) | function ln(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function sn (line 6) | function sn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function fn (line 6) | function fn(t){return(fn=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function dn (line 6) | function dn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function pn (line 6) | function pn(t){"@babel/helpers - typeof";return(pn="function"==typeof Sy...
function hn (line 6) | function hn(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function yn (line 6) | function yn(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function mn (line 6) | function mn(t,e,n){return e&&yn(t.prototype,e),n&&yn(t,n),t}
function bn (line 6) | function bn(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function vn (line 6) | function vn(t,e){return(vn=Object.setPrototypeOf||function(t,e){return t...
function gn (line 6) | function gn(t){var e=_n();return function(){var n,r,o=jn(t);return e?(r=...
function wn (line 6) | function wn(t,e){return!e||"object"!==pn(e)&&"function"!=typeof e?On(t):e}
function On (line 6) | function On(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function _n (line 6) | function _n(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function jn (line 6) | function jn(t){return(jn=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Tn (line 6) | function Tn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Pn (line 6) | function Pn(t,e,n){var r,o,i,a,u,c,l,s,f,d,p,h,y,m,b,v;if(Object($a.a)(2...
function Mn (line 6) | function Mn(t){"@babel/helpers - typeof";return(Mn="function"==typeof Sy...
function xn (line 6) | function xn(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function kn (line 6) | function kn(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Sn (line 6) | function Sn(t,e,n){return e&&kn(t.prototype,e),n&&kn(t,n),t}
function Dn (line 6) | function Dn(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Cn (line 6) | function Cn(t,e){return(Cn=Object.setPrototypeOf||function(t,e){return t...
function En (line 6) | function En(t){var e=Nn();return function(){var n,r,o=An(t);return e?(r=...
function Rn (line 6) | function Rn(t,e){return!e||"object"!==Mn(e)&&"function"!=typeof e?Fn(t):e}
function Fn (line 6) | function Fn(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Nn (line 6) | function Nn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function An (line 6) | function An(t){return(An=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Bn (line 6) | function Bn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Ln (line 6) | function Ln(t){"@babel/helpers - typeof";return(Ln="function"==typeof Sy...
function Un (line 6) | function Un(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Hn (line 6) | function Hn(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function $n (line 6) | function $n(t,e,n){return e&&Hn(t.prototype,e),n&&Hn(t,n),t}
function Yn (line 6) | function Yn(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function qn (line 6) | function qn(t,e){return(qn=Object.setPrototypeOf||function(t,e){return t...
function In (line 6) | function In(t){var e=Gn();return function(){var n,r,o=zn(t);return e?(r=...
function Wn (line 6) | function Wn(t,e){return!e||"object"!==Ln(e)&&"function"!=typeof e?Vn(t):e}
function Vn (line 6) | function Vn(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Gn (line 6) | function Gn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function zn (line 6) | function zn(t){return(zn=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Qn (line 6) | function Qn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Xn (line 6) | function Xn(t){"@babel/helpers - typeof";return(Xn="function"==typeof Sy...
function Jn (line 6) | function Jn(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Kn (line 6) | function Kn(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Zn (line 6) | function Zn(t,e,n){return e&&Kn(t.prototype,e),n&&Kn(t,n),t}
function tr (line 6) | function tr(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function er (line 6) | function er(t,e){return(er=Object.setPrototypeOf||function(t,e){return t...
function nr (line 6) | function nr(t){var e=ir();return function(){var n,r,o=ar(t);return e?(r=...
function rr (line 6) | function rr(t,e){return!e||"object"!==Xn(e)&&"function"!=typeof e?or(t):e}
function or (line 6) | function or(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function ir (line 6) | function ir(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ar (line 6) | function ar(t){return(ar=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function ur (line 6) | function ur(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function cr (line 6) | function cr(t,e){var n,r,o,i,a,u,c;return Object($a.a)(2,arguments),n=Ob...
function lr (line 6) | function lr(t){"@babel/helpers - typeof";return(lr="function"==typeof Sy...
function sr (line 6) | function sr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function fr (line 6) | function fr(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function dr (line 6) | function dr(t,e,n){return e&&fr(t.prototype,e),n&&fr(t,n),t}
function pr (line 6) | function pr(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function hr (line 6) | function hr(t,e){return(hr=Object.setPrototypeOf||function(t,e){return t...
function yr (line 6) | function yr(t){var e=vr();return function(){var n,r,o=gr(t);return e?(r=...
function mr (line 6) | function mr(t,e){return!e||"object"!==lr(e)&&"function"!=typeof e?br(t):e}
function br (line 6) | function br(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function vr (line 6) | function vr(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function gr (line 6) | function gr(t){return(gr=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function wr (line 6) | function wr(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Or (line 6) | function Or(t){"@babel/helpers - typeof";return(Or="function"==typeof Sy...
function _r (line 6) | function _r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function jr (line 6) | function jr(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Tr (line 6) | function Tr(t,e,n){return e&&jr(t.prototype,e),n&&jr(t,n),t}
function Pr (line 6) | function Pr(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Mr (line 6) | function Mr(t,e){return(Mr=Object.setPrototypeOf||function(t,e){return t...
function xr (line 6) | function xr(t){var e=Dr();return function(){var n,r,o=Cr(t);return e?(r=...
function kr (line 6) | function kr(t,e){return!e||"object"!==Or(e)&&"function"!=typeof e?Sr(t):e}
function Sr (line 6) | function Sr(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Dr (line 6) | function Dr(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Cr (line 6) | function Cr(t){return(Cr=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Er (line 6) | function Er(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Rr (line 6) | function Rr(t){"@babel/helpers - typeof";return(Rr="function"==typeof Sy...
function Fr (line 6) | function Fr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Nr (line 6) | function Nr(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Ar (line 6) | function Ar(t,e,n){return e&&Nr(t.prototype,e),n&&Nr(t,n),t}
function Br (line 6) | function Br(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Lr (line 6) | function Lr(t,e){return(Lr=Object.setPrototypeOf||function(t,e){return t...
function Ur (line 6) | function Ur(t){var e=Yr();return function(){var n,r,o=qr(t);return e?(r=...
function Hr (line 6) | function Hr(t,e){return!e||"object"!==Rr(e)&&"function"!=typeof e?$r(t):e}
function $r (line 6) | function $r(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Yr (line 6) | function Yr(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function qr (line 6) | function qr(t){return(qr=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Ir (line 6) | function Ir(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Wr (line 6) | function Wr(t){"@babel/helpers - typeof";return(Wr="function"==typeof Sy...
function Vr (line 6) | function Vr(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Gr (line 6) | function Gr(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function zr (line 6) | function zr(t,e,n){return e&&Gr(t.prototype,e),n&&Gr(t,n),t}
function Qr (line 6) | function Qr(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Xr (line 6) | function Xr(t,e){return(Xr=Object.setPrototypeOf||function(t,e){return t...
function Jr (line 6) | function Jr(t){var e=to();return function(){var n,r,o=eo(t);return e?(r=...
function Kr (line 6) | function Kr(t,e){return!e||"object"!==Wr(e)&&"function"!=typeof e?Zr(t):e}
function Zr (line 6) | function Zr(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function to (line 6) | function to(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function eo (line 6) | function eo(t){return(eo=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function no (line 6) | function no(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function ro (line 6) | function ro(t){"@babel/helpers - typeof";return(ro="function"==typeof Sy...
function oo (line 6) | function oo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function io (line 6) | function io(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ao (line 6) | function ao(t,e,n){return e&&io(t.prototype,e),n&&io(t,n),t}
function uo (line 6) | function uo(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function co (line 6) | function co(t,e){return(co=Object.setPrototypeOf||function(t,e){return t...
function lo (line 6) | function lo(t){var e=po();return function(){var n,r,o=ho(t);return e?(r=...
function so (line 6) | function so(t,e){return!e||"object"!==ro(e)&&"function"!=typeof e?fo(t):e}
function fo (line 6) | function fo(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function po (line 6) | function po(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ho (line 6) | function ho(t){return(ho=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function yo (line 6) | function yo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function mo (line 6) | function mo(t){"@babel/helpers - typeof";return(mo="function"==typeof Sy...
function bo (line 6) | function bo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function vo (line 6) | function vo(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function go (line 6) | function go(t,e,n){return e&&vo(t.prototype,e),n&&vo(t,n),t}
function wo (line 6) | function wo(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Oo (line 6) | function Oo(t,e){return(Oo=Object.setPrototypeOf||function(t,e){return t...
function _o (line 6) | function _o(t){var e=Po();return function(){var n,r,o=Mo(t);return e?(r=...
function jo (line 6) | function jo(t,e){return!e||"object"!==mo(e)&&"function"!=typeof e?To(t):e}
function To (line 6) | function To(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Po (line 6) | function Po(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Mo (line 6) | function Mo(t){return(Mo=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function xo (line 6) | function xo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function ko (line 6) | function ko(t){"@babel/helpers - typeof";return(ko="function"==typeof Sy...
function So (line 6) | function So(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Do (line 6) | function Do(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Co (line 6) | function Co(t,e,n){return e&&Do(t.prototype,e),n&&Do(t,n),t}
function Eo (line 6) | function Eo(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Ro (line 6) | function Ro(t,e){return(Ro=Object.setPrototypeOf||function(t,e){return t...
function Fo (line 6) | function Fo(t){var e=Bo();return function(){var n,r,o=Lo(t);return e?(r=...
function No (line 6) | function No(t,e){return!e||"object"!==ko(e)&&"function"!=typeof e?Ao(t):e}
function Ao (line 6) | function Ao(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Bo (line 6) | function Bo(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Lo (line 6) | function Lo(t){return(Lo=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Uo (line 6) | function Uo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Ho (line 6) | function Ho(t){"@babel/helpers - typeof";return(Ho="function"==typeof Sy...
function $o (line 6) | function $o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Yo (line 6) | function Yo(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function qo (line 6) | function qo(t,e,n){return e&&Yo(t.prototype,e),n&&Yo(t,n),t}
function Io (line 6) | function Io(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Wo (line 6) | function Wo(t,e){return(Wo=Object.setPrototypeOf||function(t,e){return t...
function Vo (line 6) | function Vo(t){var e=Qo();return function(){var n,r,o=Xo(t);return e?(r=...
function Go (line 6) | function Go(t,e){return!e||"object"!==Ho(e)&&"function"!=typeof e?zo(t):e}
function zo (line 6) | function zo(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Qo (line 6) | function Qo(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Xo (line 6) | function Xo(t){return(Xo=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Jo (line 6) | function Jo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Ko (line 6) | function Ko(t){"@babel/helpers - typeof";return(Ko="function"==typeof Sy...
function Zo (line 6) | function Zo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function ti (line 6) | function ti(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ei (line 6) | function ei(t,e,n){return e&&ti(t.prototype,e),n&&ti(t,n),t}
function ni (line 6) | function ni(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function ri (line 6) | function ri(t,e){return(ri=Object.setPrototypeOf||function(t,e){return t...
function oi (line 6) | function oi(t){var e=ui();return function(){var n,r,o=ci(t);return e?(r=...
function ii (line 6) | function ii(t,e){return!e||"object"!==Ko(e)&&"function"!=typeof e?ai(t):e}
function ai (line 6) | function ai(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function ui (line 6) | function ui(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ci (line 6) | function ci(t){return(ci=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function li (line 6) | function li(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function si (line 6) | function si(t){"@babel/helpers - typeof";return(si="function"==typeof Sy...
function fi (line 6) | function fi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function di (line 6) | function di(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function pi (line 6) | function pi(t,e,n){return e&&di(t.prototype,e),n&&di(t,n),t}
function hi (line 6) | function hi(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function yi (line 6) | function yi(t,e){return(yi=Object.setPrototypeOf||function(t,e){return t...
function mi (line 6) | function mi(t){var e=gi();return function(){var n,r,o=wi(t);return e?(r=...
function bi (line 6) | function bi(t,e){return!e||"object"!==si(e)&&"function"!=typeof e?vi(t):e}
function vi (line 6) | function vi(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function gi (line 6) | function gi(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function wi (line 6) | function wi(t){return(wi=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Oi (line 6) | function Oi(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function _i (line 6) | function _i(t){"@babel/helpers - typeof";return(_i="function"==typeof Sy...
function ji (line 6) | function ji(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Ti (line 6) | function Ti(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Pi (line 6) | function Pi(t,e,n){return e&&Ti(t.prototype,e),n&&Ti(t,n),t}
function Mi (line 6) | function Mi(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function xi (line 6) | function xi(t,e){return(xi=Object.setPrototypeOf||function(t,e){return t...
function ki (line 6) | function ki(t){var e=Ci();return function(){var n,r,o=Ei(t);return e?(r=...
function Si (line 6) | function Si(t,e){return!e||"object"!==_i(e)&&"function"!=typeof e?Di(t):e}
function Di (line 6) | function Di(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Ci (line 6) | function Ci(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ei (line 6) | function Ei(t){return(Ei=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Ri (line 6) | function Ri(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Fi (line 6) | function Fi(t){"@babel/helpers - typeof";return(Fi="function"==typeof Sy...
function Ni (line 6) | function Ni(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function Ai (line 6) | function Ai(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Bi (line 6) | function Bi(t,e,n){return e&&Ai(t.prototype,e),n&&Ai(t,n),t}
function Li (line 6) | function Li(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Ui (line 6) | function Ui(t,e){return(Ui=Object.setPrototypeOf||function(t,e){return t...
function Hi (line 6) | function Hi(t){var e=qi();return function(){var n,r,o=Ii(t);return e?(r=...
function $i (line 6) | function $i(t,e){return!e||"object"!==Fi(e)&&"function"!=typeof e?Yi(t):e}
function Yi (line 6) | function Yi(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function qi (line 6) | function qi(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ii (line 6) | function Ii(t){return(Ii=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Wi (line 6) | function Wi(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function Vi (line 6) | function Vi(t){"@babel/helpers - typeof";return(Vi="function"==typeof Sy...
function Gi (line 6) | function Gi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function zi (line 6) | function zi(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function Qi (line 6) | function Qi(t,e,n){return e&&zi(t.prototype,e),n&&zi(t,n),t}
function Xi (line 6) | function Xi(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Ji (line 6) | function Ji(t,e){return(Ji=Object.setPrototypeOf||function(t,e){return t...
function Ki (line 6) | function Ki(t){var e=ea();return function(){var n,r,o=na(t);return e?(r=...
function Zi (line 6) | function Zi(t,e){return!e||"object"!==Vi(e)&&"function"!=typeof e?ta(t):e}
function ta (line 6) | function ta(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function ea (line 6) | function ea(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function na (line 6) | function na(t){return(na=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function ra (line 6) | function ra(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function oa (line 6) | function oa(t){"@babel/helpers - typeof";return(oa="function"==typeof Sy...
function ia (line 6) | function ia(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function aa (line 6) | function aa(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ua (line 6) | function ua(t,e,n){return e&&aa(t.prototype,e),n&&aa(t,n),t}
function ca (line 6) | function ca(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function la (line 6) | function la(t,e){return(la=Object.setPrototypeOf||function(t,e){return t...
function sa (line 6) | function sa(t){var e=pa();return function(){var n,r,o=ha(t);return e?(r=...
function fa (line 6) | function fa(t,e){return!e||"object"!==oa(e)&&"function"!=typeof e?da(t):e}
function da (line 6) | function da(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function pa (line 6) | function pa(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ha (line 6) | function ha(t){return(ha=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function ya (line 6) | function ya(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function ma (line 6) | function ma(t){"@babel/helpers - typeof";return(ma="function"==typeof Sy...
function ba (line 6) | function ba(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a...
function va (line 6) | function va(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.en...
function ga (line 6) | function ga(t,e,n){return e&&va(t.prototype,e),n&&va(t,n),t}
function wa (line 6) | function wa(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("...
function Oa (line 6) | function Oa(t,e){return(Oa=Object.setPrototypeOf||function(t,e){return t...
function _a (line 6) | function _a(t){var e=Pa();return function(){var n,r,o=Ma(t);return e?(r=...
function ja (line 6) | function ja(t,e){return!e||"object"!==ma(e)&&"function"!=typeof e?Ta(t):e}
function Ta (line 6) | function Ta(t){if(void 0===t)throw new ReferenceError("this hasn't been ...
function Pa (line 6) | function Pa(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ma (line 6) | function Ma(t){return(Ma=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function xa (line 6) | function xa(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enum...
function ka (line 6) | function ka(t){"@babel/helpers - typeof";return(ka="function"==typeof Sy...
function Sa (line 6) | function Sa(t,e){var n,r,o,i,a,u;if("undefined"==typeof Symbol||null==t[...
function Da (line 6) | function Da(t,e){if(t){if("string"==typeof t)return Ca(t,e);var n=Object...
function Ca (line 6) | function Ca(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array...
function Ea (line 6) | function Ea(t,e,n,o){var i,a,u,c,l,s,f,d,p,h,y,m,b,v,g,w,O,_,j,T,P,M,x,k...
function Ra (line 6) | function Ra(t){return t.match(Vu)[1].replace(Gu,"'")}
function t (line 6) | function t(){d(this,t),y(this,"subPriority",0)}
function e (line 6) | function e(t,r,o,i,a){var u;return d(this,e),u=n.call(this),u.value=t,u....
function e (line 6) | function e(){var t,r,o,i;for(d(this,e),r=arguments.length,o=Array(r),i=0...
function t (line 6) | function t(){m(this,t)}
function e (line 6) | function e(){var t,r,o,i;for(w(this,e),r=arguments.length,o=Array(r),i=0...
function e (line 6) | function e(){var t,r,o,i;for($(this,e),r=arguments.length,o=Array(r),i=0...
function e (line 6) | function e(){var t,r,o,i;for(Z(this,e),r=arguments.length,o=Array(r),i=0...
function e (line 6) | function e(){var t,r,o,i;for(ft(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(jt(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Nt(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Gt(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(ie(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(be(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(De(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(qe(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(en(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(hn(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(xn(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Un(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Jn(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(sr(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(_r(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Fr(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Vr(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(oo(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(bo(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(So(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for($o(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Zo(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(fi(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(ji(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Ni(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(Gi(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(ia(this,e),r=arguments.length,o=Array(r),i=...
function e (line 6) | function e(){var t,r,o,i;for(ba(this,e),r=arguments.length,o=Array(r),i=...
function r (line 6) | function r(t){n(336)}
function r (line 6) | function r(t){Object(i.a)(1,arguments);var e=Object(o.a)(t);return e.set...
function r (line 6) | function r(t,e){Object(a.a)(2,arguments);var n=Object(o.a)(e);return Obj...
function r (line 6) | function r(t){var e;return Object(i.a)(1,arguments),e=Object(o.a)(t),e.g...
function r (line 6) | function r(t){var e;return Object(i.a)(1,arguments),e=Object(o.a)(t),e.g...
function r (line 6) | function r(t){var e;return Object(i.a)(1,arguments),e=Object(o.a)(t),e.g...
function r (line 6) | function r(t){return Object(i.a)(1,arguments),Object(o.a)(t).getFullYear()}
function r (line 6) | function r(t,e){var n,r;return Object(i.a)(2,arguments),n=Object(o.a)(t)...
function r (line 6) | function r(t){Object(a.a)(1,arguments);var e=Object(i.a)(t);return e.set...
function o (line 6) | function o(t,e){var n,o;return Object(a.a)(2,arguments),n=r(t),o=r(e),n....
function r (line 6) | function r(t,e){var n,r;return Object(a.a)(2,arguments),n=Object(i.a)(t)...
function r (line 6) | function r(t,e){var n,r,c,l,s,f;return Object(u.a)(2,arguments),n=Object...
function r (line 6) | function r(t,e){var n,r;return Object(a.a)(2,arguments),n=Object(i.a)(t)...
function r (line 6) | function r(t){n(38)}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(){return o}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t){var e,n,r,a;return Object(i.a)(1,arguments),e=1,n=Object(o...
function r (line 6) | function r(t,e){var n,r,c,l,s,f,d,p,h,y,m,b,v;if(Object(i.a)(1,arguments...
function t (line 6) | function t(t){return!!t&&"object"==typeof t}
function e (line 6) | function e(t){var e=Object.prototype.toString.call(t);return"[object Reg...
function n (line 6) | function n(t){return t.$$typeof===p}
function r (line 6) | function r(t){return Array.isArray(t)?[]:{}}
function o (line 6) | function o(t,e){return!1!==e.clone&&e.isMergeableObject(t)?s(r(t),t,e):t}
function i (line 6) | function i(t,e,n){return t.concat(e).map((function(t){return o(t,n)}))}
function a (line 6) | function a(t,e){if(!e.customMerge)return s;var n=e.customMerge(t);return...
function u (line 6) | function u(t){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function c (line 6) | function c(t){return Object.keys(t).concat(u(t))}
function l (line 6) | function l(t,e,n){var r={};return n.isMergeableObject(t)&&c(t).forEach((...
function s (line 6) | function s(t,e,n){var r,a,u;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
function r (line 6) | function r(t){n(68)}
function r (line 6) | function r(t){n(96)}
function r (line 6) | function r(t){n(87)}
function n (line 6) | function n(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve...
function r (line 6) | function r(t){var e=!1;return function(){e||(e=!0,setTimeout((function()...
function o (line 6) | function o(t){var e={};return t&&"[object Function]"===e.toString.call(t)}
function i (line 6) | function i(t,e){var n,r;return 1!==t.nodeType?[]:(n=t.ownerDocument.defa...
function a (line 6) | function a(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}
function u (line 6) | function u(t){if(!t)return document.body;switch(t.nodeName){case"HTML":c...
function c (line 6) | function c(t){return t&&t.referenceNode?t.referenceNode:t}
function l (line 6) | function l(t){return 11===t?yt:10===t?mt:yt||mt}
function s (line 6) | function s(t){var e,n,r;if(!t)return document.documentElement;for(e=l(10...
function f (line 6) | function f(t){var e=t.nodeName;return"BODY"!==e&&("HTML"===e||s(t.firstE...
function d (line 6) | function d(t){return null!==t.parentNode?d(t.parentNode):t}
function p (line 6) | function p(t,e){var n,r,o,i,a,u;return t&&t.nodeType&&e&&e.nodeType?(n=t...
function h (line 6) | function h(t){var e,n,r=arguments.length>1&&void 0!==arguments[1]?argume...
function y (line 6) | function y(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&argumen...
function m (line 6) | function m(t,e){var n="x"===e?"Left":"Top",r="Left"===n?"Right":"Bottom"...
function b (line 6) | function b(t,e,n,r){return Math.max(e["offset"+t],e["scroll"+t],n["clien...
function v (line 6) | function v(t){var e=t.body,n=t.documentElement,r=l(10)&&getComputedStyle...
function g (line 6) | function g(t){return wt({},t,{right:t.left+t.width,bottom:t.top+t.height})}
function w (line 6) | function w(t){var e,n,r,o,a,u,c,s,f,d={};try{l(10)?(d=t.getBoundingClien...
function O (line 6) | function O(t,e){var n,r,o,a=arguments.length>2&&void 0!==arguments[2]&&a...
function _ (line 6) | function _(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments...
function j (line 6) | function j(t){var e,n=t.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"=...
function T (line 6) | function T(t){if(!t||!t.parentElement||l())return document.documentEleme...
function P (line 6) | function P(t,e,n,r){var o,i,l,s,f,d,h=arguments.length>4&&void 0!==argum...
function M (line 6) | function M(t){return t.width*t.height}
function x (line 6) | function x(t,e,n,r,o){var i,a,u,c,l,s,f=arguments.length>5&&void 0!==arg...
function k (line 6) | function k(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?argume...
function S (line 6) | function S(t){var e=t.ownerDocument.defaultView,n=e.getComputedStyle(t),...
function D (line 6) | function D(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"...
function C (line 6) | function C(t,e,n){var r,o,i,a,u,c,l;return n=n.split("-")[0],r=S(t),o={w...
function E (line 6) | function E(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}
function R (line 6) | function R(t,e,n){if(Array.prototype.findIndex)return t.findIndex((funct...
function F (line 6) | function F(t,e,n){return(void 0===n?t:t.slice(0,R(t,"name",n))).forEach(...
function N (line 6) | function N(){if(!this.state.isDestroyed){var t={instance:this,styles:{},...
function A (line 6) | function A(t,e){return t.some((function(t){var n=t.name;return t.enabled...
function B (line 6) | function B(t){var e,n,r,o=[!1,"ms","Webkit","Moz","O"],i=t.charAt(0).toU...
function L (line 6) | function L(){return this.state.isDestroyed=!0,A(this.modifiers,"applySty...
function U (line 6) | function U(t){var e=t.ownerDocument;return e?e.defaultView:window}
function H (line 6) | function H(t,e,n,r){var o="BODY"===t.nodeName,i=o?t.ownerDocument.defaul...
function $ (line 6) | function $(t,e,n,r){n.updateBound=r,U(t).addEventListener("resize",n.upd...
function Y (line 6) | function Y(){this.state.eventsEnabled||(this.state=$(this.reference,this...
function q (line 6) | function q(t,e){return U(t).removeEventListener("resize",e.updateBound),...
function I (line 6) | function I(){this.state.eventsEnabled&&(cancelAnimationFrame(this.schedu...
function W (line 6) | function W(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}
function V (line 6) | function V(t,e){Object.keys(e).forEach((function(n){var r="";-1!==["widt...
function G (line 6) | function G(t,e){Object.keys(e).forEach((function(n){!1!==e[n]?t.setAttri...
function z (line 6) | function z(t){return V(t.instance.popper,t.styles),G(t.instance.popper,t...
function Q (line 6) | function Q(t,e,n,r,o){var i=k(o,e,t,n.positionFixed),a=x(n.placement,i,e...
function X (line 6) | function X(t,e){var n=t.offsets,r=n.popper,o=n.reference,i=Math.round,a=...
function J (line 6) | function J(t,e){var n,r,o,i,a,u,c,l,f,d,p,h,y,m=e.x,b=e.y,v=t.offsets.po...
function K (line 6) | function K(t,e,n){var r,o,i=E(t,(function(t){return t.name===e})),a=!!i&...
function Z (line 6) | function Z(t,e){var n,r,o,a,u,c,l,s,f,d,p,h,y,m,b,v,w,O;if(!K(t.instance...
function tt (line 6) | function tt(t){return"end"===t?"start":"start"===t?"end":t}
function et (line 6) | function et(t){var e=arguments.length>1&&void 0!==arguments[1]&&argument...
function nt (line 6) | function nt(t,e){var n,r,o,i,a;if(A(t.instance.modifiers,"inner"))return...
function rt (line 6) | function rt(t){var e=t.offsets,n=e.popper,r=e.reference,o=t.placement.sp...
function ot (line 6) | function ot(t,e,n,r){var o,i,a=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),u=+a...
function it (line 6) | function it(t,e,n,r){var o,i,a=[0,0],u=-1!==["right","left"].indexOf(r),...
function at (line 6) | function at(t,e){var n=e.offset,r=t.placement,o=t.offsets,i=o.popper,a=o...
function ut (line 6) | function ut(t,e){var n,r,o,i,a,u,c,l,f,d=e.boundariesElement||s(t.instan...
function ct (line 6) | function ct(t){var e,n,r,o,i,a,u,c=t.placement,l=c.split("-")[0],s=c.spl...
function lt (line 6) | function lt(t){var e,n;if(!K(t.instance.modifiers,"hide","preventOverflo...
function st (line 6) | function st(t){var e=t.placement,n=e.split("-")[0],r=t.offsets,o=r.poppe...
function t (line 6) | function t(t,e){var n,r;for(n=0;n<e.length;n++)r=e[n],r.enumerable=r.enu...
function t (line 6) | function t(e,n){var r,i=this,a=arguments.length>2&&void 0!==arguments[2]...
function r (line 6) | function r(t,e){if(e.length<t)throw new TypeError(t+" argument"+(t>1?"s"...
function r (line 6) | function r(t){n(157)}
function r (line 6) | function r(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t,e){var n,r,l,s,f,d,p,h,y,m,b,v,g,w,O,_;if(Object(i.a)(1,arg...
FILE: dist/components/MdDialog/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function i (line 6) | function i(e){if(d===clearTimeout)return clearTimeout(e);if((d===r||!d)&...
function a (line 6) | function a(){m&&h&&(m=!1,h.length?f=h.concat(f):p=-1,f.length&&u())}
function u (line 6) | function u(){var e,t;if(!m){for(e=o(a),m=!0,t=f.length;t;){for(h=f,f=[];...
function l (line 6) | function l(e,t){this.fun=e,this.array=t}
function s (line 6) | function s(){}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(359)}
function r (line 6) | function r(e){n(362)}
function r (line 6) | function r(e){n(365)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function l (line 6) | function l(e){return Object.keys(e).concat(u(e))}
function s (line 6) | function s(e,t,n){var r={};return n.isMergeableObject(e)&&l(e).forEach((...
function c (line 6) | function c(e,t,n){var r,a,u;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
function r (line 6) | function r(e){n(96)}
function r (line 6) | function r(e){n(157)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdDivider/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(369)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(r(e),e,t):e}
function u (line 6) | function u(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function i (line 6) | function i(e,t){if(!t.customMerge)return l;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,n){var r,i,a;return n=n||{},n.arrayMerge=n.arrayMerge||u,...
FILE: dist/components/MdDrawer/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function o (line 6) | function o(e){if(d===clearTimeout)return clearTimeout(e);if((d===r||!d)&...
function a (line 6) | function a(){m&&h&&(m=!1,h.length?f=h.concat(f):p=-1,f.length&&s())}
function s (line 6) | function s(){var e,t;if(!m){for(e=i(a),m=!0,t=f.length;t;){for(h=f,f=[];...
function u (line 6) | function u(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(373)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function s (line 6) | function s(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function u (line 6) | function u(e){return Object.keys(e).concat(s(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&u(e).forEach((...
function c (line 6) | function c(e,t,n){var r,a,s;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
function r (line 6) | function r(e){n(96)}
FILE: dist/components/MdElevation/index.js
function t (line 6) | function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{...
FILE: dist/components/MdEmptyState/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(166)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(r(e),e,t):e}
function u (line 6) | function u(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return l;var n=t.customMerge(e);return...
function s (line 6) | function s(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function i (line 6) | function i(e){return Object.keys(e).concat(s(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&i(e).forEach((...
function l (line 6) | function l(e,t,n){var r,a,s;return n=n||{},n.arrayMerge=n.arrayMerge||u,...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdField/index.js
function t (line 6) | function t(i){if(n[i])return n[i].exports;var o=n[i]={i:i,l:!1,exports:{...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(170)}
function i (line 6) | function i(e){n(172)}
function i (line 6) | function i(e){n(36)}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function i (line 6) | function i(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(d===setTimeout)return setTimeout(e,0);if((d===n||!d)&&s...
function r (line 6) | function r(e){if(c===clearTimeout)return clearTimeout(e);if((c===i||!c)&...
function s (line 6) | function s(){h&&p&&(h=!1,p.length?f=p.concat(f):m=-1,f.length&&l())}
function l (line 6) | function l(){var e,t;if(!h){for(e=o(s),h=!0,t=f.length;t;){for(p=f,f=[];...
function a (line 6) | function a(e,t){this.fun=e,this.array=t}
function u (line 6) | function u(){}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.len...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t){var n=e.style.height,i=e.offsetHeight,o=e.scrollHeight;r...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(38)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(381)}
function i (line 6) | function i(e){n(386)}
function i (line 6) | function i(e){n(389)}
function i (line 6) | function i(e){n(392)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===h}
function i (line 6) | function i(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?d(i(e),e,t):e}
function r (line 6) | function r(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function s (line 6) | function s(e,t){if(!t.customMerge)return d;var n=t.customMerge(e);return...
function l (line 6) | function l(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function a (line 6) | function a(e){return Object.keys(e).concat(l(e))}
function u (line 6) | function u(e,t,n){var i={};return n.isMergeableObject(e)&&a(e).forEach((...
function d (line 6) | function d(e,t,n){var i,s,l;return n=n||{},n.arrayMerge=n.arrayMerge||r,...
function i (line 6) | function i(e){n(68)}
function o (line 6) | function o(){e.removeEventListener(t,n)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(87)}
function n (line 6) | function n(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve...
function i (line 6) | function i(e){var t=!1;return function(){t||(t=!0,setTimeout((function()...
function o (line 6) | function o(e){var t={};return e&&"[object Function]"===t.toString.call(e)}
function r (line 6) | function r(e,t){var n,i;return 1!==e.nodeType?[]:(n=e.ownerDocument.defa...
function s (line 6) | function s(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}
function l (line 6) | function l(e){if(!e)return document.body;switch(e.nodeName){case"HTML":c...
function a (line 6) | function a(e){return e&&e.referenceNode?e.referenceNode:e}
function u (line 6) | function u(e){return 11===e?me:10===e?ve:me||ve}
function d (line 6) | function d(e){var t,n,i;if(!e)return document.documentElement;for(t=u(10...
function c (line 6) | function c(e){var t=e.nodeName;return"BODY"!==t&&("HTML"===t||d(e.firstE...
function f (line 6) | function f(e){return null!==e.parentNode?f(e.parentNode):e}
function h (line 6) | function h(e,t){var n,i,o,r,s,l;return e&&e.nodeType&&t&&t.nodeType?(n=e...
function p (line 6) | function p(e){var t,n,i=arguments.length>1&&void 0!==arguments[1]?argume...
function m (line 6) | function m(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&argumen...
function v (line 6) | function v(e,t){var n="x"===t?"Left":"Top",i="Left"===n?"Right":"Bottom"...
function g (line 6) | function g(e,t,n,i){return Math.max(t["offset"+e],t["scroll"+e],n["clien...
function y (line 6) | function y(e){var t=e.body,n=e.documentElement,i=u(10)&&getComputedStyle...
function b (line 6) | function b(e){return Me({},e,{right:e.left+e.width,bottom:e.top+e.height})}
function M (line 6) | function M(e){var t,n,i,o,s,l,a,d,c,f={};try{u(10)?(f=e.getBoundingClien...
function w (line 6) | function w(e,t){var n,i,o,s=arguments.length>2&&void 0!==arguments[2]&&a...
function _ (line 6) | function _(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments...
function x (line 6) | function x(e){var t,n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"=...
function O (line 6) | function O(e){if(!e||!e.parentElement||u())return document.documentEleme...
function C (line 6) | function C(e,t,n,i){var o,r,u,d,c,f,p=arguments.length>4&&void 0!==argum...
function S (line 6) | function S(e){return e.width*e.height}
function T (line 6) | function T(e,t,n,i,o){var r,s,l,a,u,d,c=arguments.length>5&&void 0!==arg...
function P (line 6) | function P(e,t,n){var i=arguments.length>3&&void 0!==arguments[3]?argume...
function E (line 6) | function E(e){var t=e.ownerDocument.defaultView,n=t.getComputedStyle(e),...
function F (line 6) | function F(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"...
function $ (line 6) | function $(e,t,n){var i,o,r,s,l,a,u;return n=n.split("-")[0],i=E(e),o={w...
function k (line 6) | function k(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}
function A (line 6) | function A(e,t,n){if(Array.prototype.findIndex)return e.findIndex((funct...
function L (line 6) | function L(e,t,n){return(void 0===n?e:e.slice(0,A(e,"name",n))).forEach(...
function j (line 6) | function j(){if(!this.state.isDestroyed){var e={instance:this,styles:{},...
function I (line 6) | function I(e,t){return e.some((function(e){var n=e.name;return e.enabled...
function N (line 6) | function N(e){var t,n,i,o=[!1,"ms","Webkit","Moz","O"],r=e.charAt(0).toU...
function V (line 6) | function V(){return this.state.isDestroyed=!0,I(this.modifiers,"applySty...
function D (line 6) | function D(e){var t=e.ownerDocument;return t?t.defaultView:window}
function H (line 6) | function H(e,t,n,i){var o="BODY"===e.nodeName,r=o?e.ownerDocument.defaul...
function B (line 6) | function B(e,t,n,i){n.updateBound=i,D(e).addEventListener("resize",n.upd...
function R (line 6) | function R(){this.state.eventsEnabled||(this.state=B(this.reference,this...
function q (line 6) | function q(e,t){return D(e).removeEventListener("resize",t.updateBound),...
function z (line 6) | function z(){this.state.eventsEnabled&&(cancelAnimationFrame(this.schedu...
function W (line 6) | function W(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}
function Y (line 6) | function Y(e,t){Object.keys(t).forEach((function(n){var i="";-1!==["widt...
function U (line 6) | function U(e,t){Object.keys(t).forEach((function(n){!1!==t[n]?e.setAttri...
function X (line 6) | function X(e){return Y(e.instance.popper,e.styles),U(e.instance.popper,e...
function G (line 6) | function G(e,t,n,i,o){var r=P(o,t,e,n.positionFixed),s=T(n.placement,r,t...
function K (line 6) | function K(e,t){var n=e.offsets,i=n.popper,o=n.reference,r=Math.round,s=...
function J (line 6) | function J(e,t){var n,i,o,r,s,l,a,u,c,f,h,p,m,v=t.x,g=t.y,y=e.offsets.po...
function Q (line 6) | function Q(e,t,n){var i,o,r=k(e,(function(e){return e.name===t})),s=!!r&...
function Z (line 6) | function Z(e,t){var n,i,o,s,l,a,u,d,c,f,h,p,m,v,g,y,M,w;if(!Q(e.instance...
function ee (line 6) | function ee(e){return"end"===e?"start":"start"===e?"end":e}
function te (line 6) | function te(e){var t=arguments.length>1&&void 0!==arguments[1]&&argument...
function ne (line 6) | function ne(e,t){var n,i,o,r,s;if(I(e.instance.modifiers,"inner"))return...
function ie (line 6) | function ie(e){var t=e.offsets,n=t.popper,i=t.reference,o=e.placement.sp...
function oe (line 6) | function oe(e,t,n,i){var o,r,s=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),l=+s...
function re (line 6) | function re(e,t,n,i){var o,r,s=[0,0],l=-1!==["right","left"].indexOf(i),...
function se (line 6) | function se(e,t){var n=t.offset,i=e.placement,o=e.offsets,r=o.popper,s=o...
function le (line 6) | function le(e,t){var n,i,o,r,s,l,a,u,c,f=t.boundariesElement||d(e.instan...
function ae (line 6) | function ae(e){var t,n,i,o,r,s,l,a=e.placement,u=a.split("-")[0],d=a.spl...
function ue (line 6) | function ue(e){var t,n;if(!Q(e.instance.modifiers,"hide","preventOverflo...
function de (line 6) | function de(e){var t=e.placement,n=t.split("-")[0],i=e.offsets,o=i.poppe...
function e (line 6) | function e(e,t){var n,i;for(n=0;n<t.length;n++)i=t[n],i.enumerable=i.enu...
function e (line 6) | function e(t,n){var i,r=this,s=arguments.length>2&&void 0!==arguments[2]...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function i (line 6) | function i(e){n(99)}
FILE: dist/components/MdHighlightText/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){var t=e;return t||(t="$&"),'<span class="md-highlight-text...
function u (line 6) | function u(e,t){var r,n,i,a,s,l;if(0===t.length)return e;if(-1===(r=e.to...
function i (line 6) | function i(e,t){var r=RegExp(t+"(?!([^<]+)?<)","gi");return e.replace(r,...
function a (line 6) | function a(e,t,r){var n=e.text;return n&&t&&t[0]?r?u(n,t)||n:i(n,t):n}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(400)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function i (line 6) | function i(e,t){if(!t.customMerge)return c;var r=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function l (line 6) | function l(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,r){var n,i,a;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdIcon/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(36)}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(38)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function i (line 6) | function i(e,t){if(!t.customMerge)return l;var r=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function c (line 6) | function c(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,r){var n,i,a;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdImage/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(403)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return l;var r=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function c (line 6) | function c(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,r){var n,a,i;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdLayout/index.js
function t (line 6) | function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{...
FILE: dist/components/MdList/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(182)}
function r (line 6) | function r(e){n(36)}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function o (line 6) | function o(e){if(d===clearTimeout)return clearTimeout(e);if((d===r||!d)&...
function u (line 6) | function u(){p&&m&&(p=!1,m.length?f=m.concat(f):h=-1,f.length&&s())}
function s (line 6) | function s(){var e,t;if(!p){for(e=i(u),p=!0,t=f.length;t;){for(m=f,f=[];...
function a (line 6) | function a(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(196)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(43)}
function r (line 6) | function r(e){n(38)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(){try{var e=Object.defineProperty({},"passive",{get:function(...
function i (line 6) | function i(e){var t=(e.keyCode,e.target);_.currentElement=t}
function o (line 6) | function o(e){_.currentElement=null}
function u (line 6) | function u(){h.addEventListener("keyup",i)}
function s (line 6) | function s(){h.addEventListener("pointerup",o)}
function a (line 6) | function a(){h.addEventListener("MSPointerUp",o)}
function l (line 6) | function l(){h.addEventListener("mouseup",o),"ontouchend"in window&&h.ad...
function c (line 6) | function c(){window.PointerEvent?s():window.MSPointerEvent?a():l(),u()}
function d (line 6) | function d(){m||(h=document.body,r(),c(),m=!0)}
function r (line 6) | function r(e){n(45)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function s (line 6) | function s(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function a (line 6) | function a(e){return Object.keys(e).concat(s(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&a(e).forEach((...
function c (line 6) | function c(e,t,n){var r,u,s;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
function r (line 6) | function r(e){n(99)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e.hasOwnProperty("mdExpand")&&!1!==e.mdExpand}
function o (line 6) | function o(e,t){if(i(e))return{"md-expand":function(){return t["md-expan...
function u (line 6) | function u(e){return e.default.some((function(e){return e.componentOptio...
function s (line 6) | function s(e){var t=Object.keys(e),n=!1;return t.forEach((function(e){p....
function a (line 6) | function a(e,t){return e&&e.$router&&t.to}
function l (line 6) | function l(e,t,n,r){return i(e)?E.default:e.disabled?g.default:a(t,e)?(O...
function c (line 6) | function c(e){return u(e)?y.default:g.default}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdMenu/index.js
function t (line 6) | function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(170)}
function i (line 6) | function i(e){n(172)}
function i (line 6) | function i(e){n(182)}
function i (line 6) | function i(e){n(36)}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function i (line 6) | function i(){throw Error("clearTimeout has not been defined")}
function r (line 6) | function r(e){if(d===setTimeout)return setTimeout(e,0);if((d===n||!d)&&s...
function o (line 6) | function o(e){if(c===clearTimeout)return clearTimeout(e);if((c===i||!c)&...
function s (line 6) | function s(){p&&h&&(p=!1,h.length?f=h.concat(f):m=-1,f.length&&u())}
function u (line 6) | function u(){var e,t;if(!p){for(e=r(s),p=!0,t=f.length;t;){for(h=f,f=[];...
function a (line 6) | function a(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function i (line 6) | function i(e){n(24)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(196)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(25)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(43)}
function i (line 6) | function i(e){n(38)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(){try{var e=Object.defineProperty({},"passive",{get:function(...
function r (line 6) | function r(e){var t=(e.keyCode,e.target);g.currentElement=t}
function o (line 6) | function o(e){g.currentElement=null}
function s (line 6) | function s(){m.addEventListener("keyup",r)}
function u (line 6) | function u(){m.addEventListener("pointerup",o)}
function a (line 6) | function a(){m.addEventListener("MSPointerUp",o)}
function l (line 6) | function l(){m.addEventListener("mouseup",o),"ontouchend"in window&&m.ad...
function d (line 6) | function d(){window.PointerEvent?u():window.MSPointerEvent?a():l(),s()}
function c (line 6) | function c(){h||(m=document.body,i(),d(),h=!0)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){n(45)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function i (line 6) | function i(e){return Array.isArray(e)?[]:{}}
function r (line 6) | function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?d(i(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return r(e,n)}))}
function s (line 6) | function s(e,t){if(!t.customMerge)return d;var n=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function a (line 6) | function a(e){return Object.keys(e).concat(u(e))}
function l (line 6) | function l(e,t,n){var i={};return n.isMergeableObject(e)&&a(e).forEach((...
function d (line 6) | function d(e,t,n){var i,s,u;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
function i (line 6) | function i(e){n(68)}
function r (line 6) | function r(){e.removeEventListener(t,n)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve...
function i (line 6) | function i(e){var t=!1;return function(){t||(t=!0,setTimeout((function()...
function r (line 6) | function r(e){var t={};return e&&"[object Function]"===t.toString.call(e)}
function o (line 6) | function o(e,t){var n,i;return 1!==e.nodeType?[]:(n=e.ownerDocument.defa...
function s (line 6) | function s(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}
function u (line 6) | function u(e){if(!e)return document.body;switch(e.nodeName){case"HTML":c...
function a (line 6) | function a(e){return e&&e.referenceNode?e.referenceNode:e}
function l (line 6) | function l(e){return 11===e?me:10===e?ve:me||ve}
function d (line 6) | function d(e){var t,n,i;if(!e)return document.documentElement;for(t=l(10...
function c (line 6) | function c(e){var t=e.nodeName;return"BODY"!==t&&("HTML"===t||d(e.firstE...
function f (line 6) | function f(e){return null!==e.parentNode?f(e.parentNode):e}
function p (line 6) | function p(e,t){var n,i,r,o,s,u;return e&&e.nodeType&&t&&t.nodeType?(n=e...
function h (line 6) | function h(e){var t,n,i=arguments.length>1&&void 0!==arguments[1]?argume...
function m (line 6) | function m(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&argumen...
function v (line 6) | function v(e,t){var n="x"===t?"Left":"Top",i="Left"===n?"Right":"Bottom"...
function g (line 6) | function g(e,t,n,i){return Math.max(t["offset"+e],t["scroll"+e],n["clien...
function b (line 6) | function b(e){var t=e.body,n=e.documentElement,i=l(10)&&getComputedStyle...
function y (line 6) | function y(e){return Me({},e,{right:e.left+e.width,bottom:e.top+e.height})}
function M (line 6) | function M(e){var t,n,i,r,s,u,a,d,c,f={};try{l(10)?(f=e.getBoundingClien...
function w (line 6) | function w(e,t){var n,i,r,s=arguments.length>2&&void 0!==arguments[2]&&a...
function _ (line 6) | function _(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments...
function O (line 6) | function O(e){var t,n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"=...
function x (line 6) | function x(e){if(!e||!e.parentElement||l())return document.documentEleme...
function E (line 6) | function E(e,t,n,i){var r,o,l,d,c,f,h=arguments.length>4&&void 0!==argum...
function C (line 6) | function C(e){return e.width*e.height}
function T (line 6) | function T(e,t,n,i,r){var o,s,u,a,l,d,c=arguments.length>5&&void 0!==arg...
function P (line 6) | function P(e,t,n){var i=arguments.length>3&&void 0!==arguments[3]?argume...
function S (line 6) | function S(e){var t=e.ownerDocument.defaultView,n=t.getComputedStyle(e),...
function $ (line 6) | function $(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"...
function L (line 6) | function L(e,t,n){var i,r,o,s,u,a,l;return n=n.split("-")[0],i=S(e),r={w...
function j (line 6) | function j(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}
function A (line 6) | function A(e,t,n){if(Array.prototype.findIndex)return e.findIndex((funct...
function k (line 6) | function k(e,t,n){return(void 0===n?e:e.slice(0,A(e,"name",n))).forEach(...
function D (line 6) | function D(){if(!this.state.isDestroyed){var e={instance:this,styles:{},...
function N (line 6) | function N(e,t){return e.some((function(e){var n=e.name;return e.enabled...
function R (line 6) | function R(e){var t,n,i,r=[!1,"ms","Webkit","Moz","O"],o=e.charAt(0).toU...
function I (line 6) | function I(){return this.state.isDestroyed=!0,N(this.modifiers,"applySty...
function F (line 6) | function F(e){var t=e.ownerDocument;return t?t.defaultView:window}
function H (line 6) | function H(e,t,n,i){var r="BODY"===e.nodeName,o=r?e.ownerDocument.defaul...
function B (line 6) | function B(e,t,n,i){n.updateBound=i,F(e).addEventListener("resize",n.upd...
function W (line 6) | function W(){this.state.eventsEnabled||(this.state=B(this.reference,this...
function Y (line 6) | function Y(e,t){return F(e).removeEventListener("resize",t.updateBound),...
function z (line 6) | function z(){this.state.eventsEnabled&&(cancelAnimationFrame(this.schedu...
function q (line 6) | function q(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}
function V (line 6) | function V(e,t){Object.keys(t).forEach((function(n){var i="";-1!==["widt...
function U (line 6) | function U(e,t){Object.keys(t).forEach((function(n){!1!==t[n]?e.setAttri...
function X (line 6) | function X(e){return V(e.instance.popper,e.styles),U(e.instance.popper,e...
function G (line 6) | function G(e,t,n,i,r){var o=P(r,t,e,n.positionFixed),s=T(n.placement,o,t...
function K (line 6) | function K(e,t){var n=e.offsets,i=n.popper,r=n.reference,o=Math.round,s=...
function J (line 6) | function J(e,t){var n,i,r,o,s,u,a,l,c,f,p,h,m,v=t.x,g=t.y,b=e.offsets.po...
function Q (line 6) | function Q(e,t,n){var i,r,o=j(e,(function(e){return e.name===t})),s=!!o&...
function Z (line 6) | function Z(e,t){var n,i,r,s,u,a,l,d,c,f,p,h,m,v,g,b,M,w;if(!Q(e.instance...
function ee (line 6) | function ee(e){return"end"===e?"start":"start"===e?"end":e}
function te (line 6) | function te(e){var t=arguments.length>1&&void 0!==arguments[1]&&argument...
function ne (line 6) | function ne(e,t){var n,i,r,o,s;if(N(e.instance.modifiers,"inner"))return...
function ie (line 6) | function ie(e){var t=e.offsets,n=t.popper,i=t.reference,r=e.placement.sp...
function re (line 6) | function re(e,t,n,i){var r,o,s=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),u=+s...
function oe (line 6) | function oe(e,t,n,i){var r,o,s=[0,0],u=-1!==["right","left"].indexOf(i),...
function se (line 6) | function se(e,t){var n=t.offset,i=e.placement,r=e.offsets,o=r.popper,s=r...
function ue (line 6) | function ue(e,t){var n,i,r,o,s,u,a,l,c,f=t.boundariesElement||d(e.instan...
function ae (line 6) | function ae(e){var t,n,i,r,o,s,u,a=e.placement,l=a.split("-")[0],d=a.spl...
function le (line 6) | function le(e){var t,n;if(!Q(e.instance.modifiers,"hide","preventOverflo...
function de (line 6) | function de(e){var t=e.placement,n=t.split("-")[0],i=e.offsets,r=i.poppe...
function e (line 6) | function e(e,t){var n,i;for(n=0;n<t.length;n++)i=t[n],i.enumerable=i.enu...
function e (line 6) | function e(t,n){var i,o=this,s=arguments.length>2&&void 0!==arguments[2]...
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function i (line 6) | function i(e){n(99)}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e.hasOwnProperty("mdExpand")&&!1!==e.mdExpand}
function o (line 6) | function o(e,t){if(r(e))return{"md-expand":function(){return t["md-expan...
function s (line 6) | function s(e){return e.default.some((function(e){return e.componentOptio...
function u (line 6) | function u(e){var t=Object.keys(e),n=!1;return t.forEach((function(e){p....
function a (line 6) | function a(e,t){return e&&e.$router&&t.to}
function l (line 6) | function l(e,t,n,i){return r(e)?T.default:e.disabled?w.default:a(t,e)?(E...
function d (line 6) | function d(e){return s(e)?y.default:w.default}
function i (line 6) | function i(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdProgress/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enume...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(413)}
function n (line 6) | function n(e){r(416)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(n(e),e,t):e}
function s (line 6) | function s(e,t,r){return e.concat(t).map((function(e){return i(e,r)}))}
function o (line 6) | function o(e,t){if(!t.customMerge)return l;var r=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function a (line 6) | function a(e){return Object.keys(e).concat(u(e))}
function c (line 6) | function c(e,t,r){var n={};return r.isMergeableObject(e)&&a(e).forEach((...
function l (line 6) | function l(e,t,r){var n,o,u;return r=r||{},r.arrayMerge=r.arrayMerge||s,...
FILE: dist/components/MdRadio/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(s===setTimeout)return setTimeout(e,0);if((s===n||!s)&&s...
function i (line 6) | function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function u (line 6) | function u(){m&&p&&(m=!1,p.length?d=p.concat(d):h=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!m){for(e=o(u),m=!0,t=d.length;t;){for(p=d,d=[];...
function l (line 6) | function l(e,t){this.fun=e,this.array=t}
function c (line 6) | function c(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(420)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?s(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return s;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function l (line 6) | function l(e){return Object.keys(e).concat(a(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&l(e).forEach((...
function s (line 6) | function s(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
FILE: dist/components/MdRipple/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(l===setTimeout)return setTimeout(e,0);if((l===n||!l)&&s...
function u (line 6) | function u(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function i (line 6) | function i(){m&&p&&(m=!1,p.length?d=p.concat(d):h=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!m){for(e=o(i),m=!0,t=d.length;t;){for(p=d,d=[];...
function c (line 6) | function c(e,t){this.fun=e,this.array=t}
function s (line 6) | function s(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(r(e),e,t):e}
function u (line 6) | function u(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function i (line 6) | function i(e,t){if(!t.customMerge)return l;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function c (line 6) | function c(e){return Object.keys(e).concat(a(e))}
function s (line 6) | function s(e,t,n){var r={};return n.isMergeableObject(e)&&c(e).forEach((...
function l (line 6) | function l(e,t,n){var r,i,a;return n=n||{},n.arrayMerge=n.arrayMerge||u,...
FILE: dist/components/MdSnackbar/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function o (line 6) | function o(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function i (line 6) | function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function a (line 6) | function a(){m&&h&&(m=!1,h.length?d=h.concat(d):p=-1,d.length&&u())}
function u (line 6) | function u(){var e,t;if(!m){for(e=o(a),m=!0,t=d.length;t;){for(h=d,d=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(425)}
function r (line 6) | function r(e,t,n){return new Promise(function(r){o={destroy:function(){o...
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(u(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,n){var r,a,u;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
FILE: dist/components/MdSpeedDial/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function o (line 6) | function o(e){if(d===clearTimeout)return clearTimeout(e);if((d===r||!d)&...
function u (line 6) | function u(){p&&m&&(p=!1,m.length?f=m.concat(f):h=-1,f.length&&a())}
function a (line 6) | function a(){var e,t;if(!p){for(e=i(u),p=!0,t=f.length;t;){for(m=f,f=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e,t,n){return"top"===e?n-t-1:t}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(43)}
function r (line 6) | function r(){try{var e=Object.defineProperty({},"passive",{get:function(...
function i (line 6) | function i(e){var t=(e.keyCode,e.target);y.currentElement=t}
function o (line 6) | function o(e){y.currentElement=null}
function u (line 6) | function u(){h.addEventListener("keyup",i)}
function a (line 6) | function a(){h.addEventListener("pointerup",o)}
function s (line 6) | function s(){h.addEventListener("MSPointerUp",o)}
function l (line 6) | function l(){h.addEventListener("mouseup",o),"ontouchend"in window&&h.ad...
function c (line 6) | function c(){window.PointerEvent?a():window.MSPointerEvent?s():l(),u()}
function d (line 6) | function d(){m||(h=document.body,r(),c(),m=!0)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(432)}
function r (line 6) | function r(e){n(435)}
function r (line 6) | function r(e){n(438)}
function r (line 6) | function r(e){n(45)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(a(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
FILE: dist/components/MdSteppers/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(36)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(38)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(442)}
function r (line 6) | function r(e){n(452)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===f}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?d(r(e),e,t):e}
function s (line 6) | function s(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function o (line 6) | function o(e,t){if(!t.customMerge)return d;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function u (line 6) | function u(e){return Object.keys(e).concat(a(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&u(e).forEach((...
function d (line 6) | function d(e,t,n){var r,o,a;return n=n||{},n.arrayMerge=n.arrayMerge||s,...
FILE: dist/components/MdSubheader/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(456)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l(r(e),e,t):e}
function u (line 6) | function u(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return l;var n=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function c (line 6) | function c(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function l (line 6) | function l(e,t,n){var r,a,i;return n=n||{},n.arrayMerge=n.arrayMerge||u,...
FILE: dist/components/MdSwitch/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function o (line 6) | function o(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&...
function u (line 6) | function u(){m&&h&&(m=!1,h.length?d=h.concat(d):p=-1,d.length&&a())}
function a (line 6) | function a(){var e,t;if(!m){for(e=i(u),m=!0,t=d.length;t;){for(h=d,d=[];...
function l (line 6) | function l(e,t){this.fun=e,this.array=t}
function s (line 6) | function s(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(460)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function u (line 6) | function u(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function a (line 6) | function a(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function l (line 6) | function l(e){return Object.keys(e).concat(a(e))}
function s (line 6) | function s(e,t,n){var r={};return n.isMergeableObject(e)&&l(e).forEach((...
function c (line 6) | function c(e,t,n){var r,u,a;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
FILE: dist/components/MdTable/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(468)}
function r (line 6) | function r(e){n(166)}
function r (line 6) | function r(e){n(231)}
function r (line 6) | function r(e){n(36)}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(u===setTimeout)return setTimeout(e,0);if((u===n||!u)&&s...
function a (line 6) | function a(e){if(c===clearTimeout)return clearTimeout(e);if((c===r||!c)&...
function s (line 6) | function s(){m&&h&&(m=!1,h.length?f=h.concat(f):p=-1,f.length&&l())}
function l (line 6) | function l(){var e,t;if(!m){for(e=i(s),m=!0,t=f.length;t;){for(h=f,f=[];...
function o (line 6) | function o(e,t){this.fun=e,this.array=t}
function d (line 6) | function d(){}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(478)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(479)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(38)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e,t){function n(e){var t=e.componentOptions;return t&&t.tag}v...
function r (line 6) | function r(e){n(465)}
function r (line 6) | function r(e){n(476)}
function r (line 6) | function r(e){n(485)}
function r (line 6) | function r(e){n(488)}
function r (line 6) | function r(e){n(491)}
function r (line 6) | function r(e){n(494)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===m}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?u(r(e),e,t):e}
function a (line 6) | function a(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function s (line 6) | function s(e,t){if(!t.customMerge)return u;var n=t.customMerge(e);return...
function l (line 6) | function l(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function o (line 6) | function o(e){return Object.keys(e).concat(l(e))}
function d (line 6) | function d(e,t,n){var r={};return n.isMergeableObject(e)&&o(e).forEach((...
function u (line 6) | function u(e,t,n){var r,s,l;return n=n||{},n.arrayMerge=n.arrayMerge||a,...
function i (line 6) | function i(){e.removeEventListener(t,n)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
FILE: dist/components/MdTabs/index.js
function e (line 6) | function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{...
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function i (line 6) | function i(){throw Error("clearTimeout has not been defined")}
function r (line 6) | function r(t){if(l===setTimeout)return setTimeout(t,0);if((l===n||!l)&&s...
function s (line 6) | function s(t){if(d===clearTimeout)return clearTimeout(t);if((d===i||!d)&...
function o (line 6) | function o(){h&&p&&(h=!1,p.length?f=p.concat(f):m=-1,f.length&&a())}
function a (line 6) | function a(){var t,e;if(!h){for(t=r(o),h=!0,e=f.length;e;){for(p=f,f=[];...
function u (line 6) | function u(t,e){this.fun=t,this.array=e}
function c (line 6) | function c(){}
function i (line 6) | function i(t){n(24)}
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function i (line 6) | function i(t){n(25)}
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function r (line 6) | function r(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enume...
function s (line 6) | function s(t,e){if(t.length!==e.length)return!1;for(var n=0;n<t.length;n...
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function i (line 6) | function i(t){n(43)}
function i (line 6) | function i(){try{var t=Object.defineProperty({},"passive",{get:function(...
function r (line 6) | function r(t){var e=(t.keyCode,t.target);b.currentElement=e}
function s (line 6) | function s(t){b.currentElement=null}
function o (line 6) | function o(){m.addEventListener("keyup",r)}
function a (line 6) | function a(){m.addEventListener("pointerup",s)}
function u (line 6) | function u(){m.addEventListener("MSPointerUp",s)}
function c (line 6) | function c(){m.addEventListener("mouseup",s),"ontouchend"in window&&m.ad...
function l (line 6) | function l(){window.PointerEvent?a():window.MSPointerEvent?u():c(),o()}
function d (line 6) | function d(){p||(m=document.body,i(),l(),p=!0)}
function i (line 6) | function i(t){n(45)}
function i (line 6) | function i(t){return t&&t.__esModule?t:{default:t}}
function i (line 6) | function i(t){n(498)}
function t (line 6) | function t(t){return!!t&&"object"==typeof t}
function e (line 6) | function e(t){var e=Object.prototype.toString.call(t);return"[object Reg...
function n (line 6) | function n(t){return t.$$typeof===h}
function i (line 6) | function i(t){return Array.isArray(t)?[]:{}}
function r (line 6) | function r(t,e){return!1!==e.clone&&e.isMergeableObject(t)?l(i(t),t,e):t}
function s (line 6) | function s(t,e,n){return t.concat(e).map((function(t){return r(t,n)}))}
function o (line 6) | function o(t,e){if(!e.customMerge)return l;var n=e.customMerge(t);return...
function a (line 6) | function a(t){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function u (line 6) | function u(t){return Object.keys(t).concat(a(t))}
function c (line 6) | function c(t,e,n){var i={};return n.isMergeableObject(t)&&u(t).forEach((...
function l (line 6) | function l(t,e,n){var i,o,a;return n=n||{},n.arrayMerge=n.arrayMerge||s,...
FILE: dist/components/MdToolbar/index.js
function t (line 6) | function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{...
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){r(231)}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function r (line 6) | function r(e){return e.$$typeof===m}
function n (line 6) | function n(e){return Array.isArray(e)?[]:{}}
function o (line 6) | function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(n(e),e,t):e}
function u (line 6) | function u(e,t,r){return e.concat(t).map((function(e){return o(e,r)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var r=t.customMerge(e);return...
function i (line 6) | function i(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(i(e))}
function l (line 6) | function l(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,r){var n,a,i;return r=r||{},r.arrayMerge=r.arrayMerge||u,...
FILE: dist/components/MdTooltip/index.js
function t (line 6) | function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{...
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function o (line 6) | function o(){throw Error("clearTimeout has not been defined")}
function r (line 6) | function r(e){if(f===setTimeout)return setTimeout(e,0);if((f===n||!f)&&s...
function i (line 6) | function i(e){if(c===clearTimeout)return clearTimeout(e);if((c===o||!c)&...
function a (line 6) | function a(){p&&h&&(p=!1,h.length?d=h.concat(d):m=-1,d.length&&s())}
function s (line 6) | function s(){var e,t;if(!p){for(e=r(a),p=!0,t=d.length;t;){for(h=d,d=[];...
function u (line 6) | function u(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){return e&&e.__esModule?e:{default:e}}
function o (line 6) | function o(e){n(504)}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function o (line 6) | function o(e){return Array.isArray(e)?[]:{}}
function r (line 6) | function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?f(o(e),e,t):e}
function i (line 6) | function i(e,t,n){return e.concat(t).map((function(e){return r(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return f;var n=t.customMerge(e);return...
function s (line 6) | function s(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function u (line 6) | function u(e){return Object.keys(e).concat(s(e))}
function l (line 6) | function l(e,t,n){var o={};return n.isMergeableObject(e)&&u(e).forEach((...
function f (line 6) | function f(e,t,n){var o,a,s;return n=n||{},n.arrayMerge=n.arrayMerge||i,...
function o (line 6) | function o(e){n(68)}
function n (line 6) | function n(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve...
function o (line 6) | function o(e){var t=!1;return function(){t||(t=!0,setTimeout((function()...
function r (line 6) | function r(e){var t={};return e&&"[object Function]"===t.toString.call(e)}
function i (line 6) | function i(e,t){var n,o;return 1!==e.nodeType?[]:(n=e.ownerDocument.defa...
function a (line 6) | function a(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}
function s (line 6) | function s(e){if(!e)return document.body;switch(e.nodeName){case"HTML":c...
function u (line 6) | function u(e){return e&&e.referenceNode?e.referenceNode:e}
function l (line 6) | function l(e){return 11===e?me:10===e?ve:me||ve}
function f (line 6) | function f(e){var t,n,o;if(!e)return document.documentElement;for(t=l(10...
function c (line 6) | function c(e){var t=e.nodeName;return"BODY"!==t&&("HTML"===t||f(e.firstE...
function d (line 6) | function d(e){return null!==e.parentNode?d(e.parentNode):e}
function p (line 6) | function p(e,t){var n,o,r,i,a,s;return e&&e.nodeType&&t&&t.nodeType?(n=e...
function h (line 6) | function h(e){var t,n,o=arguments.length>1&&void 0!==arguments[1]?argume...
function m (line 6) | function m(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&argumen...
function v (line 6) | function v(e,t){var n="x"===t?"Left":"Top",o="Left"===n?"Right":"Bottom"...
function g (line 6) | function g(e,t,n,o){return Math.max(t["offset"+e],t["scroll"+e],n["clien...
function b (line 6) | function b(e){var t=e.body,n=e.documentElement,o=l(10)&&getComputedStyle...
function y (line 6) | function y(e){return we({},e,{right:e.left+e.width,bottom:e.top+e.height})}
function w (line 6) | function w(e){var t,n,o,r,a,s,u,f,c,d={};try{l(10)?(d=e.getBoundingClien...
function E (line 6) | function E(e,t){var n,o,r,a=arguments.length>2&&void 0!==arguments[2]&&a...
function T (line 6) | function T(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments...
function O (line 6) | function O(e){var t,n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"=...
function M (line 6) | function M(e){if(!e||!e.parentElement||l())return document.documentEleme...
function x (line 6) | function x(e,t,n,o){var r,i,l,f,c,d,h=arguments.length>4&&void 0!==argum...
function C (line 6) | function C(e){return e.width*e.height}
function P (line 6) | function P(e,t,n,o,r){var i,a,s,u,l,f,c=arguments.length>5&&void 0!==arg...
function _ (line 6) | function _(e,t,n){var o=arguments.length>3&&void 0!==arguments[3]?argume...
function L (line 6) | function L(e){var t=e.ownerDocument.defaultView,n=t.getComputedStyle(e),...
function A (line 6) | function A(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"...
function N (line 6) | function N(e,t,n){var o,r,i,a,s,u,l;return n=n.split("-")[0],o=L(e),r={w...
function S (line 6) | function S(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}
function D (line 6) | function D(e,t,n){if(Array.prototype.findIndex)return e.findIndex((funct...
function j (line 6) | function j(e,t,n){return(void 0===n?e:e.slice(0,D(e,"name",n))).forEach(...
function k (line 6) | function k(){if(!this.state.isDestroyed){var e={instance:this,styles:{},...
function F (line 6) | function F(e,t){return e.some((function(e){var n=e.name;return e.enabled...
function $ (line 6) | function $(e){var t,n,o,r=[!1,"ms","Webkit","Moz","O"],i=e.charAt(0).toU...
function R (line 6) | function R(){return this.state.isDestroyed=!0,F(this.modifiers,"applySty...
function H (line 6) | function H(e){var t=e.ownerDocument;return t?t.defaultView:window}
function W (line 6) | function W(e,t,n,o){var r="BODY"===e.nodeName,i=r?e.ownerDocument.defaul...
function I (line 6) | function I(e,t,n,o){n.updateBound=o,H(e).addEventListener("resize",n.upd...
function B (line 6) | function B(){this.state.eventsEnabled||(this.state=I(this.reference,this...
function q (line 6) | function q(e,t){return H(e).removeEventListener("resize",t.updateBound),...
function U (line 6) | function U(){this.state.eventsEnabled&&(cancelAnimationFrame(this.schedu...
function V (line 6) | function V(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}
function Y (line 6) | function Y(e,t){Object.keys(t).forEach((function(n){var o="";-1!==["widt...
function J (line 6) | function J(e,t){Object.keys(t).forEach((function(n){!1!==t[n]?e.setAttri...
function G (line 6) | function G(e){return Y(e.instance.popper,e.styles),J(e.instance.popper,e...
function z (line 6) | function z(e,t,n,o,r){var i=_(r,t,e,n.positionFixed),a=P(n.placement,i,t...
function K (line 6) | function K(e,t){var n=e.offsets,o=n.popper,r=n.reference,i=Math.round,a=...
function X (line 6) | function X(e,t){var n,o,r,i,a,s,u,l,c,d,p,h,m,v=t.x,g=t.y,b=e.offsets.po...
function Q (line 6) | function Q(e,t,n){var o,r,i=S(e,(function(e){return e.name===t})),a=!!i&...
function Z (line 6) | function Z(e,t){var n,o,r,a,s,u,l,f,c,d,p,h,m,v,g,b,w,E;if(!Q(e.instance...
function ee (line 6) | function ee(e){return"end"===e?"start":"start"===e?"end":e}
function te (line 6) | function te(e){var t=arguments.length>1&&void 0!==arguments[1]&&argument...
function ne (line 6) | function ne(e,t){var n,o,r,i,a;if(F(e.instance.modifiers,"inner"))return...
function oe (line 6) | function oe(e){var t=e.offsets,n=t.popper,o=t.reference,r=e.placement.sp...
function re (line 6) | function re(e,t,n,o){var r,i,a=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),s=+a...
function ie (line 6) | function ie(e,t,n,o){var r,i,a=[0,0],s=-1!==["right","left"].indexOf(o),...
function ae (line 6) | function ae(e,t){var n=t.offset,o=e.placement,r=e.offsets,i=r.popper,a=r...
function se (line 6) | function se(e,t){var n,o,r,i,a,s,u,l,c,d=t.boundariesElement||f(e.instan...
function ue (line 6) | function ue(e){var t,n,o,r,i,a,s,u=e.placement,l=u.split("-")[0],f=u.spl...
function le (line 6) | function le(e){var t,n;if(!Q(e.instance.modifiers,"hide","preventOverflo...
function fe (line 6) | function fe(e){var t=e.placement,n=t.split("-")[0],o=e.offsets,r=o.poppe...
function e (line 6) | function e(e,t){var n,o;for(n=0;n<t.length;n++)o=t[n],o.enumerable=o.enu...
function e (line 6) | function e(t,n){var o,i=this,a=arguments.length>2&&void 0!==arguments[2]...
FILE: dist/components/index.js
function t (line 6) | function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e){return!!e&&"object"==typeof e}
function t (line 6) | function t(e){var t=Object.prototype.toString.call(e);return"[object Reg...
function n (line 6) | function n(e){return e.$$typeof===p}
function r (line 6) | function r(e){return Array.isArray(e)?[]:{}}
function i (line 6) | function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?c(r(e),e,t):e}
function o (line 6) | function o(e,t,n){return e.concat(t).map((function(e){return i(e,n)}))}
function a (line 6) | function a(e,t){if(!t.customMerge)return c;var n=t.customMerge(e);return...
function u (line 6) | function u(e){return Object.getOwnPropertySymbols?Object.getOwnPropertyS...
function s (line 6) | function s(e){return Object.keys(e).concat(u(e))}
function l (line 6) | function l(e,t,n){var r={};return n.isMergeableObject(e)&&s(e).forEach((...
function c (line 6) | function c(e,t,n){var r,a,u;return n=n||{},n.arrayMerge=n.arrayMerge||o,...
function r (line 6) | function r(e,t){if(t.length<e)throw new TypeError(e+" argument"+(e>1?"s"...
function r (line 6) | function r(e){"@babel/helpers - typeof";return(r="function"==typeof Symb...
function i (line 6) | function i(e){Object(o.a)(1,arguments);var t=Object.prototype.toString.c...
function r (line 6) | function r(e){n(36)}
function n (line 6) | function n(){throw Error("setTimeout has not been defined")}
function r (line 6) | function r(){throw Error("clearTimeout has not been defined")}
function i (line 6) | function i(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&s...
function o (line 6) | function o(e){if(d===clearTimeout)return clearTimeout(e);if((d===r||!d)&...
function a (line 6) | function a(){p&&h&&(p=!1,h.length?f=h.concat(f):m=-1,f.length&&u())}
function u (line 6) | function u(){var e,t;if(!p){for(e=i(a),p=!0,t=f.length;t;){for(h=f,f=[];...
function s (line 6) | function s(e,t){this.fun=e,this.array=t}
function l (line 6) | function l(){}
function r (line 6) | function r(e){n(24)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){if(null===e||!0===e||!1===e)return NaN;var t=+e;return isN...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(25)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(43)}
function r (line 6) | function r(e){n(38)}
function r (line 6) | function r(){try{var e=Object.defineProperty({},"passive",{get:function(...
function i (line 6) | function i(e){var t=(e.keyCode,e.target);b.currentElement=t}
function o (line 6) | function o(e){b.currentElement=null}
function a (line 6) | function a(){m.addEventListener("keyup",i)}
function u (line 6) | function u(){m.addEventListener("pointerup",o)}
function s (line 6) | function s(){m.addEventListener("MSPointerUp",o)}
function l (line 6) | function l(){m.addEventListener("mouseup",o),"ontouchend"in window&&m.ad...
function c (line 6) | function c(){window.PointerEvent?u():window.MSPointerEvent?s():l(),a()}
function d (line 6) | function d(){h||(m=document.body,r(),c(),h=!0)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(45)}
function r (line 6) | function r(){return i}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){var t,n,r,a;return Object(o.a)(1,arguments),t=1,n=Object(i...
function r (line 6) | function r(e,t){var n,r,s,l,c,d,f,p,h,m,v,b,y;if(Object(o.a)(1,arguments...
function r (line 6) | function r(e){n(68)}
function r (line 6) | function r(e){n(96)}
function i (line 6) | function i(){e.removeEventListener(t,n)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(87)}
function n (line 6) | function n(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve...
function r (line 6) | function r(e){var t=!1;return function(){t||(t=!0,setTimeout((function()...
function i (line 6) | function i(e){var t={};return e&&"[object Function]"===t.toString.call(e)}
function o (line 6) | function o(e,t){var n,r;return 1!==e.nodeType?[]:(n=e.ownerDocument.defa...
function a (line 6) | function a(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}
function u (line 6) | function u(e){if(!e)return document.body;switch(e.nodeName){case"HTML":c...
function s (line 6) | function s(e){return e&&e.referenceNode?e.referenceNode:e}
function l (line 6) | function l(e){return 11===e?me:10===e?ve:me||ve}
function c (line 6) | function c(e){var t,n,r;if(!e)return document.documentElement;for(t=l(10...
function d (line 6) | function d(e){var t=e.nodeName;return"BODY"!==t&&("HTML"===t||c(e.firstE...
function f (line 6) | function f(e){return null!==e.parentNode?f(e.parentNode):e}
function p (line 6) | function p(e,t){var n,r,i,o,a,u;return e&&e.nodeType&&t&&t.nodeType?(n=e...
function h (line 6) | function h(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]?argume...
function m (line 6) | function m(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&argumen...
function v (line 6) | function v(e,t){var n="x"===t?"Left":"Top",r="Left"===n?"Right":"Bottom"...
function b (line 6) | function b(e,t,n,r){return Math.max(t["offset"+e],t["scroll"+e],n["clien...
function y (line 6) | function y(e){var t=e.body,n=e.documentElement,r=l(10)&&getComputedStyle...
function g (line 6) | function g(e){return _e({},e,{right:e.left+e.width,bottom:e.top+e.height})}
function _ (line 6) | function _(e){var t,n,r,i,a,u,s,c,d,f={};try{l(10)?(f=e.getBoundingClien...
function w (line 6) | function w(e,t){var n,r,i,a=arguments.length>2&&void 0!==arguments[2]&&a...
function M (line 6) | function M(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments...
function O (line 6) | function O(e){var t,n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"=...
function S (line 6) | function S(e){if(!e||!e.parentElement||l())return document.documentEleme...
function C (line 6) | function C(e,t,n,r){var i,o,l,c,d,f,h=arguments.length>4&&void 0!==argum...
function x (line 6) | function x(e){return e.width*e.height}
function P (line 6) | function P(e,t,n,r,i){var o,a,u,s,l,c,d=arguments.length>5&&void 0!==arg...
function T (line 6) | function T(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?argume...
function j (line 6) | function j(e){var t=e.ownerDocument.defaultView,n=t.getComputedStyle(e),...
function k (line 6) | function k(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"...
function D (line 6) | function D(e,t,n){var r,i,o,a,u,s,l;return n=n.split("-")[0],r=j(e),i={w...
function E (line 6) | function E(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}
function $ (line 6) | function $(e,t,n){if(Array.prototype.findIndex)return e.findIndex((funct...
function A (line 6) | function A(e,t,n){return(void 0===n?e:e.slice(0,$(e,"name",n))).forEach(...
function R (line 6) | function R(){if(!this.state.isDestroyed){var e={instance:this,styles:{},...
function I (line 6) | function I(e,t){return e.some((function(e){var n=e.name;return e.enabled...
function B (line 6) | function B(e){var t,n,r,i=[!1,"ms","Webkit","Moz","O"],o=e.charAt(0).toU...
function F (line 6) | function F(){return this.state.isDestroyed=!0,I(this.modifiers,"applySty...
function L (line 6) | function L(e){var t=e.ownerDocument;return t?t.defaultView:window}
function N (line 6) | function N(e,t,n,r){var i="BODY"===e.nodeName,o=i?e.ownerDocument.defaul...
function H (line 6) | function H(e,t,n,r){n.updateBound=r,L(e).addEventListener("resize",n.upd...
function V (line 6) | function V(){this.state.eventsEnabled||(this.state=H(this.reference,this...
function q (line 6) | function q(e,t){return L(e).removeEventListener("resize",t.updateBound),...
function z (line 6) | function z(){this.state.eventsEnabled&&(cancelAnimationFrame(this.schedu...
function U (line 6) | function U(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}
function W (line 6) | function W(e,t){Object.keys(t).forEach((function(n){var r="";-1!==["widt...
function Y (line 6) | function Y(e,t){Object.keys(t).forEach((function(n){!1!==t[n]?e.setAttri...
function X (line 6) | function X(e){return W(e.instance.popper,e.styles),Y(e.instance.popper,e...
function G (line 6) | function G(e,t,n,r,i){var o=T(i,t,e,n.positionFixed),a=P(n.placement,o,t...
function Q (line 6) | function Q(e,t){var n=e.offsets,r=n.popper,i=n.reference,o=Math.round,a=...
function K (line 6) | function K(e,t){var n,r,i,o,a,u,s,l,d,f,p,h,m,v=t.x,b=t.y,y=e.offsets.po...
function J (line 6) | function J(e,t,n){var r,i,o=E(e,(function(e){return e.name===t})),a=!!o&...
function Z (line 6) | function Z(e,t){var n,r,i,a,u,s,l,c,d,f,p,h,m,v,b,y,_,w;if(!J(e.instance...
function ee (line 6) | function ee(e){return"end"===e?"start":"start"===e?"end":e}
function te (line 6) | function te(e){var t=arguments.length>1&&void 0!==arguments[1]&&argument...
function ne (line 6) | function ne(e,t){var n,r,i,o,a;if(I(e.instance.modifiers,"inner"))return...
function re (line 6) | function re(e){var t=e.offsets,n=t.popper,r=t.reference,i=e.placement.sp...
function ie (line 6) | function ie(e,t,n,r){var i,o,a=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),u=+a...
function oe (line 6) | function oe(e,t,n,r){var i,o,a=[0,0],u=-1!==["right","left"].indexOf(r),...
function ae (line 6) | function ae(e,t){var n=t.offset,r=e.placement,i=e.offsets,o=i.popper,a=i...
function ue (line 6) | function ue(e,t){var n,r,i,o,a,u,s,l,d,f=t.boundariesElement||c(e.instan...
function se (line 6) | function se(e){var t,n,r,i,o,a,u,s=e.placement,l=s.split("-")[0],c=s.spl...
function le (line 6) | function le(e){var t,n;if(!J(e.instance.modifiers,"hide","preventOverflo...
function ce (line 6) | function ce(e){var t=e.placement,n=t.split("-")[0],r=e.offsets,i=r.poppe...
function e (line 6) | function e(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.enu...
function e (line 6) | function e(t,n){var r,o=this,a=arguments.length>2&&void 0!==arguments[2]...
function r (line 6) | function r(e){n(157)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){n(99)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e.hasOwnProperty("mdExpand")&&!1!==e.mdExpand}
function o (line 6) | function o(e,t){if(i(e))return{"md-expand":function(){return t["md-expan...
function a (line 6) | function a(e){return e.default.some((function(e){return e.componentOptio...
function u (line 6) | function u(e){var t=Object.keys(e),n=!1;return t.forEach((function(e){p....
function s (line 6) | function s(e,t){return e&&e.$router&&t.to}
function l (line 6) | function l(e,t,n,r){return i(e)?P.default:e.disabled?w.default:s(t,e)?(C...
function c (line 6) | function c(e){return a(e)?g.default:w.default}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e,t){var n,r,l,c,d,f,p,h,m,v,b,y,g,_,w,M;if(Object(o.a)(1,arg...
function r (line 6) | function r(e){n(468)}
function r (line 6) | function r(e){n(166)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(170)}
function r (line 6) | function r(e){n(172)}
function r (line 6) | function r(e){n(182)}
function r (line 6) | function r(e){n(231)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){return e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}
function o (line 6) | function o(e){return e&&w.includes(i(e.tag))}
function a (line 6) | function a(e){return!!e&&(""===e.mdRight||!!e.mdRight)}
function u (line 6) | function u(e,t){return e&&w.includes(e.slot)||o(t)}
function s (line 6) | function s(e){return JSON.stringify({persistent:e&&e["md-persistent"],pe...
function l (line 6) | function l(e,t,n,r,o){var l=[],c=!1;return e&&e.forEach((function(e){var...
function c (line 6) | function c(e){var t=e.filter((function(e){return["md-app-drawer","md-app...
function d (line 6) | function d(e){var t=e&&e["md-permanent"];return t&&("clipped"===t||"card...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function t (line 6) | function t(){return e.apply(this,arguments)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function e (line 6) | function e(e,t){var n,r,i=[],o=!0,a=!1,u=void 0;try{for(n=e[Symbol.itera...
function e (line 6) | function e(e,t){var n,r,i=[],o=!0,a=!1,u=void 0;try{for(n=e[Symbol.itera...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){"@babel/helpers - typeof";return(r="function"==typeof Symb...
function i (line 6) | function i(e){return Object(a.a)(1,arguments),e instanceof Date||"object...
function o (line 6) | function o(e){if(Object(a.a)(1,arguments),!i(e)&&"number"!=typeof e)retu...
function r (line 6) | function r(e,t){var n,r;return Object(u.a)(2,arguments),n=Object(a.a)(e)...
function i (line 6) | function i(e,t){return Object(u.a)(2,arguments),r(e,-Object(o.a)(t))}
function r (line 6) | function r(e){var t,n;return Object(l.a)(1,arguments),t=Object(s.a)(e),n...
function i (line 6) | function i(e){var t,n;return Object(l.a)(1,arguments),t=Object(a.a)(e),n...
function r (line 6) | function r(e){var t,n,r,u,s,l;return Object(o.a)(1,arguments),t=Object(i...
function r (line 6) | function r(e,t){var n,r,i,o,a,f,p,h,m,v,b,y;return Object(l.a)(1,argumen...
function i (line 6) | function i(e,t){var n,i;return Object(l.a)(1,arguments),n=Object(a.a)(e)...
function r (line 6) | function r(e){var t=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.get...
function r (line 6) | function r(e){return-1!==a.indexOf(e)}
function i (line 6) | function i(e){return-1!==u.indexOf(e)}
function o (line 6) | function o(e,t,n){if("YYYY"===e)throw new RangeError("Use `yyyy` instead...
function r (line 6) | function r(e){return function(){var t=arguments.length>0&&void 0!==argum...
function i (line 6) | function i(e){return function(t,n){var r,i,o,a,u,s;return"formatting"==(...
function o (line 6) | function o(e){return function(t){var n,r,i,o,s,l=arguments.length>1&&voi...
function a (line 6) | function a(e,t){for(var n in e)if(e.hasOwnProperty(n)&&t(e[n]))return n}
function u (line 6) | function u(e,t){for(var n=0;n<e.length;n++)if(t(e[n]))return n}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.len...
function r (line 6) | function r(e,t){var n,r,u,s,l;return Object(a.a)(2,arguments),n=Object(o...
function r (line 6) | function r(e){var t,n,r,a;return Object(o.a)(1,arguments),t=Object(i.a)(...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.len...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t){var n=e.style.height,r=e.offsetHeight,i=e.scrollHeight;r...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e){var t=e;return t||(t="$&"),'<span class="md-highlight-text...
function o (line 6) | function o(e,t){var n,r,a,u,s,l;if(0===t.length)return e;if(-1===(n=e.to...
function a (line 6) | function a(e,t){var n=RegExp(t+"(?!([^<]+)?<)","gi");return e.replace(n,...
function u (line 6) | function u(e,t,n){var r=e.text;return r&&t&&t[0]?n?o(r,t)||r:a(r,t):r}
function r (line 6) | function r(e){n(196)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function r (line 6) | function r(e,t,n){return"top"===e?n-t-1:t}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(478)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(479)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function i (line 6) | function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function o (line 6) | function o(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(241)}
function r (line 6) | function r(e){n(243)}
function r (line 6) | function r(e){n(246)}
function r (line 6) | function r(e){n(251)}
function r (line 6) | function r(e){n(254)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(260)}
function r (line 6) | function r(e){n(262)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(267)}
function r (line 6) | function r(e,t){var n,r,i,o=t.length,a=e.length;if(a>o)return!1;if(a===o...
function n (line 6) | function n(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"fu...
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(273)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(277)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(284)}
function r (line 6) | function r(e){n(287)}
function r (line 6) | function r(e){n(290)}
function r (line 6) | function r(e){n(295)}
function r (line 6) | function r(e){n(298)}
function r (line 6) | function r(e){n(301)}
function r (line 6) | function r(e){n(304)}
function r (line 6) | function r(e){n(307)}
function r (line 6) | function r(e){n(310)}
function r (line 6) | function r(e){n(312)}
function r (line 6) | function r(e){n(315)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(319)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(323)}
function r (line 6) | function r(e){n(326)}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){return e&&e.__esModule?e:{default:e}}
function r (line 6) | function r(e){n(331)}
function r (line 6) | function r(e){var t,n,r,i;return Object(p.a)(1,arguments),t=Object(f.a)(...
function i (line 6) | function i(e,t){for(var n=e<0?"-":"",r=""+Math.abs(e);r.length<t;)r="0"+...
function o (line 6) | function o(e,t){var n,r=e>0?"-":"+",o=Math.abs(e),a=Math.floor(o/60),u=o...
function a (line 6) | function a(e,t){if(e%60==0){return(e>0?"-":"+")+i(Math.abs(e)/60,2)}retu...
function u (line 6) | function u(e,t){var n=t||"",r=e>0?"-":"+",o=Math.abs(e);return r+i(Math....
function s (line 6) | function s(e,t,n){var r,i,o,a,u,s,h,m,v,b,y,g,_,w,M,E,$,R,I,B,F,L,N,H,V,...
function l (line 6) | function l(e){var t=e.match(E);return t?t[1].replace($,"'"):e}
function r (line 6) | function r(e,t){if(null==e)throw new TypeError("assign requires that inp...
function i (line 6) | function i(e){"@babel/helpers - typeof";return(i="function"==typeof Symb...
function o (line 6) | function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function a (line 6) | function a(e,t){return(a=Object.setPrototypeOf||function(e,t){return e._...
function u (line 6) | function u(e){var t=c();return function(){var n,r,i=d(e);return t?(r=d(t...
function s (line 6) | function s(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?l(e):t}
function l (line 6) | function l(e){if(void 0===e)throw new ReferenceError("this hasn't been i...
function c (line 6) | function c(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function d (line 6) | function d(e){return(d=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function f (line 6) | function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function p (line 6) | function p(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.enu...
function h (line 6) | function h(e,t,n){return t&&p(e.prototype,t),n&&p(e,n),e}
function m (line 6) | function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function v (line 6) | function v(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function b (line 6) | function b(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.enu...
function y (line 6) | function y(e,t,n){return t&&b(e.prototype,t),n&&b(e,n),e}
function g (line 6) | function g(e){"@babel/helpers - typeof";return(g="function"==typeof Symb...
function _ (line 6) | function _(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function w (line 6) | function w(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.enu...
function M (line 6) | function M(e,t,n){return t&&w(e.prototype,t),n&&w(e,n),e}
function O (line 6) | function O(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function S (line 6) | function S(e,t){return(S=Object.setPrototypeOf||function(e,t){return e._...
function C (line 6) | function C(e){var t=T();return function(){var n,r,i=j(e);return t?(r=j(t...
function x (line 6) | function x(e,t){return!t||"object"!==g(t)&&"function"!=typeof t?P(e):t}
function P (line 6) | function P(e){if(void 0===e)throw new ReferenceError("this hasn't been i...
function T (line 6) | function T(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function j (line 6) | function j(e){return(j=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function k (line 6) | function k(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function D (line 6) | function D(e,t){return e?{value:t(e.value),rest:e.rest}:e}
function E (line 6) | function E(e,t){var n=t.match(e);return n?{value:parseInt(n[0],10),rest:...
function $ (line 6) | function $(e,t){var n,r,i,o,a=t.match(e);return a?"Z"===a[0]?{value:0,re...
function A (line 6) | function A(e){return E(ru.anyDigitsSigned,e)}
function R (line 6) | function R(e,t){switch(e){case 1:return E(ru.singleDigit,t);case 2:retur...
function I (line 6) | function I(e,t){switch(e){case 1:return E(ru.singleDigitSigned,t);case 2...
function B (line 6) | function B(e){switch(e){case"morning":return 4;case"evening":return 17;c...
function F (line 6) | function F(e,t){var n,r,i,o,a=t>0,u=a?t:1-t;return u<=50?n=e||100:(r=u+5...
function L (line 6) | function L(e){return e%400==0||e%4==0&&e%100!=0}
function N (line 6) | function N(e){"@babel/helpers - typeof";return(N="function"==typeof Symb...
function H (line 6) | function H(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function V (line 6) | function V(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.enu...
function q (line 6) | function q(e,t,n){return t&&V(e.prototype,t),n&&V(e,n),e}
function z (line 6) | function z(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function U (line 6) | function U(e,t){return(U=Object.setPrototypeOf||function(e,t){return e._...
function W (line 6) | function W(e){var t=G();return function(){var n,r,i=Q(e);return t?(r=Q(t...
function Y (line 6) | function Y(e,t){return!t||"object"!==N(t)&&"function"!=typeof t?X(e):t}
function X (line 6) | function X(e){if(void 0===e)throw new ReferenceError("this hasn't been i...
function G (line 6) | function G(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
function Q (line 6) | function Q(e){return(Q=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function K (line 6) | function K(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enume...
function J (line 6) | function J(e){"@babel/helpers - typeof";return(J="function"==typeof Symb...
function Z (line 6) | function Z(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function ee (line 6) | function ee(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function te (line 6) | function te(e,t,n){return t&&ee(e.prototype,t),n&&ee(e,n),e}
function ne (line 6) | function ne(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function re (line 6) | function re(e,t){return(re=Object.setPrototypeOf||function(e,t){return e...
function ie (line 6) | function ie(e){var t=ue();return function(){var n,r,i=se(e);return t?(r=...
function oe (line 6) | function oe(e,t){return!t||"object"!==J(t)&&"function"!=typeof t?ae(e):t}
function ae (line 6) | function ae(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function ue (line 6) | function ue(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function se (line 6) | function se(e){return(se=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function le (line 6) | function le(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function ce (line 6) | function ce(e){"@babel/helpers - typeof";return(ce="function"==typeof Sy...
function de (line 6) | function de(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function fe (line 6) | function fe(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function pe (line 6) | function pe(e,t,n){return t&&fe(e.prototype,t),n&&fe(e,n),e}
function he (line 6) | function he(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function me (line 6) | function me(e,t){return(me=Object.setPrototypeOf||function(e,t){return e...
function ve (line 6) | function ve(e){var t=ge();return function(){var n,r,i=_e(e);return t?(r=...
function be (line 6) | function be(e,t){return!t||"object"!==ce(t)&&"function"!=typeof t?ye(e):t}
function ye (line 6) | function ye(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function ge (line 6) | function ge(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function _e (line 6) | function _e(e){return(_e=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function we (line 6) | function we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Me (line 6) | function Me(e){"@babel/helpers - typeof";return(Me="function"==typeof Sy...
function Oe (line 6) | function Oe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Se (line 6) | function Se(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Ce (line 6) | function Ce(e,t,n){return t&&Se(e.prototype,t),n&&Se(e,n),e}
function xe (line 6) | function xe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function Pe (line 6) | function Pe(e,t){return(Pe=Object.setPrototypeOf||function(e,t){return e...
function Te (line 6) | function Te(e){var t=De();return function(){var n,r,i=Ee(e);return t?(r=...
function je (line 6) | function je(e,t){return!t||"object"!==Me(t)&&"function"!=typeof t?ke(e):t}
function ke (line 6) | function ke(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function De (line 6) | function De(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Ee (line 6) | function Ee(e){return(Ee=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function $e (line 6) | function $e(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Ae (line 6) | function Ae(e){"@babel/helpers - typeof";return(Ae="function"==typeof Sy...
function Re (line 6) | function Re(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Ie (line 6) | function Ie(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Be (line 6) | function Be(e,t,n){return t&&Ie(e.prototype,t),n&&Ie(e,n),e}
function Fe (line 6) | function Fe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function Le (line 6) | function Le(e,t){return(Le=Object.setPrototypeOf||function(e,t){return e...
function Ne (line 6) | function Ne(e){var t=qe();return function(){var n,r,i=ze(e);return t?(r=...
function He (line 6) | function He(e,t){return!t||"object"!==Ae(t)&&"function"!=typeof t?Ve(e):t}
function Ve (line 6) | function Ve(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function qe (line 6) | function qe(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ze (line 6) | function ze(e){return(ze=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Ue (line 6) | function Ue(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function We (line 6) | function We(e){"@babel/helpers - typeof";return(We="function"==typeof Sy...
function Ye (line 6) | function Ye(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Xe (line 6) | function Xe(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Ge (line 6) | function Ge(e,t,n){return t&&Xe(e.prototype,t),n&&Xe(e,n),e}
function Qe (line 6) | function Qe(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function Ke (line 6) | function Ke(e,t){return(Ke=Object.setPrototypeOf||function(e,t){return e...
function Je (line 6) | function Je(e){var t=tt();return function(){var n,r,i=nt(e);return t?(r=...
function Ze (line 6) | function Ze(e,t){return!t||"object"!==We(t)&&"function"!=typeof t?et(e):t}
function et (line 6) | function et(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function tt (line 6) | function tt(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function nt (line 6) | function nt(e){return(nt=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function rt (line 6) | function rt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function it (line 6) | function it(e){"@babel/helpers - typeof";return(it="function"==typeof Sy...
function ot (line 6) | function ot(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function at (line 6) | function at(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function ut (line 6) | function ut(e,t,n){return t&&at(e.prototype,t),n&&at(e,n),e}
function st (line 6) | function st(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function lt (line 6) | function lt(e,t){return(lt=Object.setPrototypeOf||function(e,t){return e...
function ct (line 6) | function ct(e){var t=pt();return function(){var n,r,i=ht(e);return t?(r=...
function dt (line 6) | function dt(e,t){return!t||"object"!==it(t)&&"function"!=typeof t?ft(e):t}
function ft (line 6) | function ft(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function pt (line 6) | function pt(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ht (line 6) | function ht(e){return(ht=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function mt (line 6) | function mt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function vt (line 6) | function vt(e){"@babel/helpers - typeof";return(vt="function"==typeof Sy...
function bt (line 6) | function bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function yt (line 6) | function yt(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function gt (line 6) | function gt(e,t,n){return t&&yt(e.prototype,t),n&&yt(e,n),e}
function _t (line 6) | function _t(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function wt (line 6) | function wt(e,t){return(wt=Object.setPrototypeOf||function(e,t){return e...
function Mt (line 6) | function Mt(e){var t=Ct();return function(){var n,r,i=xt(e);return t?(r=...
function Ot (line 6) | function Ot(e,t){return!t||"object"!==vt(t)&&"function"!=typeof t?St(e):t}
function St (line 6) | function St(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Ct (line 6) | function Ct(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function xt (line 6) | function xt(e){return(xt=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Pt (line 6) | function Pt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Tt (line 6) | function Tt(e,t,n){var r,i,o;return Object(Ha.a)(2,arguments),r=Object(I...
function jt (line 6) | function jt(e){"@babel/helpers - typeof";return(jt="function"==typeof Sy...
function kt (line 6) | function kt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Dt (line 6) | function Dt(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Et (line 6) | function Et(e,t,n){return t&&Dt(e.prototype,t),n&&Dt(e,n),e}
function $t (line 6) | function $t(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function At (line 6) | function At(e,t){return(At=Object.setPrototypeOf||function(e,t){return e...
function Rt (line 6) | function Rt(e){var t=Ft();return function(){var n,r,i=Lt(e);return t?(r=...
function It (line 6) | function It(e,t){return!t||"object"!==jt(t)&&"function"!=typeof t?Bt(e):t}
function Bt (line 6) | function Bt(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Ft (line 6) | function Ft(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Lt (line 6) | function Lt(e){return(Lt=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Nt (line 6) | function Nt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Ht (line 6) | function Ht(e,t){var n,r,i;return Object(Ha.a)(2,arguments),n=Object(Ia....
function Vt (line 6) | function Vt(e){"@babel/helpers - typeof";return(Vt="function"==typeof Sy...
function qt (line 6) | function qt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function zt (line 6) | function zt(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Ut (line 6) | function Ut(e,t,n){return t&&zt(e.prototype,t),n&&zt(e,n),e}
function Wt (line 6) | function Wt(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function Yt (line 6) | function Yt(e,t){return(Yt=Object.setPrototypeOf||function(e,t){return e...
function Xt (line 6) | function Xt(e){var t=Kt();return function(){var n,r,i=Jt(e);return t?(r=...
function Gt (line 6) | function Gt(e,t){return!t||"object"!==Vt(t)&&"function"!=typeof t?Qt(e):t}
function Qt (line 6) | function Qt(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Kt (line 6) | function Kt(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Jt (line 6) | function Jt(e){return(Jt=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Zt (line 6) | function Zt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function en (line 6) | function en(e){"@babel/helpers - typeof";return(en="function"==typeof Sy...
function tn (line 6) | function tn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function nn (line 6) | function nn(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function rn (line 6) | function rn(e,t,n){return t&&nn(e.prototype,t),n&&nn(e,n),e}
function on (line 6) | function on(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function an (line 6) | function an(e,t){return(an=Object.setPrototypeOf||function(e,t){return e...
function un (line 6) | function un(e){var t=cn();return function(){var n,r,i=dn(e);return t?(r=...
function sn (line 6) | function sn(e,t){return!t||"object"!==en(t)&&"function"!=typeof t?ln(e):t}
function ln (line 6) | function ln(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function cn (line 6) | function cn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function dn (line 6) | function dn(e){return(dn=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function fn (line 6) | function fn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function pn (line 6) | function pn(e){"@babel/helpers - typeof";return(pn="function"==typeof Sy...
function hn (line 6) | function hn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function mn (line 6) | function mn(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function vn (line 6) | function vn(e,t,n){return t&&mn(e.prototype,t),n&&mn(e,n),e}
function bn (line 6) | function bn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function yn (line 6) | function yn(e,t){return(yn=Object.setPrototypeOf||function(e,t){return e...
function gn (line 6) | function gn(e){var t=Mn();return function(){var n,r,i=On(e);return t?(r=...
function _n (line 6) | function _n(e,t){return!t||"object"!==pn(t)&&"function"!=typeof t?wn(e):t}
function wn (line 6) | function wn(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Mn (line 6) | function Mn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function On (line 6) | function On(e){return(On=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Sn (line 6) | function Sn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Cn (line 6) | function Cn(e,t,n){var r,i,o,a,u,s,l,c,d,f,p,h,m,v,b,y;if(Object(Ha.a)(2...
function xn (line 6) | function xn(e){"@babel/helpers - typeof";return(xn="function"==typeof Sy...
function Pn (line 6) | function Pn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Tn (line 6) | function Tn(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function jn (line 6) | function jn(e,t,n){return t&&Tn(e.prototype,t),n&&Tn(e,n),e}
function kn (line 6) | function kn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function Dn (line 6) | function Dn(e,t){return(Dn=Object.setPrototypeOf||function(e,t){return e...
function En (line 6) | function En(e){var t=Rn();return function(){var n,r,i=In(e);return t?(r=...
function $n (line 6) | function $n(e,t){return!t||"object"!==xn(t)&&"function"!=typeof t?An(e):t}
function An (line 6) | function An(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Rn (line 6) | function Rn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function In (line 6) | function In(e){return(In=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Bn (line 6) | function Bn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Fn (line 6) | function Fn(e){"@babel/helpers - typeof";return(Fn="function"==typeof Sy...
function Ln (line 6) | function Ln(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Nn (line 6) | function Nn(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Hn (line 6) | function Hn(e,t,n){return t&&Nn(e.prototype,t),n&&Nn(e,n),e}
function Vn (line 6) | function Vn(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function qn (line 6) | function qn(e,t){return(qn=Object.setPrototypeOf||function(e,t){return e...
function zn (line 6) | function zn(e){var t=Yn();return function(){var n,r,i=Xn(e);return t?(r=...
function Un (line 6) | function Un(e,t){return!t||"object"!==Fn(t)&&"function"!=typeof t?Wn(e):t}
function Wn (line 6) | function Wn(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function Yn (line 6) | function Yn(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function Xn (line 6) | function Xn(e){return(Xn=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function Gn (line 6) | function Gn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function Qn (line 6) | function Qn(e){"@babel/helpers - typeof";return(Qn="function"==typeof Sy...
function Kn (line 6) | function Kn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function Jn (line 6) | function Jn(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function Zn (line 6) | function Zn(e,t,n){return t&&Jn(e.prototype,t),n&&Jn(e,n),e}
function er (line 6) | function er(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function tr (line 6) | function tr(e,t){return(tr=Object.setPrototypeOf||function(e,t){return e...
function nr (line 6) | function nr(e){var t=or();return function(){var n,r,i=ar(e);return t?(r=...
function rr (line 6) | function rr(e,t){return!t||"object"!==Qn(t)&&"function"!=typeof t?ir(e):t}
function ir (line 6) | function ir(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function or (line 6) | function or(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function ar (line 6) | function ar(e){return(ar=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function ur (line 6) | function ur(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function sr (line 6) | function sr(e,t){var n,r,i,o,a,u,s;return Object(Ha.a)(2,arguments),n=Ob...
function lr (line 6) | function lr(e){"@babel/helpers - typeof";return(lr="function"==typeof Sy...
function cr (line 6) | function cr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a...
function dr (line 6) | function dr(e,t){var n,r;for(n=0;n<t.length;n++)r=t[n],r.enumerable=r.en...
function fr (line 6) | function fr(e,t,n){return t&&dr(e.prototype,t),n&&dr(e,n),e}
function pr (line 6) | function pr(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("...
function hr (line 6) | function hr(e,t){return(hr=Object.setPrototypeOf||function(e,t){return e...
function mr (line 6) | function mr(e){var t=yr();return function(){var n,r,i=gr(e);return t?(r=...
function vr (line 6) | function vr(e,t){return!t||"object"!==lr(t)&&"function"!=typeof t?br(e):t}
function br (line 6) | function br(e){if(void 0===e)throw new ReferenceError("this hasn't been ...
function yr (line 6) | function yr(){if("undefined"==typeof Reflect||!Reflect.construct)return!...
function gr (line 6) | function gr(e){return(gr=Object.setPrototypeOf?Object.getPrototypeOf:fun...
function _r (line 6) | function _r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enum...
function wr (line 6) | function wr(e){"@babel/helpers - typeof";return(wr="function"==typeof Sy...
function Mr (line 6) | function Mr(e,t){if(!(e instanceof t))throw new TypeError(
Condensed preview — 711 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5,071K chars).
[
{
"path": ".babelrc",
"chars": 222,
"preview": "{\n \"presets\": [\n \"env\",\n \"react\",\n \"stage-0\"\n ],\n \"plugins\": [\n \"transform-class-properties\",\n \"transf"
},
{
"path": ".codeclimate.yml",
"chars": 893,
"preview": "checks:\n file-lines:\n config:\n threshold: 300\n method-count:\n config:\n threshold: 30\n method-lines:\n "
},
{
"path": ".editorconfig",
"chars": 243,
"preview": "# http://editorconfig.org\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 2\nindent_style = space\ninsert_"
},
{
"path": ".eslintignore",
"chars": 14,
"preview": "dist\ncoverage\n"
},
{
"path": ".eslintrc",
"chars": 1107,
"preview": "{\n \"root\": true,\n \"parserOptions\": {\n \"parser\": \"babel-eslint\",\n \"ecmaVersion\": 2017,\n \"sourceType\": \"module\""
},
{
"path": ".github/CODE_OF_CONDUCT.md",
"chars": 3220,
"preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, w"
},
{
"path": ".github/COMMIT_CONVENTION.md",
"chars": 2983,
"preview": "# Git Commit Message Convention\n\n> This is adapted from [Vue.js's commit convention](https://github.com/vuejs/vue/blob/d"
},
{
"path": ".github/CONTRIBUTING.md",
"chars": 2547,
"preview": "# Vue Material Contributing Guide\n\nBefore submitting your contribution please read the guidelines.\n\n- [Issue Reporting G"
},
{
"path": ".github/ISSUE_TEMPLATE.md",
"chars": 2167,
"preview": "<!--\n\nQuestions\n================\nIf you have any questions, ideas or you want to discuss with Vue Material community. Us"
},
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"chars": 167,
"preview": "<!--\nPlease make sure to read the Pull Request Guidelines:\nhttps://github.com/marcosmoura/vue-material/blob/master/.gith"
},
{
"path": ".github/config.yml",
"chars": 780,
"preview": "sentimentBotToxicityThreshold: .7\n\nsentimentBotReplyComment: >\n Please be sure to review the <a href=\"https://github.co"
},
{
"path": ".github/stale.yml",
"chars": 322,
"preview": "daysUntilStale: 30\ndaysUntilClose: 7\nexemptLabels:\n - bug\n - help wanted\n - request\n\nstaleLabel: stale\n\nmarkComment: "
},
{
"path": ".gitignore",
"chars": 108,
"preview": ".DS_Store\nnode_modules/\ncoverage/\n.vscode/\n.nyc_output/\n.vscode/\nyarn-debug.log\nnpm-debug.log\n.vscode\n.idea\n"
},
{
"path": ".travis.yml",
"chars": 2136,
"preview": "language: node_js\nnode_js:\n - '12'\nsudo: false\nenv:\n global:\n - NODE_ENV=\"CI\"\n - CC_TEST_REPORTER_ID=8e14ec33d4a45de"
},
{
"path": "CHANGELOG.md",
"chars": 394740,
"preview": "<a name=\"1.0.0-beta-16\"></a>\n# [1.0.0-beta-16](https://github.com/vuematerial/vue-material/compare/v1.0.0-beta-15...v1.0"
},
{
"path": "FUNDING.yml",
"chars": 30,
"preview": "open_collective: vue-material\n"
},
{
"path": "LICENSE.md",
"chars": 1141,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2016-2020 Marcos Moura, Creative Tim (https://www.creative-tim.com) & Community\n\nPe"
},
{
"path": "README.md",
"chars": 4527,
"preview": "<p align=\"center\">\n <a href=\"https://www.creative-tim.com/vuematerial\" target=\"_blank\">\n <img width=\"150\" src=\"https"
},
{
"path": "ROADMAP.md",
"chars": 7365,
"preview": "# Roadmap for Vue Material beta!\n\nAs I told [couple months ago](https://github.com/vuematerial/vue-material/issues/921),"
},
{
"path": "build/config.js",
"chars": 1130,
"preview": "import { join } from 'path'\nimport packageJson from '../package.json'\n\nexport const resolvePath = (...args) => {\n const"
},
{
"path": "build/docs/index.js",
"chars": 581,
"preview": "import webpack from 'webpack'\nimport Ora from 'ora'\nimport webpackConfig from './webpack'\n\nconst spinner = new Ora({\n t"
},
{
"path": "build/docs/offline.js",
"chars": 95,
"preview": "import * as OfflinePluginRuntime from 'offline-plugin/runtime'\n\nOfflinePluginRuntime.install()\n"
},
{
"path": "build/docs/webpack.js",
"chars": 5349,
"preview": "import webpack from 'webpack'\nimport path from 'path'\nimport autoprefixer from 'autoprefixer'\nimport ExtractTextPlugin f"
},
{
"path": "build/generate-changelog.js",
"chars": 754,
"preview": "import converntionalChangelog from 'conventional-changelog'\nimport config from 'conventional-changelog-vue-material'\nimp"
},
{
"path": "build/git-hooks/commit-msg",
"chars": 468,
"preview": "#!/bin/bash\n\n# Validate commit log\ncommit_regex='^Merge.+|(feat|core|comp|ui|fix|docs|style|refactor|perf|test|build|ci|"
},
{
"path": "build/git-hooks/install.sh",
"chars": 315,
"preview": "if [ -d .git/hooks ]; then\n ln -sf ../../build/git-hooks/pre-commit .git/hooks/pre-commit\n ln -sf ../../build/git-hook"
},
{
"path": "build/git-hooks/pre-commit",
"chars": 230,
"preview": "#!/bin/bash\n\nfiles_to_lint=$(git diff --staged --cached --name-only --diff-filter=ACM | grep '.\\(js\\|vue\\)$')\n\nif [ -n \""
},
{
"path": "build/git-hooks/pre-push",
"chars": 61,
"preview": "#!/bin/bash\n\nNODE_ENV=test node ./node_modules/jest/bin/jest\n"
},
{
"path": "build/lib/banner.js",
"chars": 279,
"preview": "import { pack } from '../config.js'\n\nconst version = process.env.VERSION || pack.version\nconst banner = `/*!\n * ${pack.n"
},
{
"path": "build/lib/index.js",
"chars": 1070,
"preview": "import Ora from 'ora'\nimport webpack from 'webpack'\nimport webpackConfig from './webpack'\nimport { pack } from '../confi"
},
{
"path": "build/lib/themes.js",
"chars": 922,
"preview": "import sass from 'node-sass'\nimport { readdirSync, statSync, readFileSync, writeFileSync } from 'fs'\nimport { join } fro"
},
{
"path": "build/lib/webpack.js",
"chars": 7036,
"preview": "/* eslint-disable complexity */\n\nimport webpack from 'webpack'\nimport { readdirSync, statSync, existsSync } from 'fs'\nim"
},
{
"path": "build/loaders/component-example-loader.js",
"chars": 1704,
"preview": "const path = require('path')\nconst compiler = require('vue-template-compiler')\nconst { resolvePath } = require('../confi"
},
{
"path": "build/local/client.js",
"chars": 211,
"preview": "import 'eventsource-polyfill'\nimport hotClient from 'webpack-hot-middleware/client?noInfo=true&reload=true'\n\nhotClient.s"
},
{
"path": "build/local/index.js",
"chars": 1293,
"preview": "import express from 'express'\nimport chalk from 'chalk'\nimport webpack from 'webpack'\nimport devMiddleware from 'webpack"
},
{
"path": "build/local/webpack.js",
"chars": 2065,
"preview": "import webpack from 'webpack'\nimport HtmlWebpackPlugin from 'html-webpack-plugin'\nimport FriendlyErrorsPlugin from 'frie"
},
{
"path": "build/new-component.js",
"chars": 5095,
"preview": "import { ShellString, test, mkdir, cd, sed, exit, exec } from 'shelljs'\nimport { join } from 'path'\n\nfunction pascalToDa"
},
{
"path": "build/release.sh",
"chars": 1074,
"preview": "set -e\n\nCLEAR='\\033c'\nGREEN='\\033[0;32m'\nYELLOW='\\033[0;33m'\nBLUE='\\033[0;34m'\nNC='\\033[0m'\n\n# init the process\nif [[ -z"
},
{
"path": "dist/base/theme.scss",
"chars": 1455,
"preview": "@mixin md-base-theme () {\n :not(input):not(textarea)::selection {\n @include md-theme-component-relative() {\n @i"
},
{
"path": "dist/components/MdApp/index.css",
"chars": 4437,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdApp/index.js",
"chars": 27655,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdApp/theme.scss",
"chars": 129,
"preview": ".md-app:not(.md-overlap) {\n @include md-theme-component() {\n @include md-theme-property(background-color, background"
},
{
"path": "dist/components/MdAutocomplete/index.css",
"chars": 3366,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdAutocomplete/index.js",
"chars": 11673,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdAutocomplete/theme.scss",
"chars": 1604,
"preview": ".md-list {\n @include md-theme-component() {\n .md-autocomplete-items {\n .md-highlight-text-match {\n @incl"
},
{
"path": "dist/components/MdAvatar/index.css",
"chars": 3004,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdAvatar/index.js",
"chars": 7997,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdAvatar/theme.scss",
"chars": 695,
"preview": "@mixin md-avatar-icon-spec ($color) {\n &.md-avatar-icon {\n @include md-theme-property(background-color, $color);\n "
},
{
"path": "dist/components/MdBadge/index.css",
"chars": 2674,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdBadge/index.js",
"chars": 10367,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdBadge/theme.scss",
"chars": 322,
"preview": ".md-badge {\n @include md-theme-component() {\n @include md-theme-property(color, text-primary, accent);\n @include "
},
{
"path": "dist/components/MdBottomBar/index.css",
"chars": 5440,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdBottomBar/index.js",
"chars": 21154,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdBottomBar/theme.scss",
"chars": 1360,
"preview": "@mixin md-bottom-bar-spec ($primary) {\n &.md-type-fixed {\n @include md-theme-property(background-color, background);"
},
{
"path": "dist/components/MdButton/index.css",
"chars": 6243,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdButton/index.js",
"chars": 20018,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdButton/theme.scss",
"chars": 2024,
"preview": "@mixin md-icon-on-buttons ($state, $type) {\n .md-icon-font {\n @include md-theme-property(color, $state, $type);\n }\n"
},
{
"path": "dist/components/MdCard/index.css",
"chars": 7748,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdCard/index.js",
"chars": 21908,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdCard/theme.scss",
"chars": 920,
"preview": "@mixin md-card($base) {\n @include md-theme-property(background-color, $base);\n @include md-theme-property(color, text-"
},
{
"path": "dist/components/MdCheckbox/index.css",
"chars": 4603,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdCheckbox/index.js",
"chars": 18461,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdCheckbox/theme.scss",
"chars": 2351,
"preview": ".md-checkbox {\n @include md-theme-component() {\n &.md-checked {\n .md-checkbox-container {\n @include md-t"
},
{
"path": "dist/components/MdChips/index.css",
"chars": 15078,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdChips/index.js",
"chars": 41348,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdChips/theme.scss",
"chars": 3208,
"preview": ".md-chip {\n @include md-theme-component() {\n @include md-theme-property(background-color, highlight);\n @include m"
},
{
"path": "dist/components/MdContent/index.css",
"chars": 2070,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdContent/index.js",
"chars": 7925,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdContent/theme.scss",
"chars": 652,
"preview": ".md-content {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n @inclu"
},
{
"path": "dist/components/MdDatepicker/index.css",
"chars": 17365,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdDatepicker/index.js",
"chars": 195076,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdDatepicker/theme.scss",
"chars": 1874,
"preview": ".md-datepicker-dialog {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n"
},
{
"path": "dist/components/MdDialog/index.css",
"chars": 4964,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdDialog/index.js",
"chars": 19600,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdDialog/theme.scss",
"chars": 190,
"preview": ".md-dialog-container {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n "
},
{
"path": "dist/components/MdDivider/index.css",
"chars": 2248,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdDivider/index.js",
"chars": 8142,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdDivider/theme.scss",
"chars": 113,
"preview": ".md-divider {\n @include md-theme-component() {\n @include md-theme-property(background-color, divider);\n }\n}\n"
},
{
"path": "dist/components/MdDrawer/index.css",
"chars": 5203,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdDrawer/index.js",
"chars": 18351,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdDrawer/theme.scss",
"chars": 421,
"preview": ".md-drawer {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n @includ"
},
{
"path": "dist/components/MdElevation/index.css",
"chars": 3076,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n.md-elevat"
},
{
"path": "dist/components/MdElevation/index.js",
"chars": 1037,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdEmptyState/index.css",
"chars": 3112,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdEmptyState/index.js",
"chars": 9177,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdEmptyState/theme.scss",
"chars": 608,
"preview": "@mixin md-empty-state-spec ($color) {\n .md-empty-state-icon {\n &.md-icon-image {\n svg {\n @include md-the"
},
{
"path": "dist/components/MdField/index.css",
"chars": 12719,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdField/index.js",
"chars": 83739,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdField/theme.scss",
"chars": 3644,
"preview": ".md-field {\n @include md-theme-component() {\n @if md-get-theme-mode() == light {\n &:after {\n background-"
},
{
"path": "dist/components/MdHighlightText/index.css",
"chars": 2137,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdHighlightText/index.js",
"chars": 8704,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdIcon/index.css",
"chars": 3094,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdIcon/index.js",
"chars": 9984,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdIcon/theme.scss",
"chars": 628,
"preview": ".md-icon {\n @include md-theme-component() {\n &.md-icon-image {\n svg {\n @include md-theme-property(fill, "
},
{
"path": "dist/components/MdImage/index.css",
"chars": 2135,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdImage/index.js",
"chars": 8016,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdImage/theme.scss",
"chars": 0,
"preview": ""
},
{
"path": "dist/components/MdLayout/index.css",
"chars": 14116,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n.md-layout"
},
{
"path": "dist/components/MdLayout/index.js",
"chars": 1037,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdList/index.css",
"chars": 10730,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdList/index.js",
"chars": 35126,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdList/theme.scss",
"chars": 1535,
"preview": ".md-list {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n @include "
},
{
"path": "dist/components/MdMenu/index.css",
"chars": 13227,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdMenu/index.js",
"chars": 73989,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdMenu/theme.scss",
"chars": 364,
"preview": "@mixin md-menu-item-spec ($color) {\n .md-list-item-link,\n .md-list-item-router,\n .md-list-item-button {\n @include "
},
{
"path": "dist/components/MdProgress/index.css",
"chars": 9186,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdProgress/index.js",
"chars": 12887,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdProgress/theme.scss",
"chars": 1642,
"preview": "@mixin md-progress-bar-indeterminate ($hue) {\n @include md-theme-property(background-color, $hue, null, .38);\n\n .md-pr"
},
{
"path": "dist/components/MdRadio/index.css",
"chars": 4189,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdRadio/index.js",
"chars": 16928,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdRadio/theme.scss",
"chars": 1493,
"preview": ".md-radio {\n @include md-theme-component() {\n &.md-checked {\n .md-radio-container {\n @include md-theme-p"
},
{
"path": "dist/components/MdRipple/index.css",
"chars": 2752,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdRipple/index.js",
"chars": 14896,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSnackbar/index.css",
"chars": 3395,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdSnackbar/index.js",
"chars": 16424,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSnackbar/theme.scss",
"chars": 245,
"preview": ".md-snackbar {\n @include md-theme-component() {\n @include md-theme-property(color, text-primary, text-primary);\n\n "
},
{
"path": "dist/components/MdSpeedDial/index.css",
"chars": 10188,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdSpeedDial/index.js",
"chars": 24298,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSpeedDial/theme.scss",
"chars": 57,
"preview": ".md-speed-dial {\n @include md-theme-component() {\n\n }\n}"
},
{
"path": "dist/components/MdSteppers/index.css",
"chars": 8959,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdSteppers/index.js",
"chars": 24423,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSteppers/theme.scss",
"chars": 1801,
"preview": ".md-steppers {\n @include md-theme-component() {\n @include md-theme-property(background-color, background);\n @incl"
},
{
"path": "dist/components/MdSubheader/index.css",
"chars": 2197,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdSubheader/index.js",
"chars": 8189,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSubheader/theme.scss",
"chars": 208,
"preview": ".md-subheader {\n @include md-theme-component() {\n @include md-theme-property(color, text-accent, background);\n\n &"
},
{
"path": "dist/components/MdSwitch/index.css",
"chars": 4062,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdSwitch/index.js",
"chars": 18521,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdSwitch/theme.scss",
"chars": 1636,
"preview": ".md-switch {\n @include md-theme-component() {\n &.md-checked {\n .md-switch-container {\n @include md-theme"
},
{
"path": "dist/components/MdTable/index.css",
"chars": 10334,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdTable/index.js",
"chars": 46825,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdTable/theme.scss",
"chars": 2484,
"preview": ".md-table {\n @include md-theme-component() {\n .md-table-content,\n .md-table-alternate-header {\n @include md-"
},
{
"path": "dist/components/MdTabs/index.css",
"chars": 8444,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdTabs/index.js",
"chars": 33272,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdTabs/theme.scss",
"chars": 1640,
"preview": "@mixin md-tabs-spec ($primary, $indicator, $text) {\n .md-tabs-navigation {\n @include md-theme-property(background-co"
},
{
"path": "dist/components/MdToolbar/index.css",
"chars": 3940,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdToolbar/index.js",
"chars": 8080,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdToolbar/theme.scss",
"chars": 1933,
"preview": "@mixin md-toolbar-icon($primary, $secondary) {\n .md-icon {\n @include md-theme-property(color, $primary, $secondary);"
},
{
"path": "dist/components/MdTooltip/index.css",
"chars": 3236,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/MdTooltip/index.js",
"chars": 39059,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/components/MdTooltip/theme.scss",
"chars": 191,
"preview": ".md-tooltip {\n @include md-theme-component() {\n @include md-theme-property(color, text-primary, tooltip);\n @inclu"
},
{
"path": "dist/components/index.css",
"chars": 98284,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/components/index.js",
"chars": 403561,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n!(function"
},
{
"path": "dist/theme/all.scss",
"chars": 1278,
"preview": "$md-theme-name: 'all';\n@import \"../components/MdApp/theme\";\n@import \"../components/MdAutocomplete/theme\";\n@import \"../co"
},
{
"path": "dist/theme/black-green-dark.css",
"chars": 55899,
"preview": ":root{--md-theme-default-primary: #212121\n ;--md-theme-default-accent: #64dd17\n ;--md-theme-default-theme: dark\n "
},
{
"path": "dist/theme/black-green-light.css",
"chars": 55657,
"preview": ":root{--md-theme-default-primary: #212121\n ;--md-theme-default-accent: #64dd17\n ;--md-theme-default-theme: light\n "
},
{
"path": "dist/theme/color-contrast.scss",
"chars": 7298,
"preview": "/**\n * Hightly based on: \"Using Sass to automatically pick text colors\"\n * https://medium.com/dev-channel/using-sass-to-"
},
{
"path": "dist/theme/default-dark.css",
"chars": 55309,
"preview": ":root{--md-theme-default-primary: #448aff\n ;--md-theme-default-accent: #ff5252\n ;--md-theme-default-theme: dark\n "
},
{
"path": "dist/theme/default.css",
"chars": 55067,
"preview": ":root{--md-theme-default-primary: #448aff\n ;--md-theme-default-accent: #ff5252\n ;--md-theme-default-theme: light\n "
},
{
"path": "dist/theme/engine.scss",
"chars": 115,
"preview": "@import \"./palette\";\n@import \"./functions\";\n@import \"./variables\";\n@import \"./color-contrast\";\n@import \"./mixins\";\n"
},
{
"path": "dist/theme/functions.scss",
"chars": 2437,
"preview": "/**\n * Theme any css property based on the current palette, accepting a themable\n * value that will give an contrasted\n "
},
{
"path": "dist/theme/mixins.scss",
"chars": 6050,
"preview": "@import '../base/theme.scss';\n\n/**\n * Override extending the default palette giving new values. It will extend\n * the de"
},
{
"path": "dist/theme/palette.scss",
"chars": 5715,
"preview": "/**\n * The complete material palette\n * ---\n * @access public\n * @type map\n * @group themes\n */\n\n$md-palette: (\n red: ("
},
{
"path": "dist/theme/prebuilt/black-green-dark.scss",
"chars": 193,
"preview": "@import \"../engine\";\n\n@include md-register-theme(\"default\", (\n primary: md-get-palette-color(grey, 900),\n accent: md-g"
},
{
"path": "dist/theme/prebuilt/black-green-light.scss",
"chars": 178,
"preview": "@import \"../engine\";\n\n@include md-register-theme(\"default\", (\n primary: md-get-palette-color(grey, 900),\n accent: md-g"
},
{
"path": "dist/theme/prebuilt/default-dark.scss",
"chars": 187,
"preview": "@import \"../engine\";\n\n@include md-register-theme(\"default\", (\n primary: md-get-palette-color(blue, A200),\n accent: md-"
},
{
"path": "dist/theme/prebuilt/default.scss",
"chars": 172,
"preview": "@import \"../engine\";\n\n@include md-register-theme(\"default\", (\n primary: md-get-palette-color(blue, A200),\n accent: md-"
},
{
"path": "dist/theme/variables.scss",
"chars": 2016,
"preview": "/**\n * The default theme palette\n * primary: indigo 500 #3f51b5\n * accent: pink 500 #e91e63\n * theme: light\n *\n * It can"
},
{
"path": "dist/vue-material.css",
"chars": 98284,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n*,:after,:"
},
{
"path": "dist/vue-material.js",
"chars": 1275217,
"preview": "/*!\n * vue-material v1.0.0-beta-16\n * Made with <3 by marcosmoura 2023\n * Released under the MIT License.\n */\n(function "
},
{
"path": "docs/_redirects",
"chars": 24,
"preview": "/* /index.html 200\n"
},
{
"path": "docs/app/App.vue",
"chars": 2869,
"preview": "<template>\n <div id=\"docs\" class=\"container\" :class=\"containerClass\">\n <main-header />\n\n <div class=\"container-wr"
},
{
"path": "docs/app/banner.js",
"chars": 2324,
"preview": "if (process.env.NODE_ENV === 'production') {\n const base = 'color: #303030; font-family: \"SF Mono\", \"Hack\", monospace; "
},
{
"path": "docs/app/components/AdManager.vue",
"chars": 1186,
"preview": "<template>\n <md-content class=\"ad-manager\" id=\"ad-manager\" md-theme=\"docs-dark\">\n <div id=\"carbon-ads\" class=\"carbon"
},
{
"path": "docs/app/components/ApiItem.vue",
"chars": 1297,
"preview": "<template>\n <div class=\"api-item\">\n <h3>{{ title }}</h3>\n\n <slot />\n\n <div class=\"api-item-navigation\">\n "
},
{
"path": "docs/app/components/ApiTable/ApiTable.vue",
"chars": 2666,
"preview": "<template>\n <div class=\"api-table\" :class=\"$mdActiveTheme\">\n <table>\n <tr>\n <th v-for=\"heading in headin"
},
{
"path": "docs/app/components/ApiTable/theme.scss",
"chars": 856,
"preview": ".api-table {\n @include md-theme-component() {\n @if md-get-theme-mode() == light {\n table {\n background-c"
},
{
"path": "docs/app/components/CodeBlock.vue",
"chars": 5109,
"preview": "<template>\n <div class=\"code-block\" :data-label=\"label\">\n <div class=\"code-block-wrapper md-scrollbar md-theme-dark\""
},
{
"path": "docs/app/components/CodeExample.vue",
"chars": 3300,
"preview": "<template>\n <div class=\"code-example\">\n <md-toolbar class=\"md-primary md-dense\" md-theme=\"dark\" md-elevation=\"0\" v-i"
},
{
"path": "docs/app/components/CodeLoading.vue",
"chars": 888,
"preview": "<template>\n <transition name=\"code-loading\" appear>\n <div class=\"code-loading\">\n <md-progress-spinner md-mode=\""
},
{
"path": "docs/app/components/CodesandboxEdit.vue",
"chars": 2899,
"preview": "<template>\n <form\n class=\"codesandbox-edit\"\n action=\"https://codesandbox.io/api/v1/sandboxes/define\"\n method=\""
},
{
"path": "docs/app/components/DocsLoader.vue",
"chars": 166,
"preview": "<template>\n <div class=\"docs-loader\">\n <slot />\n </div>\n</template>\n\n<script>\nexport default {\n name: 'DocsLoader'"
},
{
"path": "docs/app/components/GridLayout.vue",
"chars": 322,
"preview": "<template>\n <div class=\"grid-layout\">\n <slot />\n </div>\n</template>\n\n<style lang=\"scss\" scoped>\n .grid-layout {\n "
},
{
"path": "docs/app/components/GridLayoutItem.vue",
"chars": 930,
"preview": "<template>\n <router-link :to=\"href\" :title=\"title\" class=\"grid-layout-item\">\n <component class=\"grid-layout-item-ico"
},
{
"path": "docs/app/components/LogoVueMaterial.vue",
"chars": 2481,
"preview": "<template>\n <md-svg-loader class=\"logo-vue-material\" :class=\"{ blending }\" md-src=\"/assets/logo.svg\" @md-loaded=\"svgLoa"
},
{
"path": "docs/app/components/NoteBlock/NoteBlock.vue",
"chars": 926,
"preview": "<template>\n <div class=\"note-block\" :class=\"[{ alert, tip, warning }, $mdActiveTheme]\">\n <slot />\n </div>\n</templat"
},
{
"path": "docs/app/components/NoteBlock/theme.scss",
"chars": 784,
"preview": ".note-block {\n @include md-theme-component() {\n @if md-get-theme-mode() == light {\n @include md-theme-property-"
},
{
"path": "docs/app/components/PageContainer.vue",
"chars": 4550,
"preview": "<template>\n <transition name=\"page-container\" appear>\n <div class=\"page-container main-container\" :class=\"{ centered"
},
{
"path": "docs/app/components/SplashContainer.vue",
"chars": 1246,
"preview": "<template>\n <transition name=\"splash-container\">\n <div class=\"splash-container main-container\" :class=\"{ centered }\""
},
{
"path": "docs/app/components/icons/IconButton.vue",
"chars": 1180,
"preview": "<template>\n <div class=\"icon-button\" v-once>\n <div class=\"square\"></div>\n <div class=\"circle\"></div>\n </div>\n</t"
},
{
"path": "docs/app/components/index.js",
"chars": 1099,
"preview": "/* Components */\nimport Vue from 'vue'\nimport PageContainer from './PageContainer'\nimport SplashContainer from './Splash"
},
{
"path": "docs/app/config.js",
"chars": 578,
"preview": "import Vue from 'vue'\nimport Axios from 'axios/dist/axios'\nimport VueRouter from 'vue-router'\nimport Vuei18n from 'vue-i"
},
{
"path": "docs/app/i18n/en-US/components.js",
"chars": 83,
"preview": "export default {\n code: {\n copyMessage: 'Code copied!',\n copy: 'Copy'\n }\n}\n"
},
{
"path": "docs/app/i18n/en-US/index.js",
"chars": 301,
"preview": "import components from './components'\nimport pages from './pages'\n\nexport default {\n aboutMaterial: 'About Vue Material"
},
{
"path": "docs/app/i18n/en-US/pages.js",
"chars": 10340,
"preview": "export default {\n home: {\n title: 'Home',\n slogan: 'Build beautiful apps with Material Design and Vue.js',\n ma"
},
{
"path": "docs/app/i18n/index.js",
"chars": 54,
"preview": "import enUS from './en-US'\n\nexport default {\n enUS\n}\n"
},
{
"path": "docs/app/index.js",
"chars": 882,
"preview": "/* Third Party */\nimport 'regenerator-runtime/runtime'\nimport Vue from 'vue'\nimport { sync } from 'vuex-router-sync'\nimp"
},
{
"path": "docs/app/mixins/codeSource.js",
"chars": 597,
"preview": "export const getIndentedSource = source => {\n let lines = source.split('\\n')\n let matches\n\n if (lines[0] === '') {\n "
},
{
"path": "docs/app/mixins/docsExample.js",
"chars": 97,
"preview": "export default {\n computed: {\n examples () {\n return this.$options.examples\n }\n }\n}\n"
},
{
"path": "docs/app/pages/About.vue",
"chars": 5194,
"preview": "<template>\n <page-container centered :title=\"$t('pages.about.title')\">\n <section class=\"page-container-section\">\n "
},
{
"path": "docs/app/pages/Components/App/App.vue",
"chars": 6207,
"preview": "<example src=\"./examples/Normal.vue\" />\n<example src=\"./examples/Waterfall.vue\" />\n<example src=\"./examples/Reveal.vue\" "
},
{
"path": "docs/app/pages/Components/App/examples/Flexible.vue",
"chars": 5462,
"preview": "<template>\n <div class=\"page-container\">\n <md-app md-waterfall md-mode=\"flexible\">\n <md-app-toolbar class=\"md-l"
},
{
"path": "docs/app/pages/Components/App/examples/LastRowFixed.vue",
"chars": 5728,
"preview": "<template>\n <div class=\"page-container\">\n <md-app md-waterfall md-mode=\"fixed-last\">\n <md-app-toolbar class=\"md"
},
{
"path": "docs/app/pages/Components/App/examples/Normal.vue",
"chars": 3187,
"preview": "<template>\n <div class=\"page-container\">\n <md-app>\n <md-app-toolbar class=\"md-primary\">\n <span class=\"md"
},
{
"path": "docs/app/pages/Components/App/examples/Overlap.vue",
"chars": 3479,
"preview": "<template>\n <div class=\"page-container\">\n <md-app md-waterfall md-mode=\"overlap\">\n <md-app-toolbar class=\"md-pr"
},
{
"path": "docs/app/pages/Components/App/examples/Reveal.vue",
"chars": 5005,
"preview": "<template>\n <div class=\"page-container\">\n <md-app md-mode=\"reveal\">\n <md-app-toolbar class=\"md-primary\">\n "
},
{
"path": "docs/app/pages/Components/App/examples/Waterfall.vue",
"chars": 3219,
"preview": "<template>\n <div class=\"page-container\">\n <md-app md-waterfall md-mode=\"fixed\">\n <md-app-toolbar class=\"md-prim"
},
{
"path": "docs/app/pages/Components/Autocomplete/Autocomplete.vue",
"chars": 11816,
"preview": "<example src=\"./examples/AutocompleteStatic.vue\" />\n<example src=\"./examples/AutocompleteTrigger.vue\" />\n<example src=\"."
},
{
"path": "docs/app/pages/Components/Autocomplete/examples/AutocompleteAsync.vue",
"chars": 1487,
"preview": "<template>\n <div>\n <md-autocomplete v-model=\"value\" :md-options=\"countries\" @md-changed=\"getCountries\" @md-opened=\"g"
},
{
"path": "docs/app/pages/Components/Autocomplete/examples/AutocompleteBox.vue",
"chars": 1554,
"preview": "<template>\n <div>\n <md-autocomplete\n v-model=\"selectedEmployee\"\n :md-options=\"employees\"\n md-layout=\""
},
{
"path": "docs/app/pages/Components/Autocomplete/examples/AutocompleteSearch.vue",
"chars": 1997,
"preview": "<template>\n <div>\n <strong>Fuzzy Search:</strong>\n <md-autocomplete v-model=\"selectedEmployee\" :md-options=\"emplo"
}
]
// ... and 511 more files (download for full content)
About this extraction
This page contains the full source code of the vuematerial/vue-material GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 711 files (4.7 MB), approximately 1.3M tokens, and a symbol index with 3514 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.