@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
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.143"
7
+ "version": "0.2.144"
8
8
  }
@@ -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,
@@ -137,5 +137,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
137
137
  }, {}, {
138
138
  argSearchInput: any;
139
139
  argFlag: any;
140
+ argTags: any;
140
141
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
141
142
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.143",
3
+ "version": "0.2.144",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",