@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.
@@ -1,29 +1,29 @@
1
1
  name: NPM Release
2
2
 
3
3
  on:
4
- push:
5
- tags:
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
- build:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: actions/checkout@v3
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
13
17
 
14
- - name: Get tag
15
- id: tag
16
- uses: dawidd6/action-get-tag@v1
18
+ - uses: actions/setup-node@v6
19
+ with:
20
+ node-version: 22
17
21
 
18
- - uses: actions/setup-node@v3
19
- with:
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
- - name: npm install
24
- run: npm install
25
+ - name: npm install
26
+ run: npm install
25
27
 
26
- - name: npm publish
27
- run: npm publish
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
@@ -1,9 +1,14 @@
1
1
  <template>
2
2
  <teleport to='body'>
3
- <Transition name='modal-fade' appear>
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 fade show'
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
 
@@ -277,7 +277,9 @@ watch(current, (newValue) => {
277
277
 
278
278
  onMounted(() => {
279
279
  if (props.autofocus) {
280
- textInput.value.focus()
280
+ setTimeout(() => {
281
+ if (textInput.value) textInput.value.focus()
282
+ }, 50)
281
283
  }
282
284
  })
283
285
  </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.85.0",
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": "git+https://github.com/tak-ps/vue-tabler.git"
18
+ "url": "https://github.com/dfpc-coe/vue-tabler"
19
19
  },
20
20
  "author": "",
21
21
  "license": "ISC",