@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 +6 -0
- package/package.json +1 -1
- package/src/components/BaseButton/BaseButton.stories.ts +6 -1
- package/src/components/NavDesktop/NavDesktop.stories.js +1 -1
- package/src/components/NavHeading/NavHeading.stories.js +1 -1
- package/src/components/NavHeading/NavHeading.vue +2 -2
- package/src/components/NavLinkList/NavLinkList.stories.js +1 -1
- package/src/components/NavSocial/NavSocial.stories.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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-
|
|
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-
|
|
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-
|
|
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-
|
|
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>
|