kdutify 0.16.9-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +70 -0
- package/dist/kdutify.css +12850 -0
- package/dist/kdutify.css.map +1 -0
- package/dist/kdutify.js +16285 -0
- package/dist/kdutify.js.map +1 -0
- package/dist/kdutify.min.css +7 -0
- package/dist/kdutify.min.css.map +1 -0
- package/dist/kdutify.min.js +6 -0
- package/es5/components/KAlert/KAlert.js +80 -0
- package/es5/components/KAlert/index.js +7 -0
- package/es5/components/KApp/KApp.js +67 -0
- package/es5/components/KApp/index.js +7 -0
- package/es5/components/KAvatar/KAvatar.js +31 -0
- package/es5/components/KAvatar/index.js +7 -0
- package/es5/components/KBadge/KBadge.js +59 -0
- package/es5/components/KBadge/index.js +7 -0
- package/es5/components/KBottomNav/KBottomNav.js +50 -0
- package/es5/components/KBottomNav/index.js +7 -0
- package/es5/components/KBottomSheet/KBottomSheet.js +36 -0
- package/es5/components/KBottomSheet/index.js +7 -0
- package/es5/components/KBreadcrumbs/KBreadcrumbs.js +36 -0
- package/es5/components/KBreadcrumbs/KBreadcrumbsItem.js +38 -0
- package/es5/components/KBreadcrumbs/index.js +11 -0
- package/es5/components/KBtn/KBtn.js +153 -0
- package/es5/components/KBtn/index.js +7 -0
- package/es5/components/KBtnToggle/KBtnToggle.js +92 -0
- package/es5/components/KBtnToggle/index.js +7 -0
- package/es5/components/KCard/KCard.js +63 -0
- package/es5/components/KCard/KCardMedia.js +41 -0
- package/es5/components/KCard/KCardTitle.js +21 -0
- package/es5/components/KCard/index.js +19 -0
- package/es5/components/KCarousel/KCarousel.js +178 -0
- package/es5/components/KCarousel/KCarouselItem.js +63 -0
- package/es5/components/KCarousel/index.js +11 -0
- package/es5/components/KCheckbox/KCheckbox.js +89 -0
- package/es5/components/KCheckbox/index.js +7 -0
- package/es5/components/KChip/KChip.js +81 -0
- package/es5/components/KChip/index.js +7 -0
- package/es5/components/KDataTable/KDataTable.js +347 -0
- package/es5/components/KDataTable/KEditDialog.js +108 -0
- package/es5/components/KDataTable/index.js +14 -0
- package/es5/components/KDataTable/mixins/body.js +103 -0
- package/es5/components/KDataTable/mixins/foot.js +118 -0
- package/es5/components/KDataTable/mixins/head.js +123 -0
- package/es5/components/KDataTable/mixins/progress.js +16 -0
- package/es5/components/KDatePicker/KDatePicker.js +416 -0
- package/es5/components/KDatePicker/index.js +7 -0
- package/es5/components/KDatePicker/mixins/date-header.js +68 -0
- package/es5/components/KDatePicker/mixins/date-table.js +101 -0
- package/es5/components/KDatePicker/mixins/date-title.js +64 -0
- package/es5/components/KDatePicker/mixins/date-years.js +53 -0
- package/es5/components/KDatePicker/mixins/month-table.js +91 -0
- package/es5/components/KDialog/KDialog.js +181 -0
- package/es5/components/KDialog/index.js +7 -0
- package/es5/components/KDivider/KDivider.js +29 -0
- package/es5/components/KDivider/index.js +7 -0
- package/es5/components/KExpansionPanel/KExpansionPanel.js +60 -0
- package/es5/components/KExpansionPanel/KExpansionPanelContent.js +114 -0
- package/es5/components/KExpansionPanel/index.js +9 -0
- package/es5/components/KFooter/KFooter.js +61 -0
- package/es5/components/KFooter/index.js +7 -0
- package/es5/components/KForm/KForm.js +203 -0
- package/es5/components/KForm/index.js +7 -0
- package/es5/components/KGrid/KContainer.js +5 -0
- package/es5/components/KGrid/KContent.js +33 -0
- package/es5/components/KGrid/KFlex.js +5 -0
- package/es5/components/KGrid/KLayout.js +5 -0
- package/es5/components/KGrid/grid.js +43 -0
- package/es5/components/KGrid/index.js +20 -0
- package/es5/components/KIcon/KIcon.js +93 -0
- package/es5/components/KIcon/index.js +7 -0
- package/es5/components/KList/KList.js +82 -0
- package/es5/components/KList/KListGroup.js +100 -0
- package/es5/components/KList/KListTile.js +65 -0
- package/es5/components/KList/KListTileAction.js +15 -0
- package/es5/components/KList/index.js +27 -0
- package/es5/components/KMenu/KMenu.js +178 -0
- package/es5/components/KMenu/index.js +7 -0
- package/es5/components/KMenu/mixins/menu-activator.js +59 -0
- package/es5/components/KMenu/mixins/menu-generators.js +88 -0
- package/es5/components/KMenu/mixins/menu-keyable.js +64 -0
- package/es5/components/KMenu/mixins/menu-position.js +64 -0
- package/es5/components/KNavigationDrawer/KNavigationDrawer.js +238 -0
- package/es5/components/KNavigationDrawer/index.js +7 -0
- package/es5/components/KPagination/KPagination.js +167 -0
- package/es5/components/KPagination/index.js +7 -0
- package/es5/components/KParallax/KParallax.js +98 -0
- package/es5/components/KParallax/index.js +7 -0
- package/es5/components/KProgressCircular/KProgressCircular.js +145 -0
- package/es5/components/KProgressCircular/index.js +7 -0
- package/es5/components/KProgressLinear/KProgressLinear.js +146 -0
- package/es5/components/KProgressLinear/index.js +7 -0
- package/es5/components/KRadioGroup/KRadio.js +148 -0
- package/es5/components/KRadioGroup/KRadioGroup.js +139 -0
- package/es5/components/KRadioGroup/index.js +11 -0
- package/es5/components/KSelect/KSelect.js +635 -0
- package/es5/components/KSelect/index.js +7 -0
- package/es5/components/KSelect/mixins/select-autocomplete.js +125 -0
- package/es5/components/KSelect/mixins/select-generators.js +298 -0
- package/es5/components/KSlider/KSlider.js +306 -0
- package/es5/components/KSlider/index.js +7 -0
- package/es5/components/KSnackbar/KSnackbar.js +106 -0
- package/es5/components/KSnackbar/index.js +7 -0
- package/es5/components/KSpeedDial/KSpeedDial.js +89 -0
- package/es5/components/KSpeedDial/index.js +7 -0
- package/es5/components/KStepper/KStepper.js +112 -0
- package/es5/components/KStepper/KStepperContent.js +134 -0
- package/es5/components/KStepper/KStepperStep.js +105 -0
- package/es5/components/KStepper/index.js +17 -0
- package/es5/components/KSubheader/KSubheader.js +29 -0
- package/es5/components/KSubheader/index.js +7 -0
- package/es5/components/KSwitch/KSwitch.js +55 -0
- package/es5/components/KSwitch/index.js +7 -0
- package/es5/components/KSystemBar/KSystemBar.js +54 -0
- package/es5/components/KSystemBar/index.js +7 -0
- package/es5/components/KTabs/KTabs.js +272 -0
- package/es5/components/KTabs/KTabsBar.js +205 -0
- package/es5/components/KTabs/KTabsContent.js +86 -0
- package/es5/components/KTabs/KTabsItem.js +103 -0
- package/es5/components/KTabs/KTabsItems.js +40 -0
- package/es5/components/KTabs/KTabsSlider.js +14 -0
- package/es5/components/KTabs/index.js +17 -0
- package/es5/components/KTextField/KTextField.js +275 -0
- package/es5/components/KTextField/index.js +7 -0
- package/es5/components/KTimePicker/KTimePicker.js +302 -0
- package/es5/components/KTimePicker/index.js +7 -0
- package/es5/components/KTimePicker/mixins/time-body.js +207 -0
- package/es5/components/KTimePicker/mixins/time-title.js +55 -0
- package/es5/components/KToolbar/KToolbar.js +193 -0
- package/es5/components/KToolbar/KToolbarSideIcon.js +29 -0
- package/es5/components/KToolbar/index.js +17 -0
- package/es5/components/KTooltip/KTooltip.js +156 -0
- package/es5/components/KTooltip/index.js +7 -0
- package/es5/components/Kdutify/index.js +50 -0
- package/es5/components/index.js +45 -0
- package/es5/components/transitions/expand-transition.js +36 -0
- package/es5/components/transitions/index.js +47 -0
- package/es5/components/transitions/row-expand-transition.js +38 -0
- package/es5/directives/click-outside.js +100 -0
- package/es5/directives/index.js +15 -0
- package/es5/directives/resize.js +30 -0
- package/es5/directives/ripple.js +144 -0
- package/es5/directives/scroll.js +32 -0
- package/es5/directives/touch.js +102 -0
- package/es5/index.js +30 -0
- package/es5/mixins/applicationable.js +9 -0
- package/es5/mixins/bootable.js +31 -0
- package/es5/mixins/button-group.js +82 -0
- package/es5/mixins/colorable.js +24 -0
- package/es5/mixins/contextualable.js +10 -0
- package/es5/mixins/delayable.js +57 -0
- package/es5/mixins/dependent.js +121 -0
- package/es5/mixins/detachable.js +41 -0
- package/es5/mixins/filterable.js +8 -0
- package/es5/mixins/input.js +219 -0
- package/es5/mixins/loadable.js +31 -0
- package/es5/mixins/maskable.js +181 -0
- package/es5/mixins/menuable.js +293 -0
- package/es5/mixins/overlayable.js +202 -0
- package/es5/mixins/picker.js +36 -0
- package/es5/mixins/positionable.js +10 -0
- package/es5/mixins/rippleable.js +21 -0
- package/es5/mixins/routable.js +66 -0
- package/es5/mixins/selectable.js +79 -0
- package/es5/mixins/stackable.js +70 -0
- package/es5/mixins/tab-focusable.js +7 -0
- package/es5/mixins/themeable.js +15 -0
- package/es5/mixins/toggleable.js +31 -0
- package/es5/mixins/transitionable.js +7 -0
- package/es5/mixins/translatable.js +62 -0
- package/es5/mixins/validatable.js +138 -0
- package/es5/util/breakpoint.js +128 -0
- package/es5/util/helpers.js +139 -0
- package/es5/util/load.js +15 -0
- package/es5/util/mask.js +159 -0
- package/es5/util/testing.js +160 -0
- package/es5/util/to-have-been-warned.js +117 -0
- package/es5/util/touchSupport.js +14 -0
- package/index.d.ts +8 -0
- package/package.json +134 -0
- package/src/components/KAlert/KAlert.js +77 -0
- package/src/components/KAlert/index.js +7 -0
- package/src/components/KApp/KApp.js +64 -0
- package/src/components/KApp/index.js +7 -0
- package/src/components/KAvatar/KAvatar.js +27 -0
- package/src/components/KAvatar/index.js +7 -0
- package/src/components/KBadge/KBadge.js +62 -0
- package/src/components/KBadge/index.js +7 -0
- package/src/components/KBottomNav/KBottomNav.js +50 -0
- package/src/components/KBottomNav/index.js +7 -0
- package/src/components/KBottomSheet/KBottomSheet.js +41 -0
- package/src/components/KBottomSheet/index.js +7 -0
- package/src/components/KBreadcrumbs/KBreadcrumbs.js +35 -0
- package/src/components/KBreadcrumbs/KBreadcrumbsItem.js +38 -0
- package/src/components/KBreadcrumbs/index.js +11 -0
- package/src/components/KBtn/KBtn.js +163 -0
- package/src/components/KBtn/index.js +7 -0
- package/src/components/KBtnToggle/KBtnToggle.js +92 -0
- package/src/components/KBtnToggle/index.js +7 -0
- package/src/components/KCard/KCard.js +61 -0
- package/src/components/KCard/KCardMedia.js +41 -0
- package/src/components/KCard/KCardTitle.js +17 -0
- package/src/components/KCard/index.js +19 -0
- package/src/components/KCarousel/KCarousel.js +174 -0
- package/src/components/KCarousel/KCarouselItem.js +65 -0
- package/src/components/KCarousel/index.js +11 -0
- package/src/components/KCheckbox/KCheckbox.js +92 -0
- package/src/components/KCheckbox/index.js +7 -0
- package/src/components/KChip/KChip.js +83 -0
- package/src/components/KChip/index.js +7 -0
- package/src/components/KDataTable/KDataTable.js +346 -0
- package/src/components/KDataTable/KEditDialog.js +110 -0
- package/src/components/KDataTable/index.js +16 -0
- package/src/components/KDataTable/mixins/body.js +98 -0
- package/src/components/KDataTable/mixins/foot.js +128 -0
- package/src/components/KDataTable/mixins/head.js +119 -0
- package/src/components/KDataTable/mixins/progress.js +16 -0
- package/src/components/KDatePicker/KDatePicker.js +382 -0
- package/src/components/KDatePicker/index.js +7 -0
- package/src/components/KDatePicker/mixins/date-header.js +74 -0
- package/src/components/KDatePicker/mixins/date-table.js +95 -0
- package/src/components/KDatePicker/mixins/date-title.js +76 -0
- package/src/components/KDatePicker/mixins/date-years.js +42 -0
- package/src/components/KDatePicker/mixins/month-table.js +82 -0
- package/src/components/KDialog/KDialog.js +184 -0
- package/src/components/KDialog/index.js +7 -0
- package/src/components/KDivider/KDivider.js +25 -0
- package/src/components/KDivider/index.js +7 -0
- package/src/components/KExpansionPanel/KExpansionPanel.js +55 -0
- package/src/components/KExpansionPanel/KExpansionPanelContent.js +112 -0
- package/src/components/KExpansionPanel/index.js +9 -0
- package/src/components/KFooter/KFooter.js +67 -0
- package/src/components/KFooter/index.js +7 -0
- package/src/components/KForm/KForm.js +117 -0
- package/src/components/KForm/index.js +7 -0
- package/src/components/KGrid/KContainer.js +5 -0
- package/src/components/KGrid/KContent.js +29 -0
- package/src/components/KGrid/KFlex.js +5 -0
- package/src/components/KGrid/KLayout.js +5 -0
- package/src/components/KGrid/grid.js +40 -0
- package/src/components/KGrid/index.js +27 -0
- package/src/components/KIcon/KIcon.js +87 -0
- package/src/components/KIcon/index.js +7 -0
- package/src/components/KList/KList.js +75 -0
- package/src/components/KList/KListGroup.js +95 -0
- package/src/components/KList/KListTile.js +62 -0
- package/src/components/KList/KListTileAction.js +12 -0
- package/src/components/KList/index.js +27 -0
- package/src/components/KMenu/KMenu.js +207 -0
- package/src/components/KMenu/index.js +7 -0
- package/src/components/KMenu/mixins/menu-activator.js +51 -0
- package/src/components/KMenu/mixins/menu-generators.js +84 -0
- package/src/components/KMenu/mixins/menu-keyable.js +68 -0
- package/src/components/KMenu/mixins/menu-position.js +72 -0
- package/src/components/KNavigationDrawer/KNavigationDrawer.js +267 -0
- package/src/components/KNavigationDrawer/index.js +7 -0
- package/src/components/KPagination/KPagination.js +168 -0
- package/src/components/KPagination/index.js +7 -0
- package/src/components/KParallax/KParallax.js +99 -0
- package/src/components/KParallax/index.js +7 -0
- package/src/components/KProgressCircular/KProgressCircular.js +160 -0
- package/src/components/KProgressCircular/index.js +7 -0
- package/src/components/KProgressLinear/KProgressLinear.js +157 -0
- package/src/components/KProgressLinear/index.js +7 -0
- package/src/components/KRadioGroup/KRadio.js +153 -0
- package/src/components/KRadioGroup/KRadioGroup.js +118 -0
- package/src/components/KRadioGroup/index.js +11 -0
- package/src/components/KSelect/KSelect.js +641 -0
- package/src/components/KSelect/index.js +7 -0
- package/src/components/KSelect/mixins/select-autocomplete.js +125 -0
- package/src/components/KSelect/mixins/select-generators.js +300 -0
- package/src/components/KSlider/KSlider.js +311 -0
- package/src/components/KSlider/index.js +7 -0
- package/src/components/KSnackbar/KSnackbar.js +97 -0
- package/src/components/KSnackbar/index.js +7 -0
- package/src/components/KSpeedDial/KSpeedDial.js +80 -0
- package/src/components/KSpeedDial/index.js +7 -0
- package/src/components/KStepper/KStepper.js +95 -0
- package/src/components/KStepper/KStepperContent.js +138 -0
- package/src/components/KStepper/KStepperStep.js +100 -0
- package/src/components/KStepper/index.js +17 -0
- package/src/components/KSubheader/KSubheader.js +25 -0
- package/src/components/KSubheader/index.js +7 -0
- package/src/components/KSwitch/KSwitch.js +58 -0
- package/src/components/KSwitch/index.js +7 -0
- package/src/components/KSystemBar/KSystemBar.js +54 -0
- package/src/components/KSystemBar/index.js +7 -0
- package/src/components/KTabs/KTabs.js +240 -0
- package/src/components/KTabs/KTabsBar.js +202 -0
- package/src/components/KTabs/KTabsContent.js +90 -0
- package/src/components/KTabs/KTabsItem.js +99 -0
- package/src/components/KTabs/KTabsItems.js +40 -0
- package/src/components/KTabs/KTabsSlider.js +14 -0
- package/src/components/KTabs/index.js +17 -0
- package/src/components/KTextField/KTextField.js +246 -0
- package/src/components/KTextField/index.js +7 -0
- package/src/components/KTimePicker/KTimePicker.js +282 -0
- package/src/components/KTimePicker/index.js +7 -0
- package/src/components/KTimePicker/mixins/time-body.js +208 -0
- package/src/components/KTimePicker/mixins/time-title.js +51 -0
- package/src/components/KToolbar/KToolbar.js +206 -0
- package/src/components/KToolbar/KToolbarSideIcon.js +26 -0
- package/src/components/KToolbar/index.js +19 -0
- package/src/components/KTooltip/KTooltip.js +161 -0
- package/src/components/KTooltip/index.js +7 -0
- package/src/components/Kdutify/index.js +48 -0
- package/src/components/index.js +45 -0
- package/src/components/transitions/expand-transition.js +34 -0
- package/src/components/transitions/index.js +50 -0
- package/src/components/transitions/row-expand-transition.js +38 -0
- package/src/directives/click-outside.js +72 -0
- package/src/directives/index.js +21 -0
- package/src/directives/resize.js +30 -0
- package/src/directives/ripple.js +120 -0
- package/src/directives/scroll.js +31 -0
- package/src/directives/touch.js +90 -0
- package/src/index.js +30 -0
- package/src/mixins/applicationable.js +9 -0
- package/src/mixins/bootable.js +31 -0
- package/src/mixins/button-group.js +77 -0
- package/src/mixins/colorable.js +20 -0
- package/src/mixins/contextualable.js +10 -0
- package/src/mixins/delayable.js +54 -0
- package/src/mixins/dependent.js +55 -0
- package/src/mixins/detachable.js +44 -0
- package/src/mixins/filterable.js +8 -0
- package/src/mixins/input.js +220 -0
- package/src/mixins/loadable.js +33 -0
- package/src/mixins/maskable.js +117 -0
- package/src/mixins/menuable.js +299 -0
- package/src/mixins/overlayable.js +180 -0
- package/src/mixins/picker.js +35 -0
- package/src/mixins/positionable.js +10 -0
- package/src/mixins/rippleable.js +21 -0
- package/src/mixins/routable.js +66 -0
- package/src/mixins/selectable.js +84 -0
- package/src/mixins/stackable.js +44 -0
- package/src/mixins/tab-focusable.js +7 -0
- package/src/mixins/themeable.js +15 -0
- package/src/mixins/toggleable.js +28 -0
- package/src/mixins/transitionable.js +7 -0
- package/src/mixins/translatable.js +67 -0
- package/src/mixins/validatable.js +124 -0
- package/src/stylus/app.styl +6 -0
- package/src/stylus/bootstrap.styl +1 -0
- package/src/stylus/components/_alerts.styl +44 -0
- package/src/stylus/components/_app.styl +21 -0
- package/src/stylus/components/_avatars.styl +22 -0
- package/src/stylus/components/_badges.styl +49 -0
- package/src/stylus/components/_bottom-navs.styl +86 -0
- package/src/stylus/components/_bottom-sheets.styl +18 -0
- package/src/stylus/components/_breadcrumbs.styl +46 -0
- package/src/stylus/components/_button-toggle.styl +55 -0
- package/src/stylus/components/_buttons.styl +339 -0
- package/src/stylus/components/_cards.styl +85 -0
- package/src/stylus/components/_carousel.styl +76 -0
- package/src/stylus/components/_chips.styl +102 -0
- package/src/stylus/components/_content.styl +6 -0
- package/src/stylus/components/_data-table.styl +113 -0
- package/src/stylus/components/_date-picker.styl +214 -0
- package/src/stylus/components/_dialogs.styl +63 -0
- package/src/stylus/components/_dividers.styl +19 -0
- package/src/stylus/components/_expansion-panel.styl +85 -0
- package/src/stylus/components/_footer.styl +40 -0
- package/src/stylus/components/_grid.styl +171 -0
- package/src/stylus/components/_icons.styl +32 -0
- package/src/stylus/components/_input-groups.styl +310 -0
- package/src/stylus/components/_lists.styl +263 -0
- package/src/stylus/components/_menus.styl +87 -0
- package/src/stylus/components/_navigation-drawer.styl +150 -0
- package/src/stylus/components/_overlay.styl +42 -0
- package/src/stylus/components/_pagination.styl +95 -0
- package/src/stylus/components/_parallax.styl +35 -0
- package/src/stylus/components/_pickers.styl +66 -0
- package/src/stylus/components/_progress-circular.styl +58 -0
- package/src/stylus/components/_progress-linear.styl +104 -0
- package/src/stylus/components/_radio-group.styl +23 -0
- package/src/stylus/components/_ripples.styl +31 -0
- package/src/stylus/components/_select.styl +153 -0
- package/src/stylus/components/_selection-controls.styl +122 -0
- package/src/stylus/components/_sliders.styl +234 -0
- package/src/stylus/components/_small-dialog.styl +37 -0
- package/src/stylus/components/_snackbars.styl +110 -0
- package/src/stylus/components/_speed-dial.styl +78 -0
- package/src/stylus/components/_steppers.styl +216 -0
- package/src/stylus/components/_subheaders.styl +18 -0
- package/src/stylus/components/_switch.styl +89 -0
- package/src/stylus/components/_system-bars.styl +49 -0
- package/src/stylus/components/_tables.styl +103 -0
- package/src/stylus/components/_tabs.styl +159 -0
- package/src/stylus/components/_text-fields.styl +243 -0
- package/src/stylus/components/_time-picker.styl +199 -0
- package/src/stylus/components/_toolbar.styl +148 -0
- package/src/stylus/components/_tooltips.styl +25 -0
- package/src/stylus/elements/_blockquote.styl +5 -0
- package/src/stylus/elements/_code.styl +20 -0
- package/src/stylus/elements/_global.styl +31 -0
- package/src/stylus/elements/_headings.styl +17 -0
- package/src/stylus/elements/_lists.styl +2 -0
- package/src/stylus/elements/_typography.styl +54 -0
- package/src/stylus/generic/_bootstrap.styl +49 -0
- package/src/stylus/generic/_reset.styl +332 -0
- package/src/stylus/generic/_transitions.styl +116 -0
- package/src/stylus/main.styl +2 -0
- package/src/stylus/settings/_colors.styl +339 -0
- package/src/stylus/settings/_elevations.styl +111 -0
- package/src/stylus/settings/_theme.styl +201 -0
- package/src/stylus/settings/_variables.styl +396 -0
- package/src/stylus/theme.styl +24 -0
- package/src/stylus/tools/_animations.styl +9 -0
- package/src/stylus/tools/_colors.styl +17 -0
- package/src/stylus/tools/_elevations.styl +7 -0
- package/src/stylus/trumps/_display.styl +14 -0
- package/src/stylus/trumps/_helpers.styl +5 -0
- package/src/stylus/trumps/_spacing.styl +37 -0
- package/src/stylus/trumps/_text.styl +13 -0
- package/src/util/breakpoint.js +134 -0
- package/src/util/helpers.d.ts +21 -0
- package/src/util/helpers.js +125 -0
- package/src/util/load.js +13 -0
- package/src/util/mask.js +138 -0
- package/src/util/testing.js +154 -0
- package/src/util/to-have-been-warned.js +68 -0
- package/src/util/touchSupport.js +12 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Menu position
|
|
3
|
+
*
|
|
4
|
+
* @mixin
|
|
5
|
+
*
|
|
6
|
+
* Used for calculating an automatic position (used for KSelect)
|
|
7
|
+
* Will position the KMenu content properly over the KSelect
|
|
8
|
+
*/
|
|
9
|
+
export default {
|
|
10
|
+
methods: {
|
|
11
|
+
// Revisit this
|
|
12
|
+
calculateScroll: function calculateScroll() {
|
|
13
|
+
if (this.selectedIndex === null) return;
|
|
14
|
+
|
|
15
|
+
var scrollTop = 0;
|
|
16
|
+
|
|
17
|
+
if (this.selectedIndex >= this.stopIndex) {
|
|
18
|
+
scrollTop = this.$refs.content.scrollHeight;
|
|
19
|
+
} else if (this.selectedIndex > this.startIndex) {
|
|
20
|
+
scrollTop = this.selectedIndex * (this.defaultOffset * 6) - this.defaultOffset * 7;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
this.$refs.content.scrollTop = scrollTop;
|
|
24
|
+
},
|
|
25
|
+
calcLeftAuto: function calcLeftAuto() {
|
|
26
|
+
var a = this.dimensions.activator;
|
|
27
|
+
|
|
28
|
+
return parseInt(a.left - this.defaultOffset * 2);
|
|
29
|
+
},
|
|
30
|
+
calcTopAuto: function calcTopAuto() {
|
|
31
|
+
if (!this.hasActivator) return this.calcTop();
|
|
32
|
+
|
|
33
|
+
var selectedIndex = Array.from(this.tiles).findIndex(function (n) {
|
|
34
|
+
return n.classList.contains('list__tile--active');
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
if (selectedIndex === -1) {
|
|
38
|
+
this.selectedIndex = null;
|
|
39
|
+
|
|
40
|
+
return this.calcTop();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
this.selectedIndex = selectedIndex;
|
|
44
|
+
var actingIndex = selectedIndex;
|
|
45
|
+
|
|
46
|
+
var offsetPadding = -(this.defaultOffset * 2);
|
|
47
|
+
// #708 Stop index should vary by tile length
|
|
48
|
+
this.stopIndex = this.tiles.length > 4 ? this.tiles.length - 4 : this.tiles.length;
|
|
49
|
+
|
|
50
|
+
if (selectedIndex > this.startIndex && selectedIndex < this.stopIndex) {
|
|
51
|
+
actingIndex = 2;
|
|
52
|
+
offsetPadding = this.defaultOffset * 3;
|
|
53
|
+
} else if (selectedIndex >= this.stopIndex) {
|
|
54
|
+
offsetPadding = -this.defaultOffset;
|
|
55
|
+
actingIndex = selectedIndex - this.stopIndex;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// Is always off by 1 pixel, send help (┛ಠ_ಠ)┛彡┻━┻
|
|
59
|
+
offsetPadding--;
|
|
60
|
+
|
|
61
|
+
return this.calcTop() + offsetPadding - actingIndex * (this.defaultOffset * 6);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
};
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
require('../../../src/stylus/components/_navigation-drawer.styl');
|
|
2
|
+
|
|
3
|
+
import Applicationable from '../../mixins/applicationable';
|
|
4
|
+
import Overlayable from '../../mixins/overlayable';
|
|
5
|
+
import Themeable from '../../mixins/themeable';
|
|
6
|
+
|
|
7
|
+
import ClickOutside from '../../directives/click-outside';
|
|
8
|
+
import Resize from '../../directives/resize';
|
|
9
|
+
import Touch from '../../directives/touch';
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
name: 'k-navigation-drawer',
|
|
13
|
+
|
|
14
|
+
mixins: [Applicationable, Overlayable, Themeable],
|
|
15
|
+
|
|
16
|
+
directives: {
|
|
17
|
+
ClickOutside: ClickOutside,
|
|
18
|
+
Resize: Resize,
|
|
19
|
+
Touch: Touch
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
data: function data() {
|
|
23
|
+
return {
|
|
24
|
+
isActive: this.value,
|
|
25
|
+
isBooted: false,
|
|
26
|
+
isMobile: false,
|
|
27
|
+
touchArea: {
|
|
28
|
+
left: 0,
|
|
29
|
+
right: 0
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
props: {
|
|
36
|
+
absolute: Boolean,
|
|
37
|
+
clipped: Boolean,
|
|
38
|
+
disableRouteWatcher: Boolean,
|
|
39
|
+
enableResizeWatcher: Boolean,
|
|
40
|
+
height: String,
|
|
41
|
+
floating: Boolean,
|
|
42
|
+
miniVariant: Boolean,
|
|
43
|
+
miniVariantWidth: {
|
|
44
|
+
type: [Number, String],
|
|
45
|
+
default: 80
|
|
46
|
+
},
|
|
47
|
+
mobileBreakPoint: {
|
|
48
|
+
type: Number,
|
|
49
|
+
default: 1264
|
|
50
|
+
},
|
|
51
|
+
permanent: Boolean,
|
|
52
|
+
persistent: Boolean,
|
|
53
|
+
right: Boolean,
|
|
54
|
+
temporary: Boolean,
|
|
55
|
+
touchless: Boolean,
|
|
56
|
+
width: {
|
|
57
|
+
type: [Number, String],
|
|
58
|
+
default: 300
|
|
59
|
+
},
|
|
60
|
+
value: { required: false }
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
computed: {
|
|
64
|
+
calculatedHeight: function calculatedHeight() {
|
|
65
|
+
return this.height || '100%';
|
|
66
|
+
},
|
|
67
|
+
calculatedWidth: function calculatedWidth() {
|
|
68
|
+
return this.miniVariant ? this.miniVariantWidth : this.width;
|
|
69
|
+
},
|
|
70
|
+
classes: function classes() {
|
|
71
|
+
return {
|
|
72
|
+
'navigation-drawer': true,
|
|
73
|
+
'navigation-drawer--absolute': this.absolute,
|
|
74
|
+
'navigation-drawer--clipped': this.clipped,
|
|
75
|
+
'navigation-drawer--close': !this.isBooted || !this.isActive,
|
|
76
|
+
'navigation-drawer--floating': this.floating,
|
|
77
|
+
'navigation-drawer--is-booted': this.isBooted,
|
|
78
|
+
'navigation-drawer--is-mobile': this.isMobile,
|
|
79
|
+
'navigation-drawer--mini-variant': this.miniVariant,
|
|
80
|
+
'navigation-drawer--open': this.isActive && this.isBooted,
|
|
81
|
+
'navigation-drawer--permanent': this.permanent,
|
|
82
|
+
'navigation-drawer--persistent': this.persistent,
|
|
83
|
+
'navigation-drawer--right': this.right,
|
|
84
|
+
'navigation-drawer--temporary': this.temporary,
|
|
85
|
+
'theme--dark': this.dark,
|
|
86
|
+
'theme--light': this.light
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
marginTop: function marginTop() {
|
|
90
|
+
if (!this.app) return 0;
|
|
91
|
+
var marginTop = this.$kdutify.application.bar;
|
|
92
|
+
|
|
93
|
+
marginTop += this.clipped ? this.$kdutify.application.top : 0;
|
|
94
|
+
|
|
95
|
+
return marginTop;
|
|
96
|
+
},
|
|
97
|
+
maxHeight: function maxHeight() {
|
|
98
|
+
if (!this.app) return '100%';
|
|
99
|
+
|
|
100
|
+
return this.clipped ? this.$kdutify.application.top + this.$kdutify.application.bottom : this.$kdutify.application.bottom;
|
|
101
|
+
},
|
|
102
|
+
showOverlay: function showOverlay() {
|
|
103
|
+
return !this.permanent && this.isActive && (this.temporary || this.isMobile);
|
|
104
|
+
},
|
|
105
|
+
styles: function styles() {
|
|
106
|
+
return {
|
|
107
|
+
height: this.calculatedHeight,
|
|
108
|
+
marginTop: this.marginTop + 'px',
|
|
109
|
+
maxHeight: 'calc(100% - ' + this.maxHeight + 'px)',
|
|
110
|
+
width: this.calculatedWidth + 'px'
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
|
|
115
|
+
watch: {
|
|
116
|
+
$route: function $route() {
|
|
117
|
+
if (!this.disableRouteWatcher) {
|
|
118
|
+
this.isActive = !this.closeConditional();
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
isActive: function isActive(val) {
|
|
122
|
+
this.$emit('input', val);
|
|
123
|
+
this.showOverlay && val && this.genOverlay() || this.removeOverlay();
|
|
124
|
+
this.$el.scrollTop = 0;
|
|
125
|
+
},
|
|
126
|
+
isMobile: function isMobile(val) {
|
|
127
|
+
!val && this.removeOverlay();
|
|
128
|
+
},
|
|
129
|
+
permanent: function permanent(val) {
|
|
130
|
+
this.$emit('input', val);
|
|
131
|
+
},
|
|
132
|
+
value: function value(val) {
|
|
133
|
+
if (this.permanent) return;
|
|
134
|
+
if (val !== this.isActive) this.isActive = val;
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
mounted: function mounted() {
|
|
139
|
+
this.$kdutify.load(this.init);
|
|
140
|
+
},
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
methods: {
|
|
144
|
+
init: function init() {
|
|
145
|
+
var _this = this;
|
|
146
|
+
|
|
147
|
+
if (this.value != null) this.isActive = this.value;else if (this.permanent) this.isActive = true;else if (this.isMobile) this.isActive = false;else if (!this.value && (this.persistent || this.temporary)) this.isActive = false;else this.isActive = true;
|
|
148
|
+
|
|
149
|
+
setTimeout(function () {
|
|
150
|
+
return _this.isBooted = true;
|
|
151
|
+
}, 0);
|
|
152
|
+
},
|
|
153
|
+
calculateTouchArea: function calculateTouchArea() {
|
|
154
|
+
if (!this.$el.parentNode) return;
|
|
155
|
+
var parentRect = this.$el.parentNode.getBoundingClientRect();
|
|
156
|
+
|
|
157
|
+
this.touchArea = {
|
|
158
|
+
left: parentRect.left + 50,
|
|
159
|
+
right: parentRect.right - 50
|
|
160
|
+
};
|
|
161
|
+
},
|
|
162
|
+
checkIfMobile: function checkIfMobile() {
|
|
163
|
+
this.isMobile = window.innerWidth < parseInt(this.mobileBreakPoint);
|
|
164
|
+
},
|
|
165
|
+
closeConditional: function closeConditional() {
|
|
166
|
+
return !this.permanent && (this.temporary || this.isMobile);
|
|
167
|
+
},
|
|
168
|
+
genDirectives: function genDirectives() {
|
|
169
|
+
var directives = [{
|
|
170
|
+
name: 'click-outside',
|
|
171
|
+
value: this.closeConditional
|
|
172
|
+
}, {
|
|
173
|
+
name: 'resize',
|
|
174
|
+
value: this.onResize
|
|
175
|
+
}];
|
|
176
|
+
|
|
177
|
+
!this.touchless && directives.push({
|
|
178
|
+
name: 'touch',
|
|
179
|
+
value: {
|
|
180
|
+
parent: true,
|
|
181
|
+
left: this.swipeLeft,
|
|
182
|
+
right: this.swipeRight
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
return directives;
|
|
187
|
+
},
|
|
188
|
+
onResize: function onResize() {
|
|
189
|
+
if (!this.enableResizeWatcher || this.permanent || this.temporary) return;
|
|
190
|
+
|
|
191
|
+
this.checkIfMobile();
|
|
192
|
+
|
|
193
|
+
this.isActive = !this.isMobile;
|
|
194
|
+
},
|
|
195
|
+
swipeRight: function swipeRight(e) {
|
|
196
|
+
if (this.isActive && !this.right) return;
|
|
197
|
+
this.calculateTouchArea();
|
|
198
|
+
|
|
199
|
+
if (Math.abs(e.touchendX - e.touchstartX) < 100) return;else if (!this.right && e.touchstartX <= this.touchArea.left) this.isActive = true;else if (this.right && this.isActive) this.isActive = false;
|
|
200
|
+
},
|
|
201
|
+
swipeLeft: function swipeLeft(e) {
|
|
202
|
+
if (this.isActive && this.right) return;
|
|
203
|
+
this.calculateTouchArea();
|
|
204
|
+
|
|
205
|
+
if (Math.abs(e.touchendX - e.touchstartX) < 100) return;else if (this.right && e.touchstartX >= this.touchArea.right) this.isActive = true;else if (!this.right && this.isActive) this.isActive = false;
|
|
206
|
+
},
|
|
207
|
+
updateApplication: function updateApplication() {
|
|
208
|
+
if (!this.app) return;
|
|
209
|
+
|
|
210
|
+
var width = !this.isActive || !this.isBooted || !this.permanent && this.$kdutify.breakpoint.width < this.mobileBreakPoint ? 0 : this.calculatedWidth;
|
|
211
|
+
|
|
212
|
+
if (this.right) {
|
|
213
|
+
this.$kdutify.application.right = width;
|
|
214
|
+
} else {
|
|
215
|
+
this.$kdutify.application.left = width;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
|
|
220
|
+
render: function render(h) {
|
|
221
|
+
var _this2 = this;
|
|
222
|
+
|
|
223
|
+
this.updateApplication();
|
|
224
|
+
|
|
225
|
+
var data = {
|
|
226
|
+
'class': this.classes,
|
|
227
|
+
style: this.styles,
|
|
228
|
+
directives: this.genDirectives(),
|
|
229
|
+
on: {
|
|
230
|
+
click: function click() {
|
|
231
|
+
return _this2.$emit('update:miniVariant', false);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
return h('aside', data, [this.$slots.default, h('div', { 'class': 'navigation-drawer__border' })]);
|
|
237
|
+
}
|
|
238
|
+
};
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
|
2
|
+
|
|
3
|
+
require('../../../src/stylus/components/_pagination.styl');
|
|
4
|
+
|
|
5
|
+
import KIcon from '../KIcon';
|
|
6
|
+
|
|
7
|
+
import Resize from '../../directives/resize';
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
name: 'k-pagination',
|
|
11
|
+
|
|
12
|
+
directives: { Resize: Resize },
|
|
13
|
+
|
|
14
|
+
props: {
|
|
15
|
+
circle: Boolean,
|
|
16
|
+
disabled: Boolean,
|
|
17
|
+
length: {
|
|
18
|
+
type: Number,
|
|
19
|
+
default: 0,
|
|
20
|
+
validator: function validator(val) {
|
|
21
|
+
return val % 1 === 0;
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
totalVisible: [Number, String],
|
|
25
|
+
nextIcon: {
|
|
26
|
+
type: String,
|
|
27
|
+
default: 'chevron_right'
|
|
28
|
+
},
|
|
29
|
+
prevIcon: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: 'chevron_left'
|
|
32
|
+
},
|
|
33
|
+
value: {
|
|
34
|
+
type: Number,
|
|
35
|
+
default: 0
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
data: function data() {
|
|
40
|
+
return {
|
|
41
|
+
maxButtons: 0
|
|
42
|
+
};
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
watch: {
|
|
47
|
+
value: function value() {
|
|
48
|
+
this.init();
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
computed: {
|
|
53
|
+
classes: function classes() {
|
|
54
|
+
return {
|
|
55
|
+
'pagination': true,
|
|
56
|
+
'pagination--circle': this.circle,
|
|
57
|
+
'pagination--disabled': this.disabled
|
|
58
|
+
};
|
|
59
|
+
},
|
|
60
|
+
items: function items() {
|
|
61
|
+
var maxLength = this.totalVisible || this.maxButtons;
|
|
62
|
+
if (this.length <= maxLength) {
|
|
63
|
+
return this.range(1, this.length);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
var even = maxLength % 2 === 0 ? 1 : 0;
|
|
67
|
+
var left = Math.floor(maxLength / 2);
|
|
68
|
+
var right = this.length - left + 1 + even;
|
|
69
|
+
|
|
70
|
+
if (this.value >= left && this.value <= right) {
|
|
71
|
+
var start = this.value - left + 2;
|
|
72
|
+
var end = this.value + left - 2 - even;
|
|
73
|
+
|
|
74
|
+
return [1, '...'].concat(_toConsumableArray(this.range(start, end)), ['...', this.length]);
|
|
75
|
+
} else {
|
|
76
|
+
return [].concat(_toConsumableArray(this.range(1, left)), ['...'], _toConsumableArray(this.range(this.length - left + 1 + even, this.length)));
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
mounted: function mounted() {
|
|
82
|
+
this.$kdutify.load.call(this, this.init);
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
methods: {
|
|
87
|
+
onResize: function onResize() {
|
|
88
|
+
var width = this.$el && this.$el.parentNode ? this.$el.parentNode.clientWidth : window.innerWidth;
|
|
89
|
+
|
|
90
|
+
this.maxButtons = Math.floor((width - 96) / 42);
|
|
91
|
+
},
|
|
92
|
+
init: function init() {
|
|
93
|
+
var _this = this;
|
|
94
|
+
|
|
95
|
+
this.selected = null;
|
|
96
|
+
|
|
97
|
+
// Change this
|
|
98
|
+
setTimeout(function () {
|
|
99
|
+
return _this.selected = _this.value;
|
|
100
|
+
}, 100);
|
|
101
|
+
},
|
|
102
|
+
next: function next(e) {
|
|
103
|
+
e.preventDefault();
|
|
104
|
+
this.$emit('input', this.value + 1);
|
|
105
|
+
this.$emit('next');
|
|
106
|
+
},
|
|
107
|
+
previous: function previous(e) {
|
|
108
|
+
e.preventDefault();
|
|
109
|
+
this.$emit('input', this.value - 1);
|
|
110
|
+
this.$emit('previous');
|
|
111
|
+
},
|
|
112
|
+
range: function range(from, to) {
|
|
113
|
+
var range = [];
|
|
114
|
+
|
|
115
|
+
from = from > 0 ? from : 1;
|
|
116
|
+
|
|
117
|
+
for (var i = from; i <= to; i++) {
|
|
118
|
+
range.push(i);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
return range;
|
|
122
|
+
},
|
|
123
|
+
genIcon: function genIcon(h, icon, disabled, fn) {
|
|
124
|
+
return h('li', [h('a', {
|
|
125
|
+
class: {
|
|
126
|
+
'pagination__navigation': true,
|
|
127
|
+
'pagination__navigation--disabled': disabled
|
|
128
|
+
},
|
|
129
|
+
attrs: { href: '#!' },
|
|
130
|
+
on: { click: fn }
|
|
131
|
+
}, [h(KIcon, [icon])])]);
|
|
132
|
+
},
|
|
133
|
+
genItem: function genItem(h, i) {
|
|
134
|
+
var _this2 = this;
|
|
135
|
+
|
|
136
|
+
return h('a', {
|
|
137
|
+
class: {
|
|
138
|
+
'pagination__item': true,
|
|
139
|
+
'pagination__item--active': i === this.value
|
|
140
|
+
},
|
|
141
|
+
attrs: { href: '#!' },
|
|
142
|
+
on: {
|
|
143
|
+
click: function click(e) {
|
|
144
|
+
e.preventDefault();
|
|
145
|
+
_this2.$emit('input', i);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}, [i]);
|
|
149
|
+
},
|
|
150
|
+
genItems: function genItems(h) {
|
|
151
|
+
var _this3 = this;
|
|
152
|
+
|
|
153
|
+
return this.items.map(function (i) {
|
|
154
|
+
return h('li', [isNaN(i) && h('span', { class: 'pagination__more' }, [i]) || _this3.genItem(h, i)]);
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
|
|
159
|
+
render: function render(h) {
|
|
160
|
+
var children = [this.genIcon(h, this.prevIcon, this.value === 1, this.previous), this.genItems(h), this.genIcon(h, this.nextIcon, this.value === this.length, this.next)];
|
|
161
|
+
|
|
162
|
+
return h('ul', {
|
|
163
|
+
directives: [{ name: 'resize', value: this.onResize }],
|
|
164
|
+
class: this.classes
|
|
165
|
+
}, children);
|
|
166
|
+
}
|
|
167
|
+
};
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
require('../../../src/stylus/components/_parallax.styl');
|
|
2
|
+
|
|
3
|
+
import Translatable from '../../mixins/translatable';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
name: 'k-parallax',
|
|
7
|
+
|
|
8
|
+
mixins: [Translatable],
|
|
9
|
+
|
|
10
|
+
data: function data() {
|
|
11
|
+
return {
|
|
12
|
+
isBooted: false
|
|
13
|
+
};
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
props: {
|
|
18
|
+
alt: String,
|
|
19
|
+
height: {
|
|
20
|
+
type: [String, Number],
|
|
21
|
+
default: 500
|
|
22
|
+
},
|
|
23
|
+
jumbotron: Boolean,
|
|
24
|
+
src: String
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
computed: {
|
|
28
|
+
styles: function styles() {
|
|
29
|
+
return {
|
|
30
|
+
display: 'block',
|
|
31
|
+
opacity: this.isBooted ? 1 : 0,
|
|
32
|
+
transform: 'translate3d(-50%, ' + (this.jumbotron ? 0 : this.parallax + 'px') + ', 0)'
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
watch: {
|
|
38
|
+
parallax: function parallax() {
|
|
39
|
+
this.isBooted = true;
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
methods: {
|
|
44
|
+
init: function init() {
|
|
45
|
+
var _this = this;
|
|
46
|
+
|
|
47
|
+
if (!this.$refs.img) return;
|
|
48
|
+
|
|
49
|
+
if (this.$refs.img.complete) {
|
|
50
|
+
this.translate();
|
|
51
|
+
this.listeners();
|
|
52
|
+
} else {
|
|
53
|
+
this.$refs.img.addEventListener('load', function () {
|
|
54
|
+
_this.translate();
|
|
55
|
+
_this.listeners();
|
|
56
|
+
}, false);
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
objHeight: function objHeight() {
|
|
60
|
+
return this.$refs.img.naturalHeight;
|
|
61
|
+
},
|
|
62
|
+
elOffsetTop: function elOffsetTop() {
|
|
63
|
+
return this.$el.offsetTop;
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
render: function render(h) {
|
|
68
|
+
var imgData = {
|
|
69
|
+
staticClass: 'parallax__image',
|
|
70
|
+
'class': {
|
|
71
|
+
'parallax__image--jumbotron': this.jumbotron
|
|
72
|
+
},
|
|
73
|
+
style: this.styles,
|
|
74
|
+
attrs: {
|
|
75
|
+
src: this.src
|
|
76
|
+
},
|
|
77
|
+
ref: 'img'
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
if (this.alt) imgData.attrs.alt = this.alt;
|
|
81
|
+
|
|
82
|
+
var container = h('div', {
|
|
83
|
+
staticClass: 'parallax__image-container'
|
|
84
|
+
}, [h('img', imgData)]);
|
|
85
|
+
|
|
86
|
+
var content = h('div', {
|
|
87
|
+
staticClass: 'parallax__content'
|
|
88
|
+
}, this.$slots.default);
|
|
89
|
+
|
|
90
|
+
return h('div', {
|
|
91
|
+
staticClass: 'parallax',
|
|
92
|
+
style: {
|
|
93
|
+
height: this.jumbotron ? this.normalizedHeight : this.normalizedHeight + 'px'
|
|
94
|
+
},
|
|
95
|
+
on: this.$listeners
|
|
96
|
+
}, [container, content]);
|
|
97
|
+
}
|
|
98
|
+
};
|