@tak-ps/vue-tabler 2.2.3 → 2.2.6

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.
@@ -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.6
14
+
15
+ - :tada: Bump GH Actions
16
+
17
+ ### v2.2.5
18
+
19
+ - :tada: Add GH AutoReleaser
20
+
21
+ ### v2.2.4
22
+
23
+ - :bug: TablerList: Async Call
24
+
13
25
  ### v2.2.3
14
26
 
15
27
  - :bug: TablerList: Prepopulate list
@@ -49,11 +49,8 @@ export default {
49
49
  }
50
50
  },
51
51
  mounted: async function() {
52
- await this.fetchList();
53
- },
54
- mounted: function() {
55
52
  if (this.initial && this.initial[this.namekey]) this.filter = this.initial[this.namekey];
56
- await this.fetchlist();
53
+ await this.fetchList();
57
54
  },
58
55
  methods: {
59
56
  select: function(ele) {
@@ -9,7 +9,7 @@
9
9
  <div v-if='desc && desc.length' class='mx-3 align-self-center' v-text='desc'></div>
10
10
  </div>
11
11
  </template>
12
- <template v-else='inline'>
12
+ <template v-else>
13
13
  <div class='d-flex justify-content-center my-4'>
14
14
  <div class="spinner-border" role="status"></div>
15
15
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "2.2.3",
4
+ "version": "2.2.6",
5
5
  "main": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",