@tekkare/auriga 0.2.143 → 0.2.145

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.145"
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;
@@ -4,7 +4,13 @@
4
4
  <div class="arg_scope_manage_modal">
5
5
  <div class="arg_scope_manage_header">
6
6
  <h1>
7
- {{ isScenario ? "Manage my scenarios" : langData?.title }}
7
+ {{
8
+ isScenario
9
+ ? "Manage my scenarios"
10
+ : isGroups
11
+ ? "Manage my custom groups"
12
+ : langData?.title
13
+ }}
8
14
  </h1>
9
15
  <div class="cursor-pointer" @click="closeManageScope()">
10
16
  <arg-icon name="X" size="16" color="var(--dark)" />
@@ -131,6 +137,7 @@ export default defineComponent({
131
137
  default: false
132
138
  },
133
139
  isScenario: { type: Boolean, default: false },
140
+ isGroups: { type: Boolean, default: false },
134
141
  customDisplay: { type: Boolean, default: false }
135
142
  },
136
143
  emits: ["onDelete", "onClose"],
@@ -16,6 +16,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
16
16
  type: BooleanConstructor;
17
17
  default: boolean;
18
18
  };
19
+ isGroups: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
19
23
  customDisplay: {
20
24
  type: BooleanConstructor;
21
25
  default: boolean;
@@ -45,6 +49,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
45
49
  type: BooleanConstructor;
46
50
  default: boolean;
47
51
  };
52
+ isGroups: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
48
56
  customDisplay: {
49
57
  type: BooleanConstructor;
50
58
  default: boolean;
@@ -56,6 +64,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
56
64
  lang: string;
57
65
  isScenario: boolean;
58
66
  reloadingScopes: boolean;
67
+ isGroups: boolean;
59
68
  customDisplay: boolean;
60
69
  }, {}, {
61
70
  argBtn: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.143",
3
+ "version": "0.2.145",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",