@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
@@ -4,7 +4,7 @@
4
4
  "nuxt": ">=3.0.0"
5
5
  },
6
6
  "configKey": "@apptegy/nuxt-navigation",
7
- "version": "0.2.0-alpha.0",
7
+ "version": "0.2.2-alpha.0",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.1",
10
10
  "unbuild": "unknown"
@@ -11,7 +11,10 @@
11
11
  v-if="!src && !initials"
12
12
  #icon
13
13
  >
14
- <Icon name="lucide:user" />
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 span {
135
- width: 24px;
136
- height: 24px;
137
+ .beacon-avatar .icon {
138
+ width: 16px;
139
+ height: 16px;
137
140
  background-color: #2d2d2d;
138
- border-radius: 8px;
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
- grid-area: navheader;
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
- grid-area: navsidebar;
478
- font: var(--font-regular, "Public Sans");
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;
@@ -1,5 +1,5 @@
1
1
  export declare function useSidebar(): {
2
- state: any;
2
+ state: import("vue").Ref<boolean, boolean>;
3
3
  toggleSidebar: () => void;
4
4
  sidebarWidth: import("vue").ComputedRef<"264px" | "0px">;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apptegy/nuxt-navigation",
3
- "version": "0.2.0-alpha.0",
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": "1dc446394ee7ca5eb722ffb48215d9b671581308"
54
+ "gitHead": "79929c9be671a19cc2b79e9b69e0ce16663a8898"
55
55
  }