@redseed/redseed-ui-vue3 8.33.2 → 8.33.3
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
|
@@ -108,12 +108,6 @@ function handleMoreActionsClick() {
|
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
</div>
|
|
111
|
-
<!-- Badge slot, optional -->
|
|
112
|
-
<div class="rsui-card-header__badge"
|
|
113
|
-
v-if="showBadge && $slots.badge"
|
|
114
|
-
>
|
|
115
|
-
<slot name="badge"></slot>
|
|
116
|
-
</div>
|
|
117
111
|
<!-- Subtitle slot, optional -->
|
|
118
112
|
<div :class="[
|
|
119
113
|
'rsui-card-header__subtitle',
|
|
@@ -125,6 +119,13 @@ function handleMoreActionsClick() {
|
|
|
125
119
|
>
|
|
126
120
|
<slot name="subtitle"></slot>
|
|
127
121
|
</div>
|
|
122
|
+
|
|
123
|
+
<!-- Badge slot, optional -->
|
|
124
|
+
<div class="rsui-card-header__badge"
|
|
125
|
+
v-if="showBadge && $slots.badge"
|
|
126
|
+
>
|
|
127
|
+
<slot name="badge"></slot>
|
|
128
|
+
</div>
|
|
128
129
|
</div>
|
|
129
130
|
|
|
130
131
|
<!-- Actions slot, optional -->
|