@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 +1 -1
- package/dist/runtime/components/argHomeAllBlocks.vue +12 -1
- package/dist/runtime/components/argHomeAllBlocks.vue.d.ts +1 -0
- package/dist/runtime/components/argScopeManage.vue +8 -1
- package/dist/runtime/components/argScopeManage.vue.d.ts +9 -0
- package/package.json +1 -1
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,
|
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
<div class="arg_scope_manage_modal">
|
|
5
5
|
<div class="arg_scope_manage_header">
|
|
6
6
|
<h1>
|
|
7
|
-
{{
|
|
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;
|