Skip to content

Commit 0869a6e

Browse files
authored
1.0.0 (#31)
## 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 `matcher` now. - Rename `registerComponents` to `registerComponent` - Added `accessorName` option to change `$vueLoading` key. - Removed `createActionHelpers`, use `mapLoadingActions` or `wrapLoading` instead. - Added some useful directives.
1 parent 7bfa857 commit 0869a6e

29 files changed

+3357
-15390
lines changed

.babelrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"presets": ["es2015", "stage-2"],
3-
"plugins": ["transform-runtime"],
2+
"presets": ["@babel/preset-env"],
3+
"plugins": ["@babel/plugin-transform-runtime"],
44
"comments": false
55
}

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22

33
node_js:
4-
- 5
4+
- 10
55

66
cache: yarn

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# vuex-loading changelog
22

3-
## UNRELEASED
3+
## v1.0.0
4+
5+
- A complete rewrite, more extensible.
6+
- Readable and better code.
7+
- Update to Webpack 4
8+
- Remove built-in loaders. Maybe we can create another repository including custom spinners.
9+
- Remove `width` and `height` props.
10+
- Strict props.
11+
- `isLoading` supports matchers now `creating.*`, `!creating` etc. Please see [/sindresorhus/matcher](/sindresorhus/matcher).
12+
- Rename `registerComponents` to `registerComponent`
13+
- Added `accessorName` option to change `$vueLoading` key.
14+
- Removed `createActionHelpers`, use `mapLoadingActions` or `wrapLoading` instead.
15+
- Added `v-loading:visible`, `v-loading:hidden`, `v-loading:disabled`, `v-loading:enabled`, `v-loading:click` directives.
16+
17+
## v0.4.0
418

519
- rename v-loading slot `spinner` to `loading` #30
620
- added `wrapLoading` helper function for easy integration of vuex-loading in vue component methods #30

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016-2017 Fatih Kadir Akın <[email protected]>
3+
Copyright (c) 2018 Fatih Kadir Akın <[email protected]>
44

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

0 commit comments

Comments
 (0)