@tak-ps/vue-tabler 3.85.0 → 3.87.4
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 +20 -20
- package/CHANGELOG.md +24 -0
- package/components/Modal.vue +11 -2
- package/components/input/Input.vue +3 -1
- package/package.json +2 -2
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
name: NPM Release
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC
|
|
10
|
+
contents: read
|
|
7
11
|
|
|
8
12
|
jobs:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
build:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
13
17
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
- uses: actions/setup-node@v6
|
|
19
|
+
with:
|
|
20
|
+
node-version: 22
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
node-version: 18
|
|
21
|
-
registry-url: https://registry.npmjs.org/
|
|
22
|
+
- name: Update npm
|
|
23
|
+
run: npm install -g npm@latest
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
- name: npm install
|
|
26
|
+
run: npm install
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
env:
|
|
29
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
28
|
+
- name: npm publish
|
|
29
|
+
run: npm publish --provenance --access public
|
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,30 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v3.87.4
|
|
14
|
+
|
|
15
|
+
- :rocket: Continue iterating on adding npm Trusted Publisher
|
|
16
|
+
|
|
17
|
+
### v3.87.3
|
|
18
|
+
|
|
19
|
+
- :rocket: Add npm Trusted Publisher
|
|
20
|
+
|
|
21
|
+
### v3.87.2
|
|
22
|
+
|
|
23
|
+
- :rocket: Add npm Trusted Publisher
|
|
24
|
+
|
|
25
|
+
### v3.87.1
|
|
26
|
+
|
|
27
|
+
- :rocket: Add npm Trusted Publisher
|
|
28
|
+
|
|
29
|
+
### v3.87.0
|
|
30
|
+
|
|
31
|
+
- :rocket: Improvements to AutoFocus on Input
|
|
32
|
+
|
|
33
|
+
### v3.86.0
|
|
34
|
+
|
|
35
|
+
- :rocket: Allow disabling Fade Transition on Modal
|
|
36
|
+
|
|
13
37
|
### v3.85.0
|
|
14
38
|
|
|
15
39
|
- :rocket: Show time in localtime by default in Epoch Component
|
package/components/Modal.vue
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<teleport to='body'>
|
|
3
|
-
<Transition
|
|
3
|
+
<Transition
|
|
4
|
+
:name='fade ? "modal-fade" : ""'
|
|
5
|
+
:appear='fade'
|
|
6
|
+
:css='fade'
|
|
7
|
+
>
|
|
4
8
|
<div
|
|
5
9
|
ref='modal'
|
|
6
|
-
class='modal modal-blur
|
|
10
|
+
class='modal modal-blur show'
|
|
11
|
+
:class='{ "fade": fade }'
|
|
7
12
|
tabindex='-1'
|
|
8
13
|
style='display: block;'
|
|
9
14
|
aria-modal='true'
|
|
@@ -36,6 +41,10 @@ defineProps({
|
|
|
36
41
|
// sm, md, lg, xl
|
|
37
42
|
type: String,
|
|
38
43
|
default: 'sm'
|
|
44
|
+
},
|
|
45
|
+
fade: {
|
|
46
|
+
type: Boolean,
|
|
47
|
+
default: true
|
|
39
48
|
}
|
|
40
49
|
})
|
|
41
50
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/vue-tabler",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.87.4",
|
|
5
5
|
"lib": "lib.js",
|
|
6
6
|
"main": "lib.js",
|
|
7
7
|
"module": "lib.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "
|
|
18
|
+
"url": "https://github.com/dfpc-coe/vue-tabler"
|
|
19
19
|
},
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "ISC",
|