@tekkare/auriga 0.2.144 → 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.144"
7
+ "version": "0.2.145"
8
8
  }
@@ -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.144",
3
+ "version": "0.2.145",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",