sprintify-ui 0.8.8 → 0.8.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -11,8 +11,14 @@
11
11
  <div class="flex grow">
12
12
  <!-- Logo -->
13
13
  <RouterLink
14
+ v-if="logoUrl"
14
15
  :to="logoTo"
15
16
  class="flex flex-shrink-0 items-center p-2 pl-0"
17
+ :class="{
18
+ 'mr-4': size == 'xs',
19
+ 'mr-6': size == 'sm',
20
+ 'mr-8': size == 'md',
21
+ }"
16
22
  >
17
23
  <img
18
24
  class="block h-8 w-auto"
@@ -26,9 +32,8 @@
26
32
  v-if="!mobile"
27
33
  class="flex"
28
34
  :class="{
29
- 'ml-4': size == 'xs',
30
- 'ml-6 space-x-0.5': size == 'sm',
31
- 'ml-8 space-x-1': size == 'md',
35
+ 'space-x-0.5': size == 'sm',
36
+ 'space-x-1': size == 'md',
32
37
  }"
33
38
  >
34
39
  <BaseNavbarItem
@@ -145,7 +150,7 @@ defineProps({
145
150
  type: String,
146
151
  },
147
152
  logoUrl: {
148
- default: 'https://sprintify.witify.io/img/logo/logo-side.svg',
153
+ default: '',
149
154
  type: String,
150
155
  },
151
156
  logoTo: {