Skip to content

Commit

Permalink
resolving merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Sep 24, 2024
2 parents 463f4c7 + 2e59d34 commit ef42ff2
Show file tree
Hide file tree
Showing 6 changed files with 380 additions and 158 deletions.
68 changes: 68 additions & 0 deletions packages/vue/src/components/BlockLinkCard/BlockLinkCard.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,74 @@ export const LargeEduExplainerArticle = {
}
}

export const EduCollection = {
decorators: [
() => ({
template: `<div id="storyDecorator" class="relative grid grid-cols-2 gap-3"><story/></div>`
})
],
args: {
...BlockLinkCardData,
size: 'sm',
useFeaturedStyles: true,
data: {
page: {
__typename: 'EDUCollectionsDetailPage',
...BlockLinkCardData.data,
summary:
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse mattis auctor magna. Quisque molestie ex metus, et aliquet nunc porttitor nec. Donec imperdiet quam dolor, ut iaculis justo ornare non. Proin finibus nulla ut lorem molestie sagittis quis ut nulla. Sed sit amet dui consectetur, aliquam tortor nec, pulvinar libero.',
primarySubject: {
subject: 'Engineering'
},
gradeLevels: [
{ gradeLevel: 'All Ages' },
{ gradeLevel: 'K' },
{ gradeLevel: '1' },
{ gradeLevel: '2' },
{ gradeLevel: '5' },
{ gradeLevel: '6' },
{ gradeLevel: '7' },
{ gradeLevel: '8' }
],
time: {
time: '1-2 hrs'
}
}
}
}
}
export const EduCollectionLarge = {
args: {
...BlockLinkCardData,
size: 'lg',
useFeaturedStyles: true,
data: {
page: {
__typename: 'EDUCollectionsDetailPage',
...BlockLinkCardData.data,
summary:
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse mattis auctor magna. Quisque molestie ex metus, et aliquet nunc porttitor nec. Donec imperdiet quam dolor, ut iaculis justo ornare non. Proin finibus nulla ut lorem molestie sagittis quis ut nulla. Sed sit amet dui consectetur, aliquam tortor nec, pulvinar libero.',
primarySubject: {
subject: 'Engineering'
},
gradeLevels: [
{ gradeLevel: 'All Ages' },
{ gradeLevel: 'K' },
{ gradeLevel: '1' },
{ gradeLevel: '2' },
{ gradeLevel: '5' },
{ gradeLevel: '6' },
{ gradeLevel: '7' },
{ gradeLevel: '8' }
],
time: {
time: '1-2 hrs'
}
}
}
}
}

export const EduNewsItem = {
decorators: [
() => ({
Expand Down
Loading

0 comments on commit ef42ff2

Please sign in to comment.