1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Text changed

Changing 'Invalid chart options' to 'Use the settings panel to build your chart'. I feel this is more appropriate.
This commit is contained in:
Joe 2020-12-10 11:11:53 +00:00
parent dc7a428c77
commit 1f203ae586
3 changed files with 24 additions and 6 deletions

View file

@ -29,11 +29,19 @@
class="container" class="container"
use:styleable={$component.styles} use:styleable={$component.styles}
style="--cardWidth: {cardWidth}"> style="--cardWidth: {cardWidth}">
{#if showImage}<img style="--imageWidth: {imageWidth}; --imageHeight: {imageHeight}" class="image" src={imageUrl} alt="" />{/if} {#if showImage}
<img
style="--imageWidth: {imageWidth}; --imageHeight: {imageHeight}"
class="image"
src={imageUrl}
alt="" />
{/if}
<div class="content"> <div class="content">
<h2 class="heading">{heading}</h2> <h2 class="heading">{heading}</h2>
<h4 class="text">{description}</h4> <h4 class="text">{description}</h4>
<a style="--linkColor: {linkColor}; --linkHoverColor: {linkHoverColor}" href={linkUrl}>{linkText}</a> <a
style="--linkColor: {linkColor}; --linkHoverColor: {linkHoverColor}"
href={linkUrl}>{linkText}</a>
</div> </div>
</div> </div>

View file

@ -24,7 +24,13 @@
use:styleable={$component.styles} use:styleable={$component.styles}
class="container" class="container"
style="--cardWidth: {cardWidth}"> style="--cardWidth: {cardWidth}">
{#if showImage}<img style="--imageWidth: {imageWidth}; --imageHeight: {imageHeight}" class="image" src={imageUrl} alt="" />{/if} {#if showImage}
<img
style="--imageWidth: {imageWidth}; --imageHeight: {imageHeight}"
class="image"
src={imageUrl}
alt="" />
{/if}
<div class="content"> <div class="content">
<main> <main>
<h2 class="heading">{heading}</h2> <h2 class="heading">{heading}</h2>
@ -32,7 +38,9 @@
</main> </main>
<footer> <footer>
<p class="subtext">{subtext}</p> <p class="subtext">{subtext}</p>
<a style="--linkColor: {linkColor}; --linkHoverColor: {linkHoverColor}" href={linkUrl}>{linkText}</a> <a
style="--linkColor: {linkColor}; --linkHoverColor: {linkHoverColor}"
href={linkUrl}>{linkText}</a>
</footer> </footer>
</div> </div>
</div> </div>

View file

@ -11,7 +11,9 @@
{#if options} {#if options}
<div use:chart={options} use:styleable={$component.styles} /> <div use:chart={options} use:styleable={$component.styles} />
{:else if options === false} {:else if options === false}
<div use:styleable={$component.styles}>Invalid chart options</div> <div use:styleable={$component.styles}>
Use the settings panel to build your chart -->
</div>
{/if} {/if}
<style> <style>