@explorer-1/vue 1.0.3 → 1.0.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @explorer-1/vue
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 7230e1f: Adjusting use of font-display in mobile nav
8
+
9
+ ## 1.0.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [3553695]
14
+ - @explorer-1/common@2.0.3
15
+
3
16
  ## 1.0.3
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -31,7 +31,7 @@
31
31
  "vue-bind-once": "^0.2.1",
32
32
  "vue3-compare-image": "^1.2.5",
33
33
  "vue3-observe-visibility": "^1.0.1",
34
- "@explorer-1/common": "2.0.2"
34
+ "@explorer-1/common": "2.0.3"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@vitejs/plugin-vue": "^5.0.4",
@@ -3,7 +3,7 @@
3
3
  <NavDropdownToggle
4
4
  v-click-outside="closeDropdown"
5
5
  :aria-expanded="dropdownVisible ? true : false"
6
- class="group relative z-20 px-4 font-bold font-display border-t-2 border-transparent edu:text-sm edu:xl:text-base edu:px-2 edu:xl:px-4"
6
+ class="group relative z-20 px-4 font-bold font-text tracking-[-.2px] border-t-2 border-transparent edu:text-sm edu:xl:text-base edu:px-2 edu:xl:px-4"
7
7
  :class="{
8
8
  '-open': dropdownVisible
9
9
  }"
@@ -15,7 +15,7 @@
15
15
  >
16
16
  <BaseLink
17
17
  variant="none"
18
- class="block font-display text-base xl:text-lg font-medium leading-tight text-white"
18
+ class="block font-text text-base xl:text-lg font-regular leading-tight text-white"
19
19
  :href="item.path && !getRouterLink(item) ? item.path : undefined"
20
20
  :to="getRouterLink(item) ? getRouterLink(item) : undefined"
21
21
  link-class="can-hover:hover:underline inline-block px-2 py-3 -ml-2"
@@ -105,8 +105,8 @@
105
105
  <BaseLink
106
106
  variant="none"
107
107
  href="https://www.nasa.gov/learning-resources/"
108
- class="group relative block w-full px-4 py-2 text-xl font-medium text-left"
109
- link-class="flex flex-wrap-none overflow-visible whitespace-nowrap items-center py-0 pl-6 -ml-4 border-l-4 border-transparent"
108
+ class="group relative block w-full px-4 py-2 text-xl text-left"
109
+ link-class="flex flex-wrap-none overflow-visible whitespace-nowrap font-display font-bold items-center py-0 pl-6 -ml-4 border-l-4 border-transparent"
110
110
  external-target-blank
111
111
  >
112
112
  <span class="pr-2">NASA OSTEM</span>
@@ -3,7 +3,7 @@
3
3
  v-if="data"
4
4
  variant="none"
5
5
  class="NavMobileLink"
6
- :link-class="`flex items-center py-2 text-lg font-display leading-tight ${linkClass}`"
6
+ :link-class="`flex items-center py-2 text-lg font-text leading-tight ${linkClass}`"
7
7
  :href="data.path && !getRouterLink(data) ? data.path : undefined"
8
8
  :to="getRouterLink(data) ? getRouterLink(data) : undefined"
9
9
  :exact="exact"