@tak-ps/vue-tabler 2.2.2 → 2.2.5
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/.github/workflows/release.yml +29 -0
- package/CHANGELOG.md +12 -0
- package/components/List.vue +2 -1
- package/package.json +1 -1
- package/package-lock.json +0 -17989
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: NPM Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
|
+
|
|
14
|
+
- name: Get tag
|
|
15
|
+
id: tag
|
|
16
|
+
uses: dawidd6/action-get-tag@v1
|
|
17
|
+
|
|
18
|
+
- uses: actions/setup-node@v3
|
|
19
|
+
with:
|
|
20
|
+
node-version: 18
|
|
21
|
+
registry-url: https://registry.npmjs.org/
|
|
22
|
+
|
|
23
|
+
- name: npm install
|
|
24
|
+
run: npm install
|
|
25
|
+
|
|
26
|
+
- name: npm publish
|
|
27
|
+
run: npm publish
|
|
28
|
+
env:
|
|
29
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v2.2.5
|
|
14
|
+
|
|
15
|
+
- :tada: Add GH AutoReleaser
|
|
16
|
+
|
|
17
|
+
### v2.2.4
|
|
18
|
+
|
|
19
|
+
- :bug: TablerList: Async Call
|
|
20
|
+
|
|
21
|
+
### v2.2.3
|
|
22
|
+
|
|
23
|
+
- :bug: TablerList: Prepopulate list
|
|
24
|
+
|
|
13
25
|
### v2.2.2
|
|
14
26
|
|
|
15
27
|
- :bug: TablerList: Only update filter if namekey is present
|
package/components/List.vue
CHANGED
|
@@ -51,8 +51,9 @@ export default {
|
|
|
51
51
|
mounted: async function() {
|
|
52
52
|
await this.fetchList();
|
|
53
53
|
},
|
|
54
|
-
mounted: function() {
|
|
54
|
+
mounted: async function() {
|
|
55
55
|
if (this.initial && this.initial[this.namekey]) this.filter = this.initial[this.namekey];
|
|
56
|
+
await this.fetchlist();
|
|
56
57
|
},
|
|
57
58
|
methods: {
|
|
58
59
|
select: function(ele) {
|