Skip to content

Commit

Permalink
fix: fixed build errer in main scripts due to typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Akpa committed Jul 15, 2019
1 parent 599b405 commit 395c8ea
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
21 changes: 18 additions & 3 deletions dev/views/TextInputV2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,23 @@
@input="text = $event">
<searchicon slot="leftIcon" />
<ftext slot="rightIcon">
@bna.com
@bna.com <a href> this is a link too</a>
</ftext>
</inputtext>
<box :padding="3">
<inputtext
:value="text"
label="Text Input Type"
placeholder="Text Input Type"
type="text"

@input="text = $event">
<searchicon slot="leftIcon" />
<ftext slot="rightIcon">
@bna.com <a href> this is a link too</a>
</ftext>
</inputtext>
</box>

<inputtext
class="custom"
Expand Down Expand Up @@ -84,15 +98,16 @@

<script lang="ts">
import Vue from 'vue'
import { FishTankTextInputV2 , FishTankText} from '@/index'
import { FishTankTextInputV2 , FishTankText, FishTankBox} from '@/index'
import { Search24 } from '@fishtank/icons-vue'
export default Vue.extend({
components:{
inputtext:FishTankTextInputV2,
searchicon: Search24,
ftext:FishTankText
ftext:FishTankText,
box: FishTankBox
},
data(){
return {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "rimraf dist/",
"dev": "yarn run serve",
"serve": "vue-cli-service serve --open",
"build": "yarn run clean && yarn build:esm && yarn build:cjs && yarn build:esm:dev && yarn build:cjs:dev && yarn build:ts-types",
"build": "yarn run clean && yarn build:esm && yarn build:cjs && yarn build:esm:dev && yarn build:cjs:dev && yarn build:esm:uncompiled && yarn build:cjs:uncompiled && yarn build:ts-types",
"build:rollup": "yarn rollup -c",
"build:esm": "yarn build:rollup --environment TARGET:esm --environment PROD:production",
"build:cjs": "yarn build:rollup --environment TARGET:cjs --environment PROD:production",
Expand Down

0 comments on commit 395c8ea

Please sign in to comment.