@explorer-1/vue 1.1.9 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @explorer-1/vue
2
2
 
3
+ ## 1.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - eceeea8: Changing color of nav heading to grayscale
8
+
3
9
  ## 1.1.9
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -44,6 +44,11 @@ export const DarkButton = {
44
44
  args: {
45
45
  ...BaseButtonData,
46
46
  variant: 'dark'
47
- }
47
+ },
48
+ decorators: [
49
+ () => ({
50
+ template: `<div id="storyRoot" class="p-8 bg-gray-dark edu:bg-primary-dark"><story/></div>`
51
+ })
52
+ ]
48
53
  // globals: { themeVariant: 'ThemeVariantDark' }
49
54
  }
@@ -194,7 +194,7 @@ export const NavInverted = {
194
194
  return { args }
195
195
  },
196
196
  template: `<div class="absolute inset-0">
197
- <div style="height:2500px" class="nav-offset bg-jpl-blue-darker">
197
+ <div style="height:2500px" class="nav-offset bg-gray-dark">
198
198
  <NavDesktop v-bind="args" />
199
199
  <div v-if="invertOverride" class="-nav-offset max-w-screen-3xl mx-auto">
200
200
  <img class="w-full h-auto block" src="https://picsum.photos/1600/900" alt="Example Hero" />
@@ -7,7 +7,7 @@ export default {
7
7
  tags: ['navigation'],
8
8
  decorators: [
9
9
  () => ({
10
- template: `<div id="storyRoot" class="p-8 bg-jpl-blue-darker edu:bg-primary-dark"><story/></div>`
10
+ template: `<div id="storyRoot" class="p-8 bg-gray-dark edu:bg-primary-dark"><story/></div>`
11
11
  })
12
12
  ],
13
13
  parameters: {
@@ -6,7 +6,7 @@
6
6
  <template v-if="data.headingPage && data.heading">
7
7
  <BaseLink
8
8
  variant="none"
9
- class="text-subtitle text-jpl-blue-lighter edu:text-purple-300 inline-block mb-4"
9
+ class="text-subtitle text-gray-400 edu:text-purple-300 inline-block mb-4"
10
10
  link-class="px-2 block"
11
11
  :to="data.headingPage.url"
12
12
  >
@@ -14,7 +14,7 @@
14
14
  </BaseLink>
15
15
  </template>
16
16
  <template v-else-if="data.heading">
17
- <div class="text-subtitle text-jpl-blue-lighter edu:text-purple-300 inline-block mb-4">
17
+ <div class="text-subtitle text-gray-400 edu:text-purple-300 inline-block mb-4">
18
18
  <span class="px-2 block">{{ data.heading }}</span>
19
19
  </div>
20
20
  </template>
@@ -6,7 +6,7 @@ export default {
6
6
  tags: ['navigation'],
7
7
  decorators: [
8
8
  () => ({
9
- template: `<div id="storyRoot" class="bg-jpl-blue-darker p-8"><story/></div>`
9
+ template: `<div id="storyRoot" class="bg-gray-dark p-8"><story/></div>`
10
10
  })
11
11
  ],
12
12
  parameters: {
@@ -16,6 +16,6 @@ export const Dark = {
16
16
  setup() {
17
17
  return { args }
18
18
  },
19
- template: `<div class="bg-jpl-blue-darker p-8"><NavSocial v-bind="args" /></div>`
19
+ template: `<div class="bg-gray-dark p-8"><NavSocial v-bind="args" /></div>`
20
20
  })
21
21
  }