Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into #434/tab-index-not-working-on-authenticat…
Browse files Browse the repository at this point in the history
…ion-modals
  • Loading branch information
ymaheshwari1 authored Apr 15, 2021
2 parents 68b775b + bedc696 commit dd0a7b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.5] - UNRELEASED

## [1.0.5] - ???

### Added
- Added `VueObserveVisibility` and `VueLazyload` dependency

### Changed / Improved
- Updated: code to make the tab index work on the authentication modals(#434)


## [1.0.4] - 04.01.2020

### Added
Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import App from './App';
import routes from './router';
import Vue from 'vue';
import VueProgressBar from 'vue-progressbar';
import VueLazyload from 'vue-lazyload';
import VueObserveVisibility from 'vue-observe-visibility';
import '@vue-storefront/core/lib/passive-listeners';
import { once } from '@vue-storefront/core/helpers';
import { module as cartModule } from './store/cart';
Expand All @@ -17,6 +19,8 @@ import { StorageManager } from '@vue-storefront/core/lib/storage-manager';

once('__VUE_EXTEND_DROPPOINT_VPB__', () => {
Vue.use(VueProgressBar);
Vue.use(VueLazyload, { attempt: 2, preLoad: 1.5 });
Vue.use(VueObserveVisibility);
});

const themeEntry = App;
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
"vue-offline": "^1.0.8",
"vue-progressbar": "^0.7.5",
"vuelidate": "0.6.2",
"vuex": "^3.0.1"
"vuex": "^3.0.1",
"vue-lazyload": "^1.3.3",
"vue-observe-visibility": "^0.4.1"
},
"devDependencies": {
"husky": "^3.1.0",
Expand Down

0 comments on commit dd0a7b9

Please sign in to comment.