-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dckc-patch-1
- Loading branch information
Showing
33 changed files
with
3,619 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v18.16.0 | ||
v18.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<template> | ||
<div class="home-section"> | ||
<h1 style="margin-bottom: .25em;">{{ title }}</h1> | ||
<div style="margin-bottom: 1em;"> | ||
{{ text }} | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
/** | ||
* @file HomeButtonHeader | ||
* @ | ||
* @module components | ||
*/ | ||
export default { | ||
name: 'HomeButtonHeader', | ||
props: { | ||
title: { | ||
type: String, | ||
required: true, | ||
default: 'Home Button Header Title' | ||
}, | ||
text: { | ||
type: String, | ||
required: true, | ||
default: 'Home Button Header Text' | ||
}, | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<template> | ||
<div class="button-grid-wrapper"> | ||
<div class="home-button" style="grid-column-start: 1;"> | ||
<a :href=link1> | ||
{{ title1 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text1 }} | ||
</div> | ||
</div> | ||
<div class="home-button" style="grid-column-start: 2;"> | ||
<a :href=link2> | ||
{{ title2 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text2 }} | ||
</div> | ||
</div> | ||
<div class="home-button" style="grid-column-start: 3;"> | ||
<a :href=link3> | ||
{{ title3 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text3 }} | ||
</div> | ||
</div> | ||
<div class="home-button" v-if="title4" style="grid-column-start: 1;"> | ||
<a :href=link4> | ||
{{ title4 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text4 }} | ||
</div> | ||
</div> | ||
<div class="home-button" v-if="title5" style="grid-column-start: 2;"> | ||
<a :href=link5> | ||
{{ title5 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text5 }} | ||
</div> | ||
</div> | ||
<div class="home-button" v-if="title6" style="grid-column-start: 3;"> | ||
<a :href=link6> | ||
{{ title6 }} | ||
<span class="link-spanner"></span> | ||
</a> | ||
<br/> | ||
<div style="margin-top: .5em;"> | ||
{{ text6 }} | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
/** | ||
* @file HomeButtonRow | ||
* @ | ||
* @module components | ||
*/ | ||
export default { | ||
name: 'HomeButtonRow', | ||
props: { | ||
title1: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Title 1' | ||
}, | ||
text1: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Text 1' | ||
}, | ||
link1: { | ||
type: String, | ||
required: true, | ||
default: 'https://docs.agoric.com' | ||
}, | ||
title2: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Title 2' | ||
}, | ||
text2: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Text 2' | ||
}, | ||
link2: { | ||
type: String, | ||
required: true, | ||
default: 'https://docs.agoric.com' | ||
}, | ||
title3: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Title 3' | ||
}, | ||
text3: { | ||
type: String, | ||
required: true, | ||
default: 'HomeButton Text 3' | ||
}, | ||
link3: { | ||
type: String, | ||
required: true, | ||
default: 'https://docs.agoric.com' | ||
}, | ||
title4: { | ||
type: String, | ||
required: false, | ||
}, | ||
text4: { | ||
type: String, | ||
required: false, | ||
}, | ||
link4: { | ||
type: String, | ||
required: false, | ||
}, | ||
title5: { | ||
type: String, | ||
required: false, | ||
}, | ||
text5: { | ||
type: String, | ||
required: false, | ||
}, | ||
link5: { | ||
type: String, | ||
required: false, | ||
}, | ||
title6: { | ||
type: String, | ||
required: false, | ||
}, | ||
text6: { | ||
type: String, | ||
required: false, | ||
}, | ||
link6: { | ||
type: String, | ||
required: false, | ||
}, | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.