@redseed/redseed-ui-vue3 5.4.10 → 5.4.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redseed/redseed-ui-vue3",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.12",
|
|
4
4
|
"description": "RedSeed UI Vue 3 components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": "https://github.com/redseedtraining/redseed-ui",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"license": "ISC",
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@heroicons/vue": "^2.2.0",
|
|
15
|
-
"@vueuse/components": "^13.
|
|
16
|
-
"@vueuse/core": "^13.
|
|
15
|
+
"@vueuse/components": "^13.5.0",
|
|
16
|
+
"@vueuse/core": "^13.5.0",
|
|
17
17
|
"lodash": "^4.17.21",
|
|
18
|
-
"lottie-web": "^5.
|
|
19
|
-
"vue": "^3.5.
|
|
18
|
+
"lottie-web": "^5.13.0",
|
|
19
|
+
"vue": "^3.5.17"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -52,16 +52,13 @@ const emit = defineEmits(['click:more-actions'])
|
|
|
52
52
|
<div class="rsui-section-header__text">
|
|
53
53
|
|
|
54
54
|
<!-- Title slot, default slot -->
|
|
55
|
-
<div class="rsui-section-header__title"
|
|
56
|
-
:title="$slots.default ? $slots.default()[0].children : ''"
|
|
57
|
-
>
|
|
55
|
+
<div class="rsui-section-header__title">
|
|
58
56
|
<slot></slot>
|
|
59
57
|
</div>
|
|
60
58
|
|
|
61
59
|
<!-- Subtitle slot, optional -->
|
|
62
|
-
<div
|
|
63
|
-
|
|
64
|
-
:title="$slots.subtitle ? $slots.subtitle()[0].children : ''"
|
|
60
|
+
<div v-if="showSubtitle && $slots.subtitle"
|
|
61
|
+
class="rsui-section-header__subtitle"
|
|
65
62
|
>
|
|
66
63
|
<slot name="subtitle"></slot>
|
|
67
64
|
</div>
|