-
Notifications
You must be signed in to change notification settings - Fork 8
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 #153 from HarmlessKey/feature/spells
Spells phase 1
- Loading branch information
Showing
80 changed files
with
9,726 additions
and
7,958 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 +1,45 @@ | ||
import HkTable from '../components/hk-components/hk-table'; | ||
import HkCard from '../components/hk-components/hk-card'; | ||
import HkCardDeck from '../components/hk-components/hk-card-deck'; | ||
import HkRoll from '../components/hk-components/hk-roll'; | ||
import HkAnimatedInteger from '../components/hk-components/hk-animated-integer'; | ||
import HkDiceText from '../components/hk-components/hk-dice-text'; | ||
import HkPopover from '../components/hk-components/hk-popover'; | ||
import HkLoader from '../components/hk-components/hk-loader'; | ||
import HkDmgTypeSelect from '../components/hk-components/hk-dmg-type-select'; | ||
import HkTip from '../components/hk-components/hk-tip'; | ||
import HkTimer from '../components/hk-components/hk-timer'; | ||
import HkShare from '../components/hk-components/hk-share-button'; | ||
import HkImageUploader from '../components/hk-components/hk-image-uploader'; | ||
import HkBackgroundSelect from '../components/hk-components/hk-background-select'; | ||
import HkMarkdownEditor from '../components/hk-components/hk-markdown-editor'; | ||
import HkXpBar from '../components/hk-components/hk-xp-bar'; | ||
import HkLinkCharacter from '../components/hk-components/hk-link-character'; | ||
import HkTable from "../components/hk-components/hk-table"; | ||
import HkCard from "../components/hk-components/hk-card"; | ||
import HkCardDeck from "../components/hk-components/hk-card-deck"; | ||
import HkRoll from "../components/hk-components/hk-roll"; | ||
import HkRollAction from "../components/hk-components/hk-action-rolls/hk-roll-action"; | ||
import HkAnimatedInteger from "../components/hk-components/hk-animated-integer"; | ||
import HkDiceText from "../components/hk-components/hk-dice-text"; | ||
import HkPopover from "../components/hk-components/hk-popover"; | ||
import HkLoader from "../components/hk-components/hk-loader"; | ||
import HkDmgTypeSelect from "../components/hk-components/hk-dmg-type-select"; | ||
import HkTip from "../components/hk-components/hk-tip"; | ||
import HkTimer from "../components/hk-components/hk-timer"; | ||
import HkShare from "../components/hk-components/hk-share-button"; | ||
import HkImageUploader from "../components/hk-components/hk-image-uploader"; | ||
import HkBackgroundSelect from "../components/hk-components/hk-background-select"; | ||
import HkMarkdownEditor from "../components/hk-components/hk-markdown-editor"; | ||
import HkXpBar from "../components/hk-components/hk-xp-bar"; | ||
import HkLinkCharacter from "../components/hk-components/hk-link-character"; | ||
import HkActionRollForm from "../components/hk-components/hk-action-rolls/hk-action-roll-form"; | ||
import HkActionRollsTable from "../components/hk-components/hk-action-rolls/hk-action-rolls-table"; | ||
import HkActionRollScaling from "../components/hk-components/hk-action-rolls/hk-action-roll-scaling"; | ||
|
||
export default async ({ Vue }) => { | ||
Vue.component('hk-table', HkTable); | ||
Vue.component('hk-card', HkCard); | ||
Vue.component('hk-card-deck', HkCardDeck); | ||
Vue.component('hk-animated-integer', HkAnimatedInteger); | ||
Vue.component('hk-roll', HkRoll); | ||
Vue.component('hk-loader', HkLoader); | ||
Vue.component('hk-dice-text', HkDiceText); | ||
Vue.component('hk-popover', HkPopover); | ||
Vue.component('hk-dmg-type-select', HkDmgTypeSelect); | ||
Vue.component('hk-tip', HkTip); | ||
Vue.component('hk-timer', HkTimer); | ||
Vue.component('hk-share', HkShare); | ||
Vue.component('hk-image-uploader', HkImageUploader); | ||
Vue.component('hk-background-select', HkBackgroundSelect); | ||
Vue.component('hk-markdown-editor', HkMarkdownEditor); | ||
Vue.component('hk-xp-bar', HkXpBar); | ||
Vue.component('hk-link-character', HkLinkCharacter); | ||
}; | ||
Vue.component("hk-table", HkTable); | ||
Vue.component("hk-card", HkCard); | ||
Vue.component("hk-card-deck", HkCardDeck); | ||
Vue.component("hk-animated-integer", HkAnimatedInteger); | ||
Vue.component("hk-roll", HkRoll); | ||
Vue.component("hk-roll-action", HkRollAction); | ||
Vue.component("hk-loader", HkLoader); | ||
Vue.component("hk-dice-text", HkDiceText); | ||
Vue.component("hk-popover", HkPopover); | ||
Vue.component("hk-dmg-type-select", HkDmgTypeSelect); | ||
Vue.component("hk-tip", HkTip); | ||
Vue.component("hk-timer", HkTimer); | ||
Vue.component("hk-share", HkShare); | ||
Vue.component("hk-image-uploader", HkImageUploader); | ||
Vue.component("hk-background-select", HkBackgroundSelect); | ||
Vue.component("hk-markdown-editor", HkMarkdownEditor); | ||
Vue.component("hk-xp-bar", HkXpBar); | ||
Vue.component("hk-link-character", HkLinkCharacter); | ||
Vue.component("hk-action-roll-form", HkActionRollForm); | ||
Vue.component("hk-action-rolls-table", HkActionRollsTable); | ||
Vue.component("hk-action-roll-scaling", HkActionRollScaling); | ||
}; |
Oops, something went wrong.