@afeefa/vue-app 0.0.332 → 0.0.337

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.
@@ -1 +1 @@
1
- 0.0.332
1
+ 0.0.337
@@ -8,12 +8,13 @@ on:
8
8
  jobs:
9
9
  build:
10
10
  runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ id-token: write
11
14
  steps:
12
- - uses: actions/checkout@v2
13
- - uses: actions/setup-node@v2
15
+ - uses: actions/checkout@v6
16
+ - uses: actions/setup-node@v6
14
17
  with:
15
- node-version: '12.x'
18
+ node-version: '24'
16
19
  registry-url: 'https://registry.npmjs.org'
17
- - run: npm publish --access public
18
- env:
19
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
20
+ - run: npm publish --provenance --access public
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.332",
3
+ "version": "0.0.337",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/afeefacode/vue-app"
10
+ },
7
11
  "dependencies": {
8
12
  "moment": "^2.29.1",
9
13
  "vue-shortkey": "^3.1.7",
@@ -17,8 +17,8 @@
17
17
  </li>
18
18
 
19
19
  <li
20
- v-for="page in pageLinks"
21
- :key="page"
20
+ v-for="(page, index) in pageLinks"
21
+ :key="index"
22
22
  >
23
23
  <button
24
24
  v-if="page === '...'"
@@ -5,7 +5,9 @@
5
5
  :validator="validator"
6
6
  v-bind="$attrs"
7
7
  v-on="$listeners"
8
- />
8
+ >
9
+ <slot />
10
+ </a-checkbox>
9
11
  </template>
10
12
 
11
13
  <script>