@tak-ps/vue-tabler 3.79.0 → 3.79.1

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/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v3.79.1
14
+
15
+ - :rocket: Fix a bunch of lints the new setup syntax uncovered
16
+
13
17
  ### v3.79.0
14
18
 
15
19
  - :tada: Migrate all components to `<script setup>`
@@ -1,29 +1,34 @@
1
1
  <template>
2
2
  <div
3
- class="hover-expandable rounded position-relative px-2 py-2"
4
- :class="{ 'is-expanded': isExpanded }"
3
+ class='hover-expandable rounded position-relative px-2 py-2'
4
+ :class='{ &apos;is-expanded&apos;: isExpanded }'
5
5
  >
6
-
7
- <div class='mb-2'>
8
- <slot/>
9
- </div>
10
-
11
- <div class="expandable-content-wrapper" ref="contentWrapperRef">
12
- <div class="expandable-content-inner p-3">
13
- <slot name="expanded"></slot>
14
- </div>
6
+ <div class='mb-2'>
7
+ <slot />
8
+ </div>
9
+
10
+ <div
11
+ ref='contentWrapperRef'
12
+ class='expandable-content-wrapper'
13
+ >
14
+ <div class='expandable-content-inner p-3'>
15
+ <slot name='expanded' />
16
+ </div>
17
+ </div>
18
+
19
+ <div
20
+ class='arrow-container'
21
+ title='Toggle content'
22
+ @click='toggle'
23
+ >
24
+ <IconChevronDown
25
+ size='24'
26
+ stroke='1.5'
27
+ class='arrow'
28
+ :class='{ &apos;expanded&apos;: isExpanded }'
29
+ />
30
+ </div>
15
31
  </div>
16
-
17
- <div class="arrow-container" @click="toggle" title="Toggle content">
18
- <IconChevronDown
19
- size="24"
20
- stroke="1.5"
21
- class='arrow'
22
- :class="{ 'expanded': isExpanded }"
23
- />
24
- </div>
25
-
26
- </div>
27
32
  </template>
28
33
 
29
34
  <script setup>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.79.0",
4
+ "version": "3.79.1",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",