@tekkare/auriga 0.1.8 → 0.1.9

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.
Files changed (42) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argActions.vue +120 -0
  3. package/dist/runtime/components/argActions.vue.d.ts +29 -0
  4. package/dist/runtime/components/argChart.vue +38 -4
  5. package/dist/runtime/components/argChartTableCard.vue +30 -0
  6. package/dist/runtime/components/argChartTableCard.vue.d.ts +2 -0
  7. package/dist/runtime/components/argCheckbox.vue +14 -6
  8. package/dist/runtime/components/argCheckbox.vue.d.ts +11 -2
  9. package/dist/runtime/components/argDataLoader.vue +13 -3
  10. package/dist/runtime/components/argDataLoader.vue.d.ts +22 -1
  11. package/dist/runtime/components/argFileBtn.vue.d.ts +2 -2
  12. package/dist/runtime/components/argFilterCard.vue +37 -8
  13. package/dist/runtime/components/argFilterCard.vue.d.ts +30 -1
  14. package/dist/runtime/components/argFilterTabs.vue +109 -0
  15. package/dist/runtime/components/argFilterTabs.vue.d.ts +64 -0
  16. package/dist/runtime/components/argFooter.vue +21 -20
  17. package/dist/runtime/components/argHeader.vue +8 -2
  18. package/dist/runtime/components/argHeader.vue.d.ts +9 -0
  19. package/dist/runtime/components/argInfoBar.vue +175 -0
  20. package/dist/runtime/components/argInfoBar.vue.d.ts +35 -0
  21. package/dist/runtime/components/argInfoSection.vue +265 -0
  22. package/dist/runtime/components/argInfoSection.vue.d.ts +55 -0
  23. package/dist/runtime/components/argMainLayout.vue +46 -21
  24. package/dist/runtime/components/argMainLayout.vue.d.ts +13 -1
  25. package/dist/runtime/components/argMenuItem.vue +44 -27
  26. package/dist/runtime/components/argMenuItem.vue.d.ts +11 -1
  27. package/dist/runtime/components/argMenuLink.vue +43 -20
  28. package/dist/runtime/components/argMenuLink.vue.d.ts +9 -0
  29. package/dist/runtime/components/argMultipleChoice.vue +25 -3
  30. package/dist/runtime/components/argMultipleSelect.vue +785 -0
  31. package/dist/runtime/components/argMultipleSelect.vue.d.ts +143 -0
  32. package/dist/runtime/components/argNavBar.vue +26 -12
  33. package/dist/runtime/components/argNavBar.vue.d.ts +11 -2
  34. package/dist/runtime/components/argRadioButtons.vue +134 -0
  35. package/dist/runtime/components/argRadioButtons.vue.d.ts +48 -0
  36. package/dist/runtime/components/argSidebar.vue +89 -9
  37. package/dist/runtime/components/argSidebar.vue.d.ts +8 -2
  38. package/dist/runtime/components/argStyle.vue +18 -2
  39. package/dist/runtime/components/argSubMenu.vue +79 -37
  40. package/dist/runtime/components/argSubMenu.vue.d.ts +9 -0
  41. package/dist/runtime/components/argTable.vue +14 -0
  42. package/package.json +1 -1
@@ -0,0 +1,265 @@
1
+ <template>
2
+ <div
3
+ class="info_main_container"
4
+ :class="infoOpen ? 'info_main_container_open' : ''"
5
+ >
6
+ <div class="oip_info_container">
7
+ <div v-if="infoOpen" class="oip_info_close" @click="closeInfo()">
8
+ <arg-icon name="X" size="20" />
9
+ <p>Close</p>
10
+ </div>
11
+ <div
12
+ class="oip_info_section"
13
+ :class="infoOpen ? 'oip_info_section_open' : 'oip_info_section'"
14
+ >
15
+ <div class="oip_info_sidebar">
16
+ <div
17
+ v-for="(item, index) in infoArray"
18
+ :key="index"
19
+ class="oip_info_menu"
20
+ :class="trueActiveMenu === item.name ? 'active_info_menu' : ''"
21
+ @click="openMenu(item.name)"
22
+ >
23
+ <div class="oip_row v-center gap-4">
24
+ <arg-icon
25
+ :name="item.icon"
26
+ size="20"
27
+ :color="trueActiveMenu === item.name ? '' : 'var(--cool-grey)'"
28
+ />
29
+ <p>{{ item.name }}</p>
30
+ </div>
31
+ <div
32
+ v-if="item.name === 'Sources' && sourceAmount > 0"
33
+ class="arg_source_amount"
34
+ >
35
+ {{ sourceAmount }}
36
+ </div>
37
+ </div>
38
+ </div>
39
+ <div class="oip_info_content">
40
+ <div
41
+ v-for="(item, index) in infoArray"
42
+ :key="index"
43
+ :class="trueActiveMenu === item.name ? '' : 'hide'"
44
+ >
45
+ <slot :name="item.name" />
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </template>
52
+
53
+ <script>
54
+ import {
55
+ onMounted,
56
+ ref,
57
+ defineComponent,
58
+ watch
59
+ } from "vue";
60
+ import argIcon from "./argIcon.vue";
61
+ export default defineComponent({
62
+ name: "argInfoSection",
63
+ components: { argIcon },
64
+ props: {
65
+ openInfo: {
66
+ type: Boolean,
67
+ default: true
68
+ },
69
+ activeMenu: {
70
+ type: String,
71
+ default: ""
72
+ },
73
+ infoArray: {
74
+ type: Array,
75
+ default: () => [
76
+ { name: "Tips", icon: "Lightbulb" },
77
+ { name: "Sources", icon: "Database" },
78
+ { name: "Info", icon: "Info" },
79
+ { name: "Metadata", icon: "CirclesFour" }
80
+ ]
81
+ },
82
+ sourceAmount: {
83
+ type: Number,
84
+ default: 0
85
+ }
86
+ },
87
+ emits: ["update:Open", "update:Menu"],
88
+ setup(props, { emit }) {
89
+ const trueActiveMenu = ref("");
90
+ const infoOpen = ref(false);
91
+ watch(
92
+ () => props.openInfo,
93
+ (new_info_open) => {
94
+ infoOpen.value = new_info_open;
95
+ }
96
+ );
97
+ watch(
98
+ () => props.activeMenu,
99
+ (new_active_menu) => {
100
+ trueActiveMenu.value = new_active_menu;
101
+ }
102
+ );
103
+ onMounted(() => {
104
+ trueActiveMenu.value = props.activeMenu;
105
+ infoOpen.value = props.openInfo;
106
+ });
107
+ function openMenu(item) {
108
+ infoOpen.value = true;
109
+ trueActiveMenu.value = item;
110
+ emit("update:Open", infoOpen.value);
111
+ emit("update:Menu", trueActiveMenu.value);
112
+ }
113
+ function closeInfo() {
114
+ infoOpen.value = false;
115
+ setTimeout(() => {
116
+ trueActiveMenu.value = props.activeMenu;
117
+ }, 500);
118
+ emit("update:Open", infoOpen.value);
119
+ }
120
+ return {
121
+ infoOpen,
122
+ trueActiveMenu,
123
+ openMenu,
124
+ closeInfo
125
+ };
126
+ }
127
+ });
128
+ </script>
129
+
130
+ <style scoped>
131
+ .info_main_container {
132
+ background-color: transparent;
133
+ transition: all ease 0.5s;
134
+ }
135
+
136
+ .info_main_container_open {
137
+ position: fixed;
138
+ z-index: 2000;
139
+ left: 0;
140
+ top: 0;
141
+ bottom: 0;
142
+ width: 100%;
143
+ height: 100%;
144
+ background-color: rgba(0, 0, 0, 0.4);
145
+ }
146
+ .oip_info_menu {
147
+ display: flex;
148
+ align-items: center;
149
+ gap: 4px;
150
+ align-self: stretch;
151
+ cursor: pointer;
152
+ padding: 0px 16px 4px 16px;
153
+ border-bottom: 2px solid transparent;
154
+ color: var(--cool-grey);
155
+ font-size: 14px;
156
+ font-style: normal;
157
+ font-weight: 500;
158
+ line-height: normal;
159
+ justify-content: space-between;
160
+ }
161
+
162
+ .active_info_menu {
163
+ border-bottom: 2px solid var(--primary-primary, #2176ff) !important;
164
+ color: var(--independence) !important;
165
+ }
166
+ .oip_info_item svg {
167
+ flex-basis: 100%;
168
+ }
169
+
170
+ .oip_info_item:hover {
171
+ background: rgb(237, 237, 243, 65%);
172
+ }
173
+
174
+ .oip_info_close {
175
+ margin: 24px;
176
+ display: flex;
177
+ padding: 6px 12px 6px 8px;
178
+ align-items: center;
179
+ gap: 6px;
180
+ cursor: pointer;
181
+ border-radius: var(--s, 8px);
182
+ background: var(--pure-white);
183
+ font-size: 14px;
184
+ font-style: normal;
185
+ font-weight: 400;
186
+ line-height: 160%;
187
+ }
188
+
189
+ .oip_info_close:hover {
190
+ background: var(--dividers) !important;
191
+ }
192
+
193
+ .oip_info_section {
194
+ display: flex;
195
+ flex-direction: row;
196
+ align-items: flex-start;
197
+ transition: all ease 0.5s;
198
+ height: 0px;
199
+ width: 0px;
200
+ overflow: hidden;
201
+ }
202
+
203
+ .oip_info_section_open {
204
+ width: 620px;
205
+ height: 820px;
206
+ }
207
+
208
+ .oip_info_sidebar {
209
+ display: flex;
210
+ width: 160px;
211
+ padding: 24px 0px;
212
+ flex-direction: column;
213
+ align-items: flex-start;
214
+ gap: 16px;
215
+ align-self: stretch;
216
+ border-left: 1px solid var(--base-dividers, #ececf2);
217
+ background: var(--base-demi-fond, #f9f9fa);
218
+ backdrop-filter: blur(16px);
219
+ }
220
+
221
+ .oip_info_content {
222
+ display: flex;
223
+ width: 460px;
224
+ align-self: stretch;
225
+ padding: 24px;
226
+ flex-direction: column;
227
+ align-items: flex-start;
228
+ gap: 24px;
229
+ border-radius: var(--None, 0px);
230
+ border-left: 1px solid var(--base-dividers, #ececf2);
231
+ background: var(--base-white, #fff);
232
+ backdrop-filter: blur(16px);
233
+ }
234
+
235
+ .oip_info_container {
236
+ display: inline-flex;
237
+ align-items: flex-start;
238
+ position: fixed;
239
+ right: 0;
240
+ top: 0;
241
+ z-index: 999;
242
+ }
243
+
244
+ .hide {
245
+ display: none;
246
+ }
247
+
248
+ .arg_source_amount {
249
+ display: flex;
250
+ width: var(--m, 16px);
251
+
252
+ height: var(--m, 16px);
253
+
254
+ flex-direction: column;
255
+ justify-content: center;
256
+ align-items: center;
257
+ border-radius: 30px;
258
+ background: var(--system-alert, #ef4444);
259
+ color: var(--pure-white);
260
+ font-size: 10px;
261
+ font-style: normal;
262
+ font-weight: 900;
263
+ line-height: normal;
264
+ }
265
+ </style>
@@ -0,0 +1,55 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ openInfo: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ activeMenu: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ infoArray: {
11
+ type: ArrayConstructor;
12
+ default: () => {
13
+ name: string;
14
+ icon: string;
15
+ }[];
16
+ };
17
+ sourceAmount: {
18
+ type: NumberConstructor;
19
+ default: number;
20
+ };
21
+ }, {
22
+ infoOpen: import("vue").Ref<boolean>;
23
+ trueActiveMenu: import("vue").Ref<string>;
24
+ openMenu: (item: string) => void;
25
+ closeInfo: () => void;
26
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:Menu" | "update:Open")[], "update:Menu" | "update:Open", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
27
+ openInfo: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ activeMenu: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ infoArray: {
36
+ type: ArrayConstructor;
37
+ default: () => {
38
+ name: string;
39
+ icon: string;
40
+ }[];
41
+ };
42
+ sourceAmount: {
43
+ type: NumberConstructor;
44
+ default: number;
45
+ };
46
+ }>> & {
47
+ "onUpdate:Menu"?: ((...args: any[]) => any) | undefined;
48
+ "onUpdate:Open"?: ((...args: any[]) => any) | undefined;
49
+ }, {
50
+ openInfo: boolean;
51
+ infoArray: unknown[];
52
+ sourceAmount: number;
53
+ activeMenu: string;
54
+ }, {}>;
55
+ export default _default;
@@ -1,15 +1,18 @@
1
1
  <template>
2
- <div class="arg_main_layout_container">
3
- <slot name="sidebar"/>
4
- <div class="arg_main_layout_body">
5
- <slot name="header"/>
6
- <div class="arg_main_layout_section" id="arg_main_layout_section">
7
- <slot name="body"/>
8
- </div>
9
- <argFooter />
10
- </div>
11
-
2
+ <div :class="sidebarOpen ? 'arg_main_with_sidebar' : 'arg_main_no_sidebar'">
3
+ <slot name="sidebar" />
4
+ <div class="arg_main_layout_body">
5
+ <div class="arg_info" id="arg_info_section">
6
+ <slot name="infoBar" />
7
+ <slot name="infoSection" />
8
+ </div>
9
+ <div class="arg_main_layout_section" id="arg_main_layout_section">
10
+ <slot name="header" />
11
+ <slot name="body" />
12
+ </div>
13
+ <argFooter />
12
14
  </div>
15
+ </div>
13
16
  </template>
14
17
  <script>
15
18
  import {
@@ -22,6 +25,12 @@ import argFooter from "./argFooter.vue";
22
25
  export default defineComponent({
23
26
  name: "argMainLayout",
24
27
  components: { argIcon, argStyle, argFooter },
28
+ props: {
29
+ sidebarOpen: {
30
+ type: Boolean,
31
+ default: true
32
+ }
33
+ },
25
34
  setup() {
26
35
  onMounted(() => {
27
36
  adjustMarginForBody();
@@ -30,27 +39,43 @@ export default defineComponent({
30
39
  function adjustMarginForBody() {
31
40
  const fixedHeader = document.getElementById("arg_header");
32
41
  const bodyContent = document.getElementById("arg_main_layout_section");
42
+ const infoBar = document.getElementById("arg_info_section");
33
43
  if (fixedHeader && bodyContent) {
34
44
  const headerHeight = fixedHeader.offsetHeight;
35
45
  bodyContent.style.marginTop = `${headerHeight}px`;
36
46
  }
47
+ if (fixedHeader && infoBar) {
48
+ const headerHeight = fixedHeader.offsetHeight;
49
+ infoBar.style.top = `${headerHeight + 8}px`;
50
+ }
37
51
  }
38
52
  }
39
53
  });
40
54
  </script>
41
55
  <style>
42
- .arg_main_layout_container{
43
- margin-left: 200px;
56
+ .arg_main_with_sidebar {
57
+ margin-left: 200px;
58
+ }
59
+ .arg_main_no_sidebar {
60
+ margin-left: 52px;
61
+ }
62
+ .arg_main_layout_body {
63
+ display: flex;
64
+ flex-direction: column;
65
+ }
66
+ .arg_main_layout_section {
67
+ min-height: calc(100vh - 77px);
68
+ padding: 8px;
44
69
  }
45
- .arg_main_layout_body{
46
- display: flex;
47
- flex-direction: column;
70
+ .arg_main_layout_body .arg_header_with_sidebar {
71
+ width: calc(100% - 200px);
48
72
  }
49
- .arg_main_layout_section{
50
- min-height: calc(100vh - 77px);
51
- padding: 8px;
73
+ .arg_main_layout_body .arg_header_no_sidebar {
74
+ width: calc(100% - 52px);
52
75
  }
53
- .arg_main_layout_body .arg_header{
54
- width: calc(100% - 200px);
76
+ .arg_info {
77
+ position: fixed;
78
+ right: 8px;
79
+ z-index: 999;
55
80
  }
56
- </style>
81
+ </style>
@@ -1,2 +1,14 @@
1
- declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ sidebarOpen: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ sidebarOpen: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ }>>, {
12
+ sidebarOpen: boolean;
13
+ }, {}>;
2
14
  export default _default;
@@ -1,9 +1,16 @@
1
1
  <template>
2
- <NuxtLink :to="to" class="auriga_menu_item" activeClass="is-active">
3
- <arg-icon :name="icon" v-if="icon" size="20"/>
4
- <arg-flag :iso="countryIso" v-if="countryIso" emoji height="14"/>
5
- {{ label }}
6
- </NuxtLink>
2
+ <NuxtLink :to="to" class="auriga_menu_item" activeClass="is-active">
3
+ <arg-tooltip
4
+ :tooltip-text="label"
5
+ :disable="sidebarOpen"
6
+ dir="right"
7
+ :class="['tooltip_display', sidebarOpen ? '' : 'menu_tooltip_icon']"
8
+ >
9
+ <arg-icon :name="icon" v-if="icon" size="20" />
10
+ </arg-tooltip>
11
+ <arg-flag :iso="countryIso" v-if="countryIso" emoji height="14" />
12
+ <span v-show="sidebarOpen">{{ label }}</span>
13
+ </NuxtLink>
7
14
  </template>
8
15
  <script>
9
16
  import argIcon from "./argIcon.vue";
@@ -28,6 +35,10 @@ export default defineComponent({
28
35
  return true;
29
36
  }
30
37
  },
38
+ sidebarOpen: {
39
+ type: Boolean,
40
+ default: true
41
+ },
31
42
  countryIso: {
32
43
  type: String,
33
44
  validator: function(value) {
@@ -43,31 +54,37 @@ export default defineComponent({
43
54
  });
44
55
  </script>
45
56
  <style scoped>
46
- .auriga_menu_item{
47
- display: flex;
48
- height: 32px;
49
- padding: 8px;
50
- align-items: center;
51
- gap: 8px;
52
- align-self: stretch;
53
- border-radius: 4px;
54
- font-size: 14px;
55
- font-style: normal;
56
- font-weight: 400;
57
- line-height: 160%;
58
- color: var(--independence);
57
+ .auriga_menu_item {
58
+ display: flex;
59
+ padding: 8px;
60
+ align-items: center;
61
+ gap: 8px;
62
+ align-self: stretch;
63
+ border-radius: 4px;
64
+ font-size: 14px;
65
+ font-style: normal;
66
+ font-weight: 400;
67
+ line-height: 160%;
68
+ color: var(--independence);
69
+ }
70
+
71
+ .auriga_menu_item svg {
72
+ color: var(--cool-grey) !important;
73
+ }
74
+ .auriga_menu_item.is-active svg,
75
+ .auriga_menu_item:hover:not(.is-active) svg {
76
+ color: var(--primary, #2176ff) !important;
59
77
  }
60
- .auriga_menu_item svg{
61
- color: var(--primary, #2176FF) !important;
78
+ .auriga_menu_item.is-active {
79
+ background: rgba(33, 118, 255, 0.1) !important;
62
80
  }
63
- .auriga_menu_item.is-active{
64
- background: var(--primary, #2176FF);
65
- color: #FFF;
81
+ .auriga_menu_item:hover:not(.is-active) {
82
+ background: var(--base-dividers, #ececf2);
66
83
  }
67
- .auriga_menu_item.is-active svg{
68
- color: #FFF !important;
84
+ .menu_tooltip_icon {
85
+ flex: 1 1 100%;
69
86
  }
70
- .auriga_menu_item:hover:not(.is-active){
71
- background: var(--base-dividers, #ECECF2);
87
+ .tooltip_display {
88
+ display: flex !important;
72
89
  }
73
90
  </style>
@@ -7,6 +7,10 @@ declare const _default: import("vue").DefineComponent<{
7
7
  type: StringConstructor;
8
8
  validator: (this: any, value: string | undefined) => boolean;
9
9
  };
10
+ sidebarOpen: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
10
14
  countryIso: {
11
15
  type: StringConstructor;
12
16
  validator: (this: any, value: string | undefined) => boolean;
@@ -24,6 +28,10 @@ declare const _default: import("vue").DefineComponent<{
24
28
  type: StringConstructor;
25
29
  validator: (this: any, value: string | undefined) => boolean;
26
30
  };
31
+ sidebarOpen: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
27
35
  countryIso: {
28
36
  type: StringConstructor;
29
37
  validator: (this: any, value: string | undefined) => boolean;
@@ -32,5 +40,7 @@ declare const _default: import("vue").DefineComponent<{
32
40
  type: StringConstructor;
33
41
  required: true;
34
42
  };
35
- }>>, {}, {}>;
43
+ }>>, {
44
+ sidebarOpen: boolean;
45
+ }, {}>;
36
46
  export default _default;
@@ -1,8 +1,15 @@
1
1
  <template>
2
- <nuxt-link :to="to" class="arg_menu_link">
3
- <arg-icon :name="icon" color="var(--primary)" size="20"/>
4
- {{label}}
5
- </nuxt-link>
2
+ <nuxt-link :to="to" class="arg_menu_link">
3
+ <arg-tooltip
4
+ :tooltip-text="label"
5
+ :disable="sidebarOpen"
6
+ dir="right"
7
+ :class="['tooltip_display', sidebarOpen ? '' : 'link_menu_tooltip_icon']"
8
+ >
9
+ <arg-icon :name="icon" color="var(--cool-grey)" size="20" />
10
+ </arg-tooltip>
11
+ <span v-show="sidebarOpen">{{ label }}</span>
12
+ </nuxt-link>
6
13
  </template>
7
14
  <script>
8
15
  import {
@@ -16,24 +23,40 @@ export default defineComponent({
16
23
  props: {
17
24
  icon: { type: String, required: true },
18
25
  label: { type: String, required: true },
19
- to: { type: String, required: true, default: "/" }
26
+ to: { type: String, required: true, default: "/" },
27
+ sidebarOpen: { type: Boolean, default: true }
20
28
  }
21
29
  });
22
30
  </script>
23
31
  <style>
24
- .arg_menu_link{
25
- display: flex;
26
- height: 32px;
27
- padding: 6px;
28
- align-items: center;
29
- gap: 6px;
30
- align-self: stretch;
31
- color: var(--primary);
32
- font-size: 14px;
33
- font-style: normal;
34
- font-weight: 400;
35
- line-height: 160%;
36
- text-transform: capitalize;
37
- cursor: pointer;
32
+ .arg_menu_link {
33
+ display: flex;
34
+ height: 32px;
35
+ padding: 6px;
36
+ align-items: center;
37
+ gap: 6px;
38
+ align-self: stretch;
39
+ color: var(--cool-grey);
40
+ font-size: 14px;
41
+ font-style: normal;
42
+ font-weight: 400;
43
+ line-height: 160%;
44
+ text-transform: capitalize;
45
+ cursor: pointer;
38
46
  }
39
- </style>
47
+
48
+ .arg_menu_link:hover svg {
49
+ color: var(--primary) !important;
50
+ }
51
+
52
+ .arg_menu_link:hover {
53
+ background: var(--base-dividers, #ececf2);
54
+ }
55
+
56
+ .link_menu_tooltip_icon {
57
+ flex: 1 1 100%;
58
+ }
59
+ .tooltip_display {
60
+ display: flex !important;
61
+ }
62
+ </style>
@@ -12,6 +12,10 @@ declare const _default: import("vue").DefineComponent<{
12
12
  required: true;
13
13
  default: string;
14
14
  };
15
+ sidebarOpen: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
15
19
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
20
  icon: {
17
21
  type: StringConstructor;
@@ -26,7 +30,12 @@ declare const _default: import("vue").DefineComponent<{
26
30
  required: true;
27
31
  default: string;
28
32
  };
33
+ sidebarOpen: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
29
37
  }>>, {
38
+ sidebarOpen: boolean;
30
39
  to: string;
31
40
  }, {}>;
32
41
  export default _default;