@apptegy/nuxt-navigation 0.2.0-alpha.0 → 0.2.2-alpha.0
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
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
v-if="!src && !initials"
|
|
12
12
|
#icon
|
|
13
13
|
>
|
|
14
|
-
<Icon
|
|
14
|
+
<Icon
|
|
15
|
+
name="lucide:user"
|
|
16
|
+
class="icon"
|
|
17
|
+
/>
|
|
15
18
|
</template>
|
|
16
19
|
</PAvatar>
|
|
17
20
|
<div
|
|
@@ -131,10 +134,13 @@ img {
|
|
|
131
134
|
max-width: 28px;
|
|
132
135
|
max-height: 28px;
|
|
133
136
|
}
|
|
134
|
-
.beacon-avatar
|
|
135
|
-
width:
|
|
136
|
-
height:
|
|
137
|
+
.beacon-avatar .icon {
|
|
138
|
+
width: 16px;
|
|
139
|
+
height: 16px;
|
|
137
140
|
background-color: #2d2d2d;
|
|
138
|
-
|
|
141
|
+
}
|
|
142
|
+
.beacon-avatar :deep(img),
|
|
143
|
+
.beacon-avatar :deep(span) {
|
|
144
|
+
border-radius: 6px;
|
|
139
145
|
}
|
|
140
146
|
</style>
|
|
@@ -392,7 +392,7 @@ header.header.classic.sticky {
|
|
|
392
392
|
position: sticky;
|
|
393
393
|
}
|
|
394
394
|
header.header.beacon {
|
|
395
|
-
|
|
395
|
+
font: var("Public Sans", --font-regular);
|
|
396
396
|
display: grid;
|
|
397
397
|
grid-auto-flow: column;
|
|
398
398
|
grid-template-columns: 1fr auto;
|
|
@@ -401,7 +401,6 @@ header.header.beacon {
|
|
|
401
401
|
padding: 12px 16px;
|
|
402
402
|
width: 100%;
|
|
403
403
|
background-color: #f7f7f7;
|
|
404
|
-
font: var(--font-regular);
|
|
405
404
|
border-bottom: 1px solid var(--grey-20, #e9e9e9);
|
|
406
405
|
}
|
|
407
406
|
header.header.beacon .user-control-actions {
|
|
@@ -474,8 +474,8 @@ function lockSidebar() {
|
|
|
474
474
|
width: 24px;
|
|
475
475
|
}
|
|
476
476
|
.navbar.beacon {
|
|
477
|
-
|
|
478
|
-
font:
|
|
477
|
+
font: var(--font-regular);
|
|
478
|
+
font-family: "Public Sans", sans-serif;
|
|
479
479
|
color: var(--nav-text-color, #2d2d2d);
|
|
480
480
|
font-weight: 400;
|
|
481
481
|
font-size: 14px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2-alpha.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"vue": "^3.5.13",
|
|
52
52
|
"vue-tsc": "^3.0.3"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "79929c9be671a19cc2b79e9b69e0ce16663a8898"
|
|
55
55
|
}
|