@tekkare/auriga 0.2.143 → 0.2.144
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/dist/module.json
CHANGED
|
@@ -102,6 +102,12 @@
|
|
|
102
102
|
class="oip_row v-center space-between full_stretch card_head"
|
|
103
103
|
>
|
|
104
104
|
<p class="block_title">
|
|
105
|
+
<arg-tags
|
|
106
|
+
v-if="block.new && block.tag"
|
|
107
|
+
set-style="emerald"
|
|
108
|
+
>{{ block.tag }}</arg-tags
|
|
109
|
+
>
|
|
110
|
+
|
|
105
111
|
<span v-if="block.country"
|
|
106
112
|
><arg-flag
|
|
107
113
|
v-if="block.iso"
|
|
@@ -170,6 +176,10 @@
|
|
|
170
176
|
<div v-else class="block_content">
|
|
171
177
|
<div class="oip_row v-center space-between full_stretch card_head">
|
|
172
178
|
<p class="block_title">
|
|
179
|
+
<arg-tags v-if="block.new && block.tag" set-style="emerald">{{
|
|
180
|
+
block.tag
|
|
181
|
+
}}</arg-tags>
|
|
182
|
+
|
|
173
183
|
<span v-if="block.country"
|
|
174
184
|
><arg-flag
|
|
175
185
|
v-if="block.iso"
|
|
@@ -224,9 +234,10 @@ import {
|
|
|
224
234
|
} from "vue";
|
|
225
235
|
import argSearchInput from "./argSearchInput.vue";
|
|
226
236
|
import argFlag from "./argFlag.vue";
|
|
237
|
+
import argTags from "./argTags.vue";
|
|
227
238
|
export default defineComponent({
|
|
228
239
|
name: "argHomeAllBlocks",
|
|
229
|
-
components: { argSearchInput, argFlag },
|
|
240
|
+
components: { argSearchInput, argFlag, argTags },
|
|
230
241
|
props: {
|
|
231
242
|
title: {
|
|
232
243
|
type: String,
|