-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from BjornDCode/feature/import-flow
Feature/import flow
- Loading branch information
Showing
30 changed files
with
1,173 additions
and
281 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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"name": "Bjørn Lindholm", | ||
"email": "[email protected]" | ||
}, | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"private": true, | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
|
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,44 @@ | ||
<template> | ||
<Stack | ||
width="full" | ||
position="fixed" | ||
:left="0" | ||
:right="0" | ||
:bottom="0" | ||
color="white" | ||
> | ||
<Box | ||
:spaceX="8" | ||
:spaceY="4" | ||
width="full" | ||
:borderWidthT="2" | ||
borderColor="gray" | ||
borderShade="300" | ||
> | ||
<Inline justify="between" width="full" :space="4"> | ||
<Inline> | ||
<slot name="left" /> | ||
</Inline> | ||
|
||
<Inline> | ||
<slot /> | ||
<slot name="right" /> | ||
</Inline> | ||
</Inline> | ||
</Box> | ||
</Stack> | ||
</template> | ||
|
||
<script> | ||
import Box from '@/components/Box' | ||
import Stack from '@/components/Stack' | ||
import Inline from '@/components/Inline' | ||
export default { | ||
components: { | ||
Box, | ||
Stack, | ||
Inline, | ||
}, | ||
} | ||
</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,34 @@ | ||
<script> | ||
import TextNode from '@/components/TextNode' | ||
export default { | ||
props: { | ||
condition: { | ||
type: Boolean, | ||
required: true, | ||
}, | ||
true: { | ||
type: String, | ||
required: true, | ||
}, | ||
false: { | ||
type: String, | ||
required: true, | ||
}, | ||
}, | ||
computed: { | ||
text() { | ||
return this.condition ? this.true : this.false | ||
}, | ||
}, | ||
render(createElement) { | ||
return createElement(TextNode, { | ||
props: { | ||
text: this.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,20 @@ | ||
<template> | ||
<svg | ||
width="60" | ||
height="60" | ||
viewBox="0 0 100 100" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M50 100C77.6142 100 100 77.6142 100 50C100 22.3858 77.6142 0 50 0C22.3858 0 0 22.3858 0 50C0 77.6142 22.3858 100 50 100Z" | ||
fill="#3C366B" | ||
/> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M55.8139 36.4341C55.8139 33.2231 53.2108 30.6201 49.9999 30.6201C46.789 30.6201 44.1859 33.2231 44.1859 36.4341V37.4031C44.1859 41.1492 41.1491 44.186 37.403 44.186H36.434C33.223 44.186 30.6201 46.7891 30.6201 50C30.6201 53.2109 33.223 55.814 36.434 55.814H37.403C41.1491 55.814 44.1859 58.8508 44.1859 62.5969V63.5659C44.1859 66.7769 46.789 69.3799 49.9999 69.3799C53.2108 69.3799 55.8139 66.7769 55.8139 63.5659V62.5969C55.8139 58.8508 58.8507 55.814 62.5968 55.814H63.5658C66.7768 55.814 69.3798 53.2109 69.3798 50C69.3798 46.7891 66.7768 44.186 63.5658 44.186H62.5968C58.8507 44.186 55.8139 41.1492 55.8139 37.4031V36.4341Z" | ||
fill="#ED64A6" | ||
/> | ||
</svg> | ||
</template> |
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,15 @@ | ||
<template> | ||
<Copy component="p" color="gray" shade="700"> | ||
<slot /> | ||
</Copy> | ||
</template> | ||
|
||
<script> | ||
import Copy from '@/components/Copy' | ||
export default { | ||
components: { | ||
Copy, | ||
}, | ||
} | ||
</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
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,14 @@ | ||
<script> | ||
export default { | ||
props: { | ||
text: { | ||
type: String, | ||
required: true, | ||
}, | ||
}, | ||
render() { | ||
return this._v(this.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
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
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.