Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"presets": ["es2015", "stage-2"],
"plugins": ["transform-runtime"],
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime"],
"comments": false
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js

node_js:
- 5
- 10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it compatible with Node 8?

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly yes. Not tested.


cache: yarn
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# vuex-loading changelog

## UNRELEASED
## v1.0.0

- A complete rewrite, more extensible.
- Readable and better code.
- Update to Webpack 4
- Remove built-in loaders. Maybe we can create another repository including custom spinners.
- Remove `width` and `height` props.
- Strict props.
- `isLoading` supports matchers now `creating.*`, `!creating` etc. Please see [/sindresorhus/matcher](/sindresorhus/matcher).
- Rename `registerComponents` to `registerComponent`
- Added `accessorName` option to change `$vueLoading` key.
- Removed `createActionHelpers`, use `mapLoadingActions` or `wrapLoading` instead.
- Added `v-loading:visible`, `v-loading:hidden`, `v-loading:disabled`, `v-loading:enabled`, `v-loading:click` directives.

## v0.4.0

- rename v-loading slot `spinner` to `loading` #30
- added `wrapLoading` helper function for easy integration of vuex-loading in vue component methods #30
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2017 Fatih Kadir Akın <fatihkadirakin@gmail.com>
Copyright (c) 2018 Fatih Kadir Akın <fatihkadirakin@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading