@tekkare/auriga 0.1.39 → 0.1.40

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.1.39"
7
+ "version": "0.1.40"
8
8
  }
@@ -652,6 +652,7 @@ export default defineComponent({
652
652
  display: flex;
653
653
  align-items: center;
654
654
  height: 14px;
655
+ cursor: pointer;
655
656
  }
656
657
  .prmt_chart_source a {
657
658
  color: #2176ff;
@@ -23,7 +23,31 @@
23
23
  </div>
24
24
  <p class="theme_descr">{{ selected.description }}</p>
25
25
  </div>
26
- <slot name="links" />
26
+ <div>
27
+ <div v-for="(item, index) in selected.links" :key="index">
28
+ <arg-sub-menu
29
+ v-if="item.subLinks"
30
+ sidebar-open
31
+ :label="item.linkName"
32
+ >
33
+ <arg-menu-item
34
+ v-for="(subLink, subIndex) in item.subLinks"
35
+ :key="subIndex"
36
+ sidebar-open
37
+ :label="subLink.name"
38
+ :to="subLink.to"
39
+ :icon="subLink.icon"
40
+ />
41
+ </arg-sub-menu>
42
+ <arg-menu-item
43
+ v-else
44
+ sidebar-open
45
+ :label="item.linkName"
46
+ :to="item.linkUrl"
47
+ :icon="item.linkLogo"
48
+ />
49
+ </div>
50
+ </div>
27
51
  </div>
28
52
  </div>
29
53
  </template>
@@ -136,7 +136,7 @@ export default defineComponent({
136
136
  .arg_no_scope_display {
137
137
  height: 100%;
138
138
  width: 100%;
139
- margin-top: 80px;
139
+ margin: 80px 32px 0px 32px;
140
140
  display: flex;
141
141
  align-items: center;
142
142
  justify-content: center;
@@ -0,0 +1,41 @@
1
+ <template>
2
+ <div class="criteria_section">
3
+ <p class="arg_scope_label">Scope applied:</p>
4
+ <p class="arg_scope">
5
+ {{ selected !== null ? selected : "Custom" }}
6
+ </p>
7
+ </div>
8
+ </template>
9
+
10
+ <script>
11
+ import {
12
+ defineComponent
13
+ } from "vue";
14
+ export default defineComponent({
15
+ name: "argScopeCriteriaIndicator",
16
+ props: {
17
+ selected: {
18
+ type: Object,
19
+ default: null
20
+ }
21
+ }
22
+ });
23
+ </script>
24
+
25
+ <style scoped>
26
+ .arg_scope {
27
+ font-size: 14px;
28
+ font-style: normal;
29
+ font-weight: 600;
30
+ line-height: normal;
31
+ color: #525670;
32
+ }
33
+
34
+ .arg_scope_label {
35
+ font-size: 12px;
36
+ font-style: normal;
37
+ font-weight: 400;
38
+ line-height: normal;
39
+ color: #1e293b;
40
+ }
41
+ </style>
@@ -0,0 +1,14 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ selected: {
3
+ type: ObjectConstructor;
4
+ default: null;
5
+ };
6
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ selected: {
8
+ type: ObjectConstructor;
9
+ default: null;
10
+ };
11
+ }>>, {
12
+ selected: Record<string, any>;
13
+ }, {}>;
14
+ export default _default;
@@ -219,6 +219,7 @@ export default defineComponent({
219
219
  .footer_action {
220
220
  width: 50%;
221
221
  flex: 1 1 0;
222
+ display: flex;
222
223
  }
223
224
 
224
225
  .arg_save_header > h1 {
@@ -118,25 +118,32 @@ button {
118
118
  }
119
119
  .oip_container {
120
120
  margin: 0 auto;
121
- padding-right: 62px;
121
+ padding-right: 58px;
122
122
  max-width: 1080px;
123
123
  }
124
124
 
125
125
  .arg_page_display {
126
126
  display: flex;
127
127
  flex-direction: column;
128
- align-items: flex-start;
128
+ align-items: center;
129
129
  gap: 32px;
130
130
  align-self: stretch;
131
131
  }
132
132
  .arg_page_content {
133
133
  display: flex;
134
134
  flex-direction: column;
135
- align-items: flex-start;
135
+ align-items: center;
136
136
  gap: 32px;
137
137
  align-self: stretch;
138
138
  padding: 0px 24px;
139
139
  }
140
+ .arg_scope_page_content {
141
+ display: flex;
142
+ flex-direction: column;
143
+ align-items: flex-start;
144
+ gap: 32px;
145
+ width: 100%;
146
+ }
140
147
 
141
148
  .oip_filter_display {
142
149
  display: flex;
@@ -90,6 +90,7 @@ export default defineComponent({
90
90
  font-weight: 400;
91
91
  line-height: 160%;
92
92
  transition: all ease 0.5s;
93
+ align-self: stretch;
93
94
  }
94
95
 
95
96
  .arg_tips_open {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",