@bagelink/vue 0.0.413 → 0.0.417
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/components/Accordion.vue.d.ts +1 -1
- package/dist/components/AccordionItem.vue.d.ts +2 -2
- package/dist/components/Alert.vue.d.ts +2 -2
- package/dist/components/Avatar.vue.d.ts +2 -2
- package/dist/components/Avatar.vue.d.ts.map +1 -1
- package/dist/components/Badge.vue.d.ts +3 -2
- package/dist/components/BglVideo.vue.d.ts +1 -1
- package/dist/components/Btn.vue.d.ts +4 -3
- package/dist/components/Card.vue.d.ts +2 -2
- package/dist/components/Carousel.vue.d.ts +3 -3
- package/dist/components/DataPreview.vue.d.ts +10 -9
- package/dist/components/ListItem.vue.d.ts +2 -2
- package/dist/components/ListView.vue.d.ts +1 -1
- package/dist/components/MaterialIcon.vue.d.ts +4 -3
- package/dist/components/Modal.vue.d.ts +5 -5
- package/dist/components/ModalConfirm.vue.d.ts +3 -3
- package/dist/components/ModalConfirm.vue.d.ts.map +1 -1
- package/dist/components/ModalForm.vue.d.ts +27 -26
- package/dist/components/NavBar.vue.d.ts +4 -3
- package/dist/components/NavBar.vue.d.ts.map +1 -1
- package/dist/components/PageTitle.vue.d.ts +2 -2
- package/dist/components/RouterWrapper.vue.d.ts +1 -1
- package/dist/components/TableSchema.vue.d.ts +383 -6
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/Title.vue.d.ts +2 -2
- package/dist/components/TopBar.vue.d.ts +1 -1
- package/dist/components/dashboard/Lineart.vue.d.ts +4 -3
- package/dist/components/form/BglField.vue.d.ts +5 -4
- package/dist/components/form/BglForm.vue.d.ts +6 -5
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts +14 -14
- package/dist/components/form/inputs/Checkbox.vue.d.ts +4 -4
- package/dist/components/form/inputs/ColorPicker.vue.d.ts +3 -3
- package/dist/components/form/inputs/DateInput.vue.d.ts +5 -5
- package/dist/components/form/inputs/DatePicker.vue.d.ts +10 -3
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts +16 -15
- package/dist/components/form/inputs/JSONInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/RadioPillsInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/RichText.vue.d.ts +3 -3
- package/dist/components/form/inputs/SelectInput.vue.d.ts +4 -3
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TableField.vue.d.ts +3 -3
- package/dist/components/form/inputs/TextInput.vue.d.ts +5 -4
- package/dist/components/form/inputs/ToggleInput.vue.d.ts +12 -12
- package/dist/components/layout/BottomMenu.vue.d.ts +4 -3
- package/dist/components/layout/Layout.vue.d.ts +2 -2
- package/dist/components/layout/SidebarMenu.vue.d.ts +5 -4
- package/dist/components/layout/TabbedLayout.vue.d.ts +5 -4
- package/dist/components/layout/Tabs.vue.d.ts +4 -3
- package/dist/components/layout/TabsBody.vue.d.ts +2 -2
- package/dist/components/layout/TabsNav.vue.d.ts +4 -3
- package/dist/components/layout/tabsManager.d.ts +1 -1
- package/dist/index.cjs +7037 -4949
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +7037 -4949
- package/dist/plugins/bagel.d.ts +2 -1
- package/dist/plugins/modal.d.ts +3 -3
- package/dist/style.css +242 -240
- package/dist/types/BagelForm.d.ts +1 -0
- package/dist/types/BtnOptions.d.ts +2 -1
- package/dist/types/NavLink.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/BagelFormUtils.d.ts +2 -1
- package/dist/utils/clickOutside.d.ts +2 -1
- package/dist/utils/index.d.ts +2 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Avatar.vue +2 -1
- package/src/components/NavBar.vue +235 -226
- package/src/components/TableSchema.vue +34 -4
- package/src/components/form/BglForm.vue +13 -3
- package/src/components/form/inputs/CheckInput.vue +1 -0
- package/src/components/form/inputs/DatePicker.vue +13 -2
- package/src/components/form/inputs/SelectInput.vue +13 -11
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SelectInput, TextInput } from '..';
|
|
2
|
+
|
|
2
3
|
export type AttributeValue = string | number | boolean | null | undefined | Record<string, any>;
|
|
3
4
|
export type AttributeFn<T = Record<string, any>> = (field: any, row: T) => AttributeValue;
|
|
4
5
|
export interface Attributes<T = any> {
|
package/dist/types/NavLink.d.ts
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { MaterialIcons } from './materialIcons';
|
|
1
2
|
export type { ModalFormComponentProps, ModalApi, ModalComponentProps, ModalFormOptions, ModalOptions, } from '../plugins/modal';
|
|
2
|
-
import type { MaterialIcons } from './materialIcons';
|
|
3
3
|
export type { MaterialIcons };
|
|
4
4
|
export type { Tables, TableToTypeMapping } from '../../../sdk/src/index.ts';
|
|
5
5
|
export type { StorageFile } from './file';
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Attributes } from '../types';
|
|
2
|
+
|
|
2
3
|
export declare const debounce: (fn: () => void, delay?: number) => void;
|
|
3
4
|
export declare const keyToLabel: (key?: string) => string | undefined;
|
|
4
|
-
export declare const copyText: (text: string, cb?: (
|
|
5
|
+
export declare const copyText: (text: string, cb?: (msg: string) => void) => Promise<void>;
|
|
5
6
|
export declare const initials: (...strArr: string[]) => string;
|
|
6
7
|
export declare function useEscape(event: KeyboardEvent, closeModel: () => void): void;
|
|
7
8
|
export declare function classify(fieldVal?: any, row?: any, ...classes: any[]): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGtC,eAAO,MAAM,QAAQ,OAAQ,MAAM,IAAI,yBAGtC,CAAC;AAEF,eAAO,MAAM,UAAU,SAAU,MAAM,KAAG,MAAM,GAAG,SAEjC,CAAC;AAEnB,eAAO,MAAM,QAAQ,SACd,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGtC,eAAO,MAAM,QAAQ,OAAQ,MAAM,IAAI,yBAGtC,CAAC;AAEF,eAAO,MAAM,UAAU,SAAU,MAAM,KAAG,MAAM,GAAG,SAEjC,CAAC;AAEnB,eAAO,MAAM,QAAQ,SACd,MAAM,OAEP,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,kBAI1B,CAAC;AAEF,eAAO,MAAM,QAAQ,cAAe,MAAM,EAAE,WAG3C,CAAC;AAEF,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,IAAI,QAIrE;AAED,wBAAgB,QAAQ,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,GAAG,OAAO,EAAE,GAAG,EAAE,UAKpE;AAED,wBAAgB,SAAS,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,EAAE,UAAU,EAAE,QAAQ,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,OAS7F;AAED,eAAO,MAAM,KAAK,UAAW,GAAG,YAAY,GAAG,QAM9C,CAAC;AAEF,eAAO,MAAM,SAAS,cAAe,OAAO,MAAM,EAAE,GAAG,CAAC,YAAY,MAAM,QAAqD,CAAC;AAEhI,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="avatar" :style="{ width: `${size}px`, height: `${size}px` }">
|
|
2
|
+
<div class="avatar flex" :style="{ width: `${size}px`, height: `${size}px` }">
|
|
3
3
|
<img v-if="src" :src="src" :alt="name">
|
|
4
4
|
<p v-else :style="{ 'line-height': `${size}px`, 'font-size': `calc(1.5rem * ${size} / 50)` }">
|
|
5
5
|
{{ fallback || initials(name || '') }}
|
|
@@ -26,6 +26,7 @@ withDefaults(defineProps<{
|
|
|
26
26
|
overflow: hidden;
|
|
27
27
|
text-align: center;
|
|
28
28
|
padding: 0;
|
|
29
|
+
flex-shrink: 0;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.avatar p {
|
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
<div :class="{ open: isOpen, closed: !isOpen }">
|
|
3
3
|
<slot name="top" />
|
|
4
4
|
<div
|
|
5
|
-
class="nav-expend"
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
class="nav-expend"
|
|
6
|
+
@click="isOpen = !isOpen"
|
|
7
|
+
@keypress.enter="isOpen = !isOpen"
|
|
8
|
+
role="button"
|
|
9
|
+
aria-label="Toggle Navigation"
|
|
10
|
+
tabindex="0">
|
|
8
11
|
<MaterialIcon icon="chevron_right" class="top-arrow" />
|
|
9
12
|
</div>
|
|
10
13
|
|
|
@@ -12,9 +15,12 @@
|
|
|
12
15
|
<div class="nav-scroll">
|
|
13
16
|
<div class="nav-links-wrapper">
|
|
14
17
|
<component
|
|
15
|
-
:is="link.to?'router-link':'div'"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
:is="link.to ? 'router-link' : 'div'"
|
|
19
|
+
v-for="link in links"
|
|
20
|
+
class="nav-button"
|
|
21
|
+
:to="link.to"
|
|
22
|
+
:key="link.label"
|
|
23
|
+
@click="link.onClick?.()">
|
|
18
24
|
<MaterialIcon :icon="link.icon" />
|
|
19
25
|
<div class="tooltip">
|
|
20
26
|
{{ link.label }}
|
|
@@ -25,9 +31,12 @@
|
|
|
25
31
|
|
|
26
32
|
<div class="bot-buttons-wrapper">
|
|
27
33
|
<component
|
|
28
|
-
:is="link.to?'router-link':'div'"
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
:is="link.to ? 'router-link' : 'div'"
|
|
35
|
+
v-for="link in footerLinks"
|
|
36
|
+
class="nav-button"
|
|
37
|
+
:to="link.to"
|
|
38
|
+
@click="link.onClick?.()"
|
|
39
|
+
:key="link.label">
|
|
31
40
|
<MaterialIcon :icon="link.icon" />
|
|
32
41
|
<div class="tooltip">
|
|
33
42
|
{{ link.label }}
|
|
@@ -47,46 +56,46 @@ const isOpen = $ref(true);
|
|
|
47
56
|
|
|
48
57
|
withDefaults(
|
|
49
58
|
defineProps<{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
59
|
+
footerLinks?: NavLink[];
|
|
60
|
+
links?: NavLink[];
|
|
61
|
+
homeIcon?: MaterialIcons;
|
|
62
|
+
homeLabel?: string;
|
|
63
|
+
homeTo?: string;
|
|
64
|
+
}>(),
|
|
56
65
|
{
|
|
57
66
|
homeIcon: 'home',
|
|
58
67
|
homeLabel: 'Home',
|
|
59
68
|
homeTo: '/',
|
|
60
69
|
links: () => [],
|
|
61
70
|
footerLinks: () => [],
|
|
62
|
-
}
|
|
71
|
+
}
|
|
63
72
|
);
|
|
64
73
|
</script>
|
|
65
74
|
|
|
66
75
|
<style scoped>
|
|
67
|
-
[dir=
|
|
68
|
-
|
|
76
|
+
[dir='rtl'] .top-arrow {
|
|
77
|
+
transform: rotate(180deg);
|
|
69
78
|
}
|
|
70
79
|
|
|
71
80
|
.nav-expend {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
81
|
+
text-align: center;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
background: var(--bgl-white);
|
|
84
|
+
color: var(--bgl-primary);
|
|
85
|
+
display: flex;
|
|
86
|
+
border-radius: 100%;
|
|
87
|
+
font-size: 13px;
|
|
88
|
+
box-shadow: 0 0 50px 0 var(--bgl-shadow);
|
|
89
|
+
height: 22px;
|
|
90
|
+
width: 22px;
|
|
91
|
+
align-items: center;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: 82px;
|
|
95
|
+
box-sizing: border-box;
|
|
96
|
+
padding-inline-start: 2px;
|
|
97
|
+
margin-inline-start: 55px;
|
|
98
|
+
transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
|
|
90
99
|
}
|
|
91
100
|
|
|
92
101
|
/*
|
|
@@ -96,260 +105,260 @@ withDefaults(
|
|
|
96
105
|
*/
|
|
97
106
|
|
|
98
107
|
.nav-expend {
|
|
99
|
-
|
|
108
|
+
background: var(--bgl-white);
|
|
100
109
|
}
|
|
101
110
|
|
|
102
111
|
.nav-expend:hover {
|
|
103
|
-
|
|
104
|
-
|
|
112
|
+
filter: brightness(95%);
|
|
113
|
+
box-shadow: 0 0 20px 0 var(--bgl-primary-tint);
|
|
105
114
|
}
|
|
106
115
|
|
|
107
116
|
.nav-expend:active {
|
|
108
|
-
|
|
117
|
+
filter: var(--bgl-active-filter);
|
|
109
118
|
}
|
|
110
119
|
|
|
111
120
|
.nav {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
121
|
+
color: var(--bgl-white);
|
|
122
|
+
background: var(--bgl-primary);
|
|
123
|
+
z-index: 100;
|
|
124
|
+
width: 70px;
|
|
125
|
+
transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: column;
|
|
119
128
|
}
|
|
120
129
|
|
|
121
130
|
.nav * {
|
|
122
|
-
|
|
131
|
+
user-select: none;
|
|
123
132
|
}
|
|
124
133
|
|
|
125
134
|
.nav-button {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
+
text-decoration: none;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
display: flex;
|
|
138
|
+
text-align: start;
|
|
139
|
+
align-items: center;
|
|
140
|
+
position: relative;
|
|
141
|
+
color: var(--bgl-white);
|
|
142
|
+
transition: all 0.2s ease;
|
|
143
|
+
pointer-events: none;
|
|
135
144
|
}
|
|
136
145
|
|
|
137
146
|
.nav-button:hover {
|
|
138
|
-
|
|
139
|
-
|
|
147
|
+
width: fit-content;
|
|
148
|
+
pointer-events: all;
|
|
140
149
|
}
|
|
141
150
|
|
|
142
151
|
.nav-button .bgl_icon-font {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
152
|
+
font-size: 22px;
|
|
153
|
+
margin: 0.25rem 10px;
|
|
154
|
+
padding: 10px;
|
|
155
|
+
width: 50px;
|
|
156
|
+
text-align: center;
|
|
157
|
+
height: 45px;
|
|
158
|
+
flex-grow: 0;
|
|
159
|
+
flex-shrink: 0;
|
|
160
|
+
border-radius: 10px;
|
|
161
|
+
transition: all 0.2s ease;
|
|
162
|
+
pointer-events: all;
|
|
154
163
|
}
|
|
155
164
|
|
|
156
165
|
.nav-button:hover .bgl_icon-font,
|
|
157
166
|
.nav-button.router-link-active .bgl_icon-font {
|
|
158
|
-
|
|
159
|
-
|
|
167
|
+
background: var(--bgl-white);
|
|
168
|
+
color: var(--bgl-primary);
|
|
160
169
|
}
|
|
161
170
|
|
|
162
171
|
.nav-button:hover .tooltip {
|
|
163
|
-
|
|
164
|
-
|
|
172
|
+
opacity: 1;
|
|
173
|
+
pointer-events: all;
|
|
165
174
|
}
|
|
166
175
|
|
|
167
176
|
.tooltip {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
177
|
+
background-color: var(--bgl-white);
|
|
178
|
+
color: var(--bgl-primary);
|
|
179
|
+
line-height: 1;
|
|
180
|
+
padding: 0.5rem;
|
|
181
|
+
border-radius: 10px;
|
|
182
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
183
|
+
transition: all 0.2s ease;
|
|
184
|
+
border: 5px solid transparent;
|
|
185
|
+
white-space: nowrap;
|
|
186
|
+
pointer-events: none;
|
|
187
|
+
opacity: 0;
|
|
188
|
+
margin-inline-start: 1rem;
|
|
180
189
|
}
|
|
181
190
|
|
|
182
191
|
.tooltip:hover {
|
|
183
|
-
|
|
192
|
+
filter: brightness(95%);
|
|
184
193
|
}
|
|
185
194
|
|
|
186
195
|
.tooltip:active {
|
|
187
|
-
|
|
196
|
+
filter: brightness(90%);
|
|
188
197
|
}
|
|
189
198
|
|
|
190
199
|
.bot-buttons-wrapper {
|
|
191
|
-
|
|
192
|
-
|
|
200
|
+
margin-top: auto;
|
|
201
|
+
width: 100%;
|
|
193
202
|
}
|
|
194
203
|
|
|
195
204
|
.nav-links-wrapper {
|
|
196
|
-
|
|
205
|
+
direction: ltr;
|
|
197
206
|
}
|
|
198
207
|
|
|
199
|
-
[dir=
|
|
200
|
-
|
|
208
|
+
[dir='rtl'] .nav-links-wrapper {
|
|
209
|
+
direction: rtl;
|
|
201
210
|
}
|
|
202
211
|
|
|
203
212
|
.nav-scroll {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
213
|
+
overflow-y: scroll;
|
|
214
|
+
width: 50vw;
|
|
215
|
+
direction: rtl;
|
|
216
|
+
text-align: end;
|
|
217
|
+
margin-inline-end: -7px;
|
|
218
|
+
pointer-events: none;
|
|
219
|
+
display: flex;
|
|
220
|
+
flex-direction: column;
|
|
212
221
|
}
|
|
213
222
|
|
|
214
223
|
.nav::-webkit-scrollbar-thumb {
|
|
215
|
-
|
|
224
|
+
background-color: transparent;
|
|
216
225
|
}
|
|
217
226
|
|
|
218
227
|
.nav:hover::-webkit-scrollbar-thumb {
|
|
219
|
-
|
|
228
|
+
background-color: var(--bgl-gray);
|
|
220
229
|
}
|
|
221
230
|
|
|
222
|
-
[dir=
|
|
223
|
-
|
|
231
|
+
[dir='rtl'] .nav-scroll {
|
|
232
|
+
direction: ltr;
|
|
224
233
|
}
|
|
225
234
|
|
|
226
235
|
.full-nav {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
236
|
+
height: 100%;
|
|
237
|
+
display: flex;
|
|
238
|
+
flex-direction: column;
|
|
230
239
|
}
|
|
231
240
|
|
|
232
241
|
@media screen and (min-width: 910px) {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
242
|
+
.nav.open .nav-expend {
|
|
243
|
+
margin-inline-start: 189px;
|
|
244
|
+
transform: rotate(180deg);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.nav.open {
|
|
248
|
+
width: 200px;
|
|
249
|
+
text-align: start;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.nav.open .tooltip {
|
|
253
|
+
background-color: transparent;
|
|
254
|
+
color: var(--bgl-white);
|
|
255
|
+
padding: 0;
|
|
256
|
+
box-shadow: none;
|
|
257
|
+
pointer-events: all;
|
|
258
|
+
opacity: 1;
|
|
259
|
+
margin-inline-start: 0rem;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.nav.open .nav-button .bgl_icon-font {
|
|
263
|
+
margin: 0;
|
|
264
|
+
background: transparent;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.nav.open .nav-button {
|
|
268
|
+
width: 180px;
|
|
269
|
+
border-radius: 10px;
|
|
270
|
+
margin-inline-start: 10px;
|
|
271
|
+
margin-top: 10px;
|
|
272
|
+
margin-bottom: 10px;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.nav.open .nav-button:hover,
|
|
276
|
+
.nav.open .nav-button.router-link-active {
|
|
277
|
+
background: var(--bgl-white);
|
|
278
|
+
color: var(--bgl-primary);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.nav.open .nav-button:hover,
|
|
282
|
+
.nav.open .nav-button:hover .tooltip,
|
|
283
|
+
.nav.open .nav-button.router-link-active .tooltip {
|
|
284
|
+
color: var(--bgl-primary);
|
|
285
|
+
}
|
|
277
286
|
}
|
|
278
287
|
|
|
279
288
|
@media screen and (max-width: 910px) {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
289
|
+
.full-nav {
|
|
290
|
+
height: auto;
|
|
291
|
+
display: flex;
|
|
292
|
+
flex-direction: row;
|
|
293
|
+
width: calc(100vw - 70px);
|
|
294
|
+
position: absolute;
|
|
295
|
+
inset-inline-end: 0;
|
|
296
|
+
overflow-x: auto;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.nav.open {
|
|
300
|
+
width: initial;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.nav {
|
|
304
|
+
width: auto;
|
|
305
|
+
display: flex;
|
|
306
|
+
flex-direction: row;
|
|
307
|
+
margin: 0;
|
|
308
|
+
overflow-x: auto;
|
|
309
|
+
justify-content: flex-start;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.tooltip {
|
|
313
|
+
opacity: 1;
|
|
314
|
+
background: transparent;
|
|
315
|
+
color: var(--bgl-white);
|
|
316
|
+
box-shadow: none;
|
|
317
|
+
font-size: 10px;
|
|
318
|
+
padding: 0;
|
|
319
|
+
margin: 0;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.nav-button {
|
|
323
|
+
flex-direction: column;
|
|
324
|
+
margin: 12px 0.25rem;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.nav-button .bgl_icon-font {
|
|
328
|
+
padding: 2px 0 0 0;
|
|
329
|
+
margin: 0;
|
|
330
|
+
height: 30px;
|
|
331
|
+
width: 30px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.nav-links-wrapper {
|
|
335
|
+
display: flex;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.bot-buttons-wrapper {
|
|
339
|
+
margin-top: 0;
|
|
340
|
+
width: auto;
|
|
341
|
+
display: flex;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.nav-scroll {
|
|
345
|
+
overflow-y: visible;
|
|
346
|
+
width: auto;
|
|
347
|
+
direction: auto;
|
|
348
|
+
text-align: start;
|
|
349
|
+
margin-inline-end: 0px;
|
|
350
|
+
pointer-events: all;
|
|
351
|
+
display: flex;
|
|
352
|
+
flex-direction: row;
|
|
353
|
+
margin-inline-end: auto;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.nav::-webkit-scrollbar {
|
|
357
|
+
display: none;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.nav-expend {
|
|
361
|
+
display: none;
|
|
362
|
+
}
|
|
354
363
|
}
|
|
355
364
|
</style>
|