@tekkare/auriga 0.1.4 → 0.1.6

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 (45) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argAdvancedSearchBar.vue +2 -1
  3. package/dist/runtime/components/argChart.vue +691 -0
  4. package/dist/runtime/components/argChart.vue.d.ts +119 -0
  5. package/dist/runtime/components/argCheckbox.vue +153 -0
  6. package/dist/runtime/components/argCheckbox.vue.d.ts +58 -0
  7. package/dist/runtime/components/argComplexSelect.vue +141 -40
  8. package/dist/runtime/components/argComplexSelect.vue.d.ts +55 -0
  9. package/dist/runtime/components/argDropdownSelect.vue +36 -29
  10. package/dist/runtime/components/argDropdownSelect.vue.d.ts +21 -11
  11. package/dist/runtime/components/argFilterCard.vue +130 -0
  12. package/dist/runtime/components/argFilterCard.vue.d.ts +19 -0
  13. package/dist/runtime/components/argFlag.vue +277 -0
  14. package/dist/runtime/components/argFlag.vue.d.ts +258 -0
  15. package/dist/runtime/components/argFooter.vue +41 -0
  16. package/dist/runtime/components/argFooter.vue.d.ts +2 -0
  17. package/dist/runtime/components/argHeader.vue +96 -0
  18. package/dist/runtime/components/argHeader.vue.d.ts +44 -0
  19. package/dist/runtime/components/argHeaderTabs.vue +7 -3
  20. package/dist/runtime/components/argInfoBar.vue +0 -0
  21. package/dist/runtime/components/argLineBreak.vue +21 -0
  22. package/dist/runtime/components/argLineBreak.vue.d.ts +2 -0
  23. package/dist/runtime/components/argMainLayout.vue +56 -0
  24. package/dist/runtime/components/argMainLayout.vue.d.ts +2 -0
  25. package/dist/runtime/components/argMenuItem.vue +73 -0
  26. package/dist/runtime/components/argMenuItem.vue.d.ts +36 -0
  27. package/dist/runtime/components/argMenuLink.vue +39 -0
  28. package/dist/runtime/components/argMenuLink.vue.d.ts +32 -0
  29. package/dist/runtime/components/argNavBar.vue +320 -0
  30. package/dist/runtime/components/argNavBar.vue.d.ts +35 -0
  31. package/dist/runtime/components/argNote.vue +87 -0
  32. package/dist/runtime/components/argNote.vue.d.ts +42 -0
  33. package/dist/runtime/components/argSidebar.vue +110 -0
  34. package/dist/runtime/components/argSidebar.vue.d.ts +33 -0
  35. package/dist/runtime/components/argSimpleLabel.vue +56 -13
  36. package/dist/runtime/components/argSimpleLabel.vue.d.ts +18 -0
  37. package/dist/runtime/components/argStyle.vue +10 -0
  38. package/dist/runtime/components/argSubMenu.vue +67 -0
  39. package/dist/runtime/components/argSubMenu.vue.d.ts +30 -0
  40. package/dist/runtime/components/argSwitch.vue +158 -0
  41. package/dist/runtime/components/argSwitch.vue.d.ts +45 -0
  42. package/dist/runtime/components/argTable.vue +201 -141
  43. package/dist/runtime/components/argTable.vue.d.ts +22 -3
  44. package/dist/runtime/components/argTooltip.vue +1 -1
  45. package/package.json +6 -3
@@ -0,0 +1,39 @@
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>
6
+ </template>
7
+ <script>
8
+ import {
9
+ defineComponent
10
+ } from "vue";
11
+ import argIcon from "./argIcon.vue";
12
+ import argStyle from "./argStyle.vue";
13
+ export default defineComponent({
14
+ name: "argMenuLink",
15
+ components: { argIcon, argStyle },
16
+ props: {
17
+ icon: { type: String, required: true },
18
+ label: { type: String, required: true },
19
+ to: { type: String, required: true, default: "/" }
20
+ }
21
+ });
22
+ </script>
23
+ <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;
38
+ }
39
+ </style>
@@ -0,0 +1,32 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ icon: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ label: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
10
+ to: {
11
+ type: StringConstructor;
12
+ required: true;
13
+ default: string;
14
+ };
15
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
+ icon: {
17
+ type: StringConstructor;
18
+ required: true;
19
+ };
20
+ label: {
21
+ type: StringConstructor;
22
+ required: true;
23
+ };
24
+ to: {
25
+ type: StringConstructor;
26
+ required: true;
27
+ default: string;
28
+ };
29
+ }>>, {
30
+ to: string;
31
+ }, {}>;
32
+ export default _default;
@@ -0,0 +1,320 @@
1
+ <template>
2
+ <div
3
+ id="tabs_container"
4
+ class="rcd_tabs"
5
+ :class="isOverflow ? 'tabs_overflow' : ''"
6
+ >
7
+ <div
8
+ v-show="isOverflow"
9
+ class="rcd_scroll_icon scroll_left"
10
+ @click="scroll_left"
11
+ >
12
+ <arg-icon name="CaretLeft" size="12" color="var(--lavender_grey)" />
13
+ </div>
14
+ <div id="scroll_tabs" class="rcd_tabs_overlay">
15
+ <div class="rcd_one_tab_active-selector" id="tabs-selector"></div>
16
+ <span
17
+ class="rcd_one_tab_container"
18
+ v-for="(tab, index) in tabs"
19
+ :key="index"
20
+ :id="`rcd_tab_${index + 1}`"
21
+ >
22
+ <button
23
+ class="rcd_one_tab"
24
+ :class="{
25
+ active: true_index_menu.toString() === (index + 1).toString(),
26
+ }"
27
+ @click="changeMenu(index + 1)"
28
+ >
29
+ <p>{{ tab }}</p>
30
+ </button>
31
+ </span>
32
+ </div>
33
+ <div
34
+ v-show="isOverflow"
35
+ class="rcd_scroll_icon scroll_right"
36
+ @click="scroll_right"
37
+ >
38
+ <arg-icon name="CaretRight" size="12" color="var(--lavender_grey)" />
39
+ </div>
40
+ </div>
41
+ </template>
42
+
43
+ <script>
44
+ import {
45
+ onMounted,
46
+ ref,
47
+ computed,
48
+ watch,
49
+ defineComponent
50
+ } from "vue";
51
+ import argIcon from "./argIcon.vue";
52
+ export default defineComponent({
53
+ name: "argNavBar",
54
+ components: { argIcon },
55
+ props: {
56
+ tabs: {
57
+ type: Array,
58
+ required: true
59
+ },
60
+ index_menu: {
61
+ type: [String, Number],
62
+ default: 1
63
+ }
64
+ },
65
+ emits: ["updateMenu", "update:Menu"],
66
+ setup(props, { emit }) {
67
+ const true_index_menu = ref(props.index_menu);
68
+ const scrollValue = ref(0);
69
+ const oldWidth = ref();
70
+ const isOverflow = ref(false);
71
+ watch(
72
+ () => props.index_menu,
73
+ (new_index_menu) => {
74
+ true_index_menu.value = new_index_menu;
75
+ setBarWidth(true_index_menu.value);
76
+ }
77
+ );
78
+ const tabsWidth = computed(() => {
79
+ const table = [];
80
+ for (let i = 0; i < props.tabs.length; i++) {
81
+ const domTab = document?.getElementById(`rcd_tab_${i + 1}`);
82
+ if (domTab !== null) {
83
+ table.push(domTab.offsetWidth);
84
+ }
85
+ }
86
+ return table;
87
+ });
88
+ const getTranslationWidth = computed(() => {
89
+ let translateWidth = 0;
90
+ if (true_index_menu.value === 1) {
91
+ return 0;
92
+ } else {
93
+ let i = 0;
94
+ while (i + 1 < true_index_menu.value) {
95
+ translateWidth += tabsWidth.value[i];
96
+ i += 1;
97
+ }
98
+ return translateWidth;
99
+ }
100
+ });
101
+ function checkOverflow() {
102
+ const container = document.getElementById("tabs_container");
103
+ const content = document.getElementById("scroll_tabs");
104
+ if (content.scrollWidth > container.clientWidth - 48) {
105
+ isOverflow.value = true;
106
+ } else
107
+ isOverflow.value = false;
108
+ }
109
+ function changeMenu(value) {
110
+ if (typeof true_index_menu.value === "string") {
111
+ emit("updateMenu", value.toString());
112
+ emit("update:Menu", value.toString());
113
+ } else {
114
+ emit("updateMenu", value);
115
+ emit("update:Menu", value);
116
+ }
117
+ true_index_menu.value = value;
118
+ setBarWidth(true_index_menu.value);
119
+ }
120
+ function scroll_left() {
121
+ const content = document.getElementById("scroll_tabs");
122
+ if (content !== null) {
123
+ if (content.scrollLeft - 20 <= 0) {
124
+ scrollValue.value += content.scrollLeft;
125
+ content.scrollLeft -= content.scrollLeft;
126
+ } else {
127
+ scrollValue.value += 20;
128
+ content.scrollLeft -= 20;
129
+ }
130
+ setBarWidth(true_index_menu.value);
131
+ }
132
+ }
133
+ function scroll_right() {
134
+ const content = document.getElementById("scroll_tabs");
135
+ if (content !== null) {
136
+ const maxWidth = content.scrollWidth - content.clientWidth;
137
+ if (content.scrollLeft + 20 >= maxWidth) {
138
+ const widthLeft = maxWidth - content.scrollLeft;
139
+ content.scrollLeft += widthLeft;
140
+ scrollValue.value -= widthLeft;
141
+ } else {
142
+ content.scrollLeft += 20;
143
+ scrollValue.value -= 20;
144
+ }
145
+ }
146
+ }
147
+ function setBarWidth(index) {
148
+ const selector = document.getElementById("tabs-selector");
149
+ const width = document.getElementById(`rcd_tab_${index}`)?.offsetWidth;
150
+ if (selector !== null) {
151
+ const index_number = Number(true_index_menu.value);
152
+ const gapWidth = (index_number - 1) * 32;
153
+ selector.style.width = `${width}px`;
154
+ selector.style.transform = `translateX(${getTranslationWidth.value + gapWidth}px)`;
155
+ }
156
+ }
157
+ onMounted(() => {
158
+ window.onresize = () => {
159
+ checkOverflow();
160
+ const content = document.getElementById("scroll_tabs");
161
+ if (window?.innerWidth > oldWidth.value) {
162
+ if (content?.scrollLeft === 0) {
163
+ scrollValue.value = 0;
164
+ }
165
+ }
166
+ oldWidth.value = window?.innerWidth;
167
+ };
168
+ true_index_menu.value = props.index_menu;
169
+ setTimeout(() => {
170
+ const content = document.getElementById("scroll_tabs");
171
+ if (content !== null) {
172
+ if (getTranslationWidth.value > content.offsetWidth) {
173
+ content.scrollLeft += getTranslationWidth.value;
174
+ }
175
+ setBarWidth(props.index_menu);
176
+ checkOverflow();
177
+ }
178
+ }, 100);
179
+ });
180
+ return {
181
+ true_index_menu,
182
+ scrollValue,
183
+ oldWidth,
184
+ changeMenu,
185
+ setBarWidth,
186
+ isOverflow,
187
+ checkOverflow,
188
+ scroll_left,
189
+ scroll_right
190
+ };
191
+ }
192
+ });
193
+ </script>
194
+
195
+ <!-- Custom navbar -->
196
+ <style scoped>
197
+ .rcd_scroll_icon {
198
+ display: flex;
199
+ flex-direction: row;
200
+ align-items: center;
201
+ padding: 4px 12px;
202
+ height: calc(100% - 8px);
203
+ position: absolute;
204
+ top: 0;
205
+ cursor: pointer;
206
+ z-index: 2;
207
+ }
208
+ .scroll_left {
209
+ left: 0;
210
+ border-right: 1px solid var(--demi-fond);
211
+ box-shadow: 4px 0px 10px rgba(62, 63, 94, 0.04);
212
+ }
213
+ .scroll_right {
214
+ right: 0;
215
+ border-left: 1px solid var(--demi-fond);
216
+ box-shadow: -4px 0px 10px rgba(62, 63, 94, 0.04);
217
+ }
218
+
219
+ .tabs_overflow {
220
+ padding: 0px 40px !important;
221
+ }
222
+ .rcd_tabs {
223
+ padding: 0px 24px;
224
+ white-space: nowrap;
225
+ position: relative;
226
+ background-color: var(--pure-white);
227
+ width: auto;
228
+ border-radius: 8px;
229
+ margin-bottom: 30px;
230
+ }
231
+
232
+ .rcd_tabs_overlay {
233
+ scrollbar-width: none;
234
+ display: flex;
235
+ flex-direction: row;
236
+ align-items: center;
237
+ gap: 32px;
238
+ position: relative;
239
+ overflow-x: scroll;
240
+ }
241
+
242
+ .rcd_tabs_overlay::-webkit-scrollbar {
243
+ display: none !important;
244
+ }
245
+
246
+ .rcd_one_tab_container {
247
+ display: inline-block;
248
+ padding: 16px 0px;
249
+ }
250
+
251
+ .rcd_one_tab {
252
+ display: flex;
253
+ flex-direction: row;
254
+ align-items: center;
255
+ gap: 4px;
256
+ border: none;
257
+ background-color: transparent;
258
+ color: var(--wild-blue-yonder);
259
+ list-style: none;
260
+ font-style: normal;
261
+ font-size: 12px;
262
+ font-weight: 700;
263
+ text-align: center;
264
+ padding: 0px !important;
265
+ white-space: pre-line;
266
+ overflow-wrap: break-word;
267
+ vertical-align: middle;
268
+ }
269
+
270
+ .rcd_one_tab:hover {
271
+ color: var(--independence);
272
+ cursor: pointer;
273
+ }
274
+
275
+ .rcd_one_tab.active {
276
+ color: var(--independence);
277
+ }
278
+
279
+ .rcd_one_tab_active-selector {
280
+ position: absolute;
281
+ bottom: 0;
282
+ left: 0;
283
+ height: 3px;
284
+ z-index: 0;
285
+ transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
286
+ list-style: none;
287
+ background: var(--accent);
288
+ overflow-x: hidden;
289
+ }
290
+
291
+ .rcd_tabs_separator {
292
+ display: initial;
293
+ height: 20px;
294
+ border-left: 1px solid var(--wild-blue-yonder);
295
+ }
296
+
297
+ .rcd_tabs_left-caret {
298
+ color: var(--wild-blue-yonder) !important;
299
+ align-items: center;
300
+ padding: 4px 12px;
301
+ position: absolute;
302
+ width: 36px;
303
+ height: 20px;
304
+ left: 0px;
305
+ top: 18.5px;
306
+ cursor: pointer;
307
+ }
308
+ .rcd_tabs_right-caret {
309
+ color: var(--wild-blue-yonder) !important;
310
+ align-items: center;
311
+ padding: 4px 12px;
312
+
313
+ position: absolute;
314
+ width: 36px;
315
+ height: 20px;
316
+ right: 0px;
317
+ top: 18.5px;
318
+ cursor: pointer;
319
+ }
320
+ </style>
@@ -0,0 +1,35 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ tabs: {
3
+ type: ArrayConstructor;
4
+ required: true;
5
+ };
6
+ index_menu: {
7
+ type: (StringConstructor | NumberConstructor)[];
8
+ default: number;
9
+ };
10
+ }, {
11
+ true_index_menu: import("vue").Ref<string | number>;
12
+ scrollValue: import("vue").Ref<number>;
13
+ oldWidth: import("vue").Ref<any>;
14
+ changeMenu: (value: number | string) => void;
15
+ setBarWidth: (index: number | string) => void;
16
+ isOverflow: import("vue").Ref<boolean>;
17
+ checkOverflow: () => void;
18
+ scroll_left: () => void;
19
+ scroll_right: () => void;
20
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateMenu" | "update:Menu")[], "updateMenu" | "update:Menu", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ tabs: {
22
+ type: ArrayConstructor;
23
+ required: true;
24
+ };
25
+ index_menu: {
26
+ type: (StringConstructor | NumberConstructor)[];
27
+ default: number;
28
+ };
29
+ }>> & {
30
+ onUpdateMenu?: ((...args: any[]) => any) | undefined;
31
+ "onUpdate:Menu"?: ((...args: any[]) => any) | undefined;
32
+ }, {
33
+ index_menu: string | number;
34
+ }, {}>;
35
+ export default _default;
@@ -0,0 +1,87 @@
1
+ <template>
2
+ <div :class="`prmt_note_box ${noteColor}_box`">
3
+ <arg-icon :name="noteIcon" :color="getColorFromProp" />
4
+ <p>
5
+ <span :class="`${noteColor}_text`">{{ noteTitle }}:</span> {{ noteText }}
6
+ </p>
7
+ </div>
8
+ </template>
9
+
10
+ <script>
11
+ import argIcon from "./argIcon.vue";
12
+ import {
13
+ computed,
14
+ defineComponent
15
+ } from "vue";
16
+ export default defineComponent({
17
+ name: "argNote",
18
+ components: { argIcon },
19
+ props: {
20
+ noteTitle: {
21
+ type: String,
22
+ default: "Note"
23
+ },
24
+ noteIcon: {
25
+ type: String,
26
+ default: "Info"
27
+ },
28
+ noteColor: {
29
+ type: String,
30
+ default: "blue"
31
+ },
32
+ noteText: {
33
+ type: String,
34
+ required: true
35
+ }
36
+ },
37
+ setup(props) {
38
+ const getColorFromProp = computed(() => {
39
+ if (props.noteColor === "blue") {
40
+ return "var(--primary)";
41
+ } else
42
+ return "var(--warning)";
43
+ });
44
+ return {
45
+ getColorFromProp
46
+ };
47
+ }
48
+ });
49
+ </script>
50
+
51
+ <style scoped>
52
+ .prmt_note_box {
53
+ display: flex;
54
+ flex-direction: row;
55
+ align-items: center;
56
+ padding: 8px 16px;
57
+ gap: 16px;
58
+ border-radius: 12px;
59
+ }
60
+ .prmt_note_box svg {
61
+ flex-shrink: 0;
62
+ }
63
+
64
+ .prmt_note_box p {
65
+ font-weight: 400;
66
+ font-size: 14px;
67
+ line-height: 16px;
68
+ }
69
+ .prmt_note_box p span {
70
+ font-weight: 700;
71
+ }
72
+
73
+ .blue_box {
74
+ background: rgba(33, 118, 255, 0.1);
75
+ }
76
+
77
+ .blue_text {
78
+ color: var(--primary);
79
+ }
80
+ .orange_text {
81
+ color: var(--warning);
82
+ }
83
+
84
+ .orange_box {
85
+ background: rgba(255, 152, 26, 0.1);
86
+ }
87
+ </style>
@@ -0,0 +1,42 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ noteTitle: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ noteIcon: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ noteColor: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ noteText: {
15
+ type: StringConstructor;
16
+ required: true;
17
+ };
18
+ }, {
19
+ getColorFromProp: import("vue").ComputedRef<"var(--primary)" | "var(--warning)">;
20
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ noteTitle: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ noteIcon: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ noteColor: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ noteText: {
34
+ type: StringConstructor;
35
+ required: true;
36
+ };
37
+ }>>, {
38
+ noteTitle: string;
39
+ noteIcon: string;
40
+ noteColor: string;
41
+ }, {}>;
42
+ export default _default;
@@ -0,0 +1,110 @@
1
+ <template>
2
+ <div class="arg_sidebar">
3
+ <div class="arg_sidebar_header">
4
+ <nuxt-link to="/" class="arg_sidebar_home">
5
+ <arg-icon name="House" color="var(--primary)" />
6
+ <span v-if="lang === 'en'"> Home </span>
7
+ <span v-if="lang === 'fr'"> Accueil </span>
8
+ </nuxt-link>
9
+ </div>
10
+
11
+ <h1 class="arg_sidebar_title">{{ name }}</h1>
12
+ <div class="arg_sidebar_body">
13
+ <div class="arg_sidebar_content">
14
+ <slot name="menu" />
15
+ </div>
16
+ <div class="arg_sidebar_footer">
17
+ <slot name="footer" />
18
+ </div>
19
+ </div>
20
+
21
+ <!-- Have a slot here for the submenus -->
22
+ <!-- What do i do about the bottom menus. I think they are fixed so I just have to make it dynamic -->
23
+ </div>
24
+ </template>
25
+ <script>
26
+ import {
27
+ defineComponent
28
+ } from "vue";
29
+ import argIcon from "./argIcon.vue";
30
+ import argStyle from "./argStyle.vue";
31
+ export default defineComponent({
32
+ name: "argSidebar",
33
+ components: { argIcon, argStyle },
34
+ props: {
35
+ name: { type: String, required: true },
36
+ lang: {
37
+ type: String,
38
+ default: "en",
39
+ validator: (value) => {
40
+ return ["en", "fr"].includes(value);
41
+ }
42
+ },
43
+ homeLink: { type: String, default: "/" }
44
+ }
45
+ });
46
+ </script>
47
+ <style scoped>
48
+ .arg_sidebar {
49
+ display: flex;
50
+ width: 200px;
51
+ padding: 16px 8px;
52
+ flex-direction: column;
53
+ align-items: flex-start;
54
+ gap: 16px;
55
+ border-right: 1px solid var(--base-dividers, #ececf2);
56
+ background: var(--background);
57
+ height: 100vh;
58
+ position: fixed;
59
+ z-index: 100;
60
+ transition: all ease 0.3s;
61
+ left: 0;
62
+ top: 0;
63
+ box-sizing: border-box;
64
+ }
65
+ .arg_sidebar_header {
66
+ display: flex;
67
+ justify-content: space-between;
68
+ align-items: flex-start;
69
+ align-self: stretch;
70
+ }
71
+ .arg_sidebar_home {
72
+ display: flex;
73
+ height: 32px;
74
+ padding: 6px;
75
+ align-items: center;
76
+ gap: 6px;
77
+ font-size: 14px;
78
+ font-style: normal;
79
+ font-weight: 400;
80
+ line-height: 160%;
81
+ color: var(--primary);
82
+ }
83
+ .arg_sidebar_title {
84
+ display: flex;
85
+ padding: 0px 8px;
86
+ flex-direction: column;
87
+ justify-content: center;
88
+ align-items: flex-start;
89
+ gap: 8px;
90
+ align-self: stretch;
91
+ font-size: 20px;
92
+ font-style: normal;
93
+ font-weight: 900;
94
+ line-height: normal;
95
+ margin-bottom: 16px;
96
+ }
97
+ .arg_sidebar_body {
98
+ display: flex;
99
+ flex-direction: column;
100
+ justify-content: space-between;
101
+ height: 100%;
102
+ gap: 16px;
103
+ width: 100%;
104
+ }
105
+ .arg_sidebar_content {
106
+ display: flex;
107
+ flex-direction: column;
108
+ gap: 8px;
109
+ }
110
+ </style>
@@ -0,0 +1,33 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ name: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ lang: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ validator: (value: unknown) => boolean;
10
+ };
11
+ homeLink: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
+ name: {
17
+ type: StringConstructor;
18
+ required: true;
19
+ };
20
+ lang: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ validator: (value: unknown) => boolean;
24
+ };
25
+ homeLink: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ }>>, {
30
+ lang: string;
31
+ homeLink: string;
32
+ }, {}>;
33
+ export default _default;