This repository was archived by the owner on Nov 30, 2020. It is now read-only.
File tree 6 files changed +38
-2
lines changed
6 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 67
67
</grid-col >
68
68
</grid-row >
69
69
</form-group >
70
+ <form-group >
71
+ <form-label >Zip Code</form-label >
72
+ <grid-row class =" gutters-xs" >
73
+ <grid-col sm >
74
+ <form-input placeholder =" Search for..." />
75
+ </grid-col >
76
+ <grid-col class =" col-auto align-self-center" >
77
+ <form-help >
78
+ <p >ZIP Code must be US or CDN format. You can use an extended ZIP+4 code to determine address more accurately.</p >
79
+ <p class =' mb-0' ><a href =' ' >USP ZIP codes lookup tools</a ></p >
80
+ </form-help >
81
+ </grid-col >
82
+ </grid-row >
83
+ </form-group >
70
84
</grid-col >
71
85
<grid-col md =" 6" lg =" 4" >
72
86
<form-group >
Original file line number Diff line number Diff line change 32
32
"vue" : " ^2.5.16"
33
33
},
34
34
"dependencies" : {
35
+ "popper.js" : " ^1.14.3" ,
35
36
"tabler-ui" : " ^0.0.32" ,
36
37
"vue-popperjs" : " ^1.3.4"
37
38
}
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <span class =" form-help" >?
3
+ <div class =" arrow" style =" left : 129px ;" ></div >
4
+ </span >
5
+ </template >
6
+
7
+ <script >
8
+ export default {
9
+ name: " form-help"
10
+ }
11
+ </script >
12
+
13
+ <style scoped>
14
+
15
+ </style >
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import FormCheckbox from './FormCheckbox'
2
2
import FormFileInput from './FormFileInput'
3
3
import FormGroup from './FormGroup'
4
4
import FormGroupAddon from './FormGroupAddon'
5
+ import FormHelp from './FormHelp'
5
6
import FormInput from './FormInput'
6
7
import FormInputIcon from './FormInputIcon'
7
8
import FormInputGroup from './FormInputGroup'
@@ -18,6 +19,7 @@ export {
18
19
FormInputIcon ,
19
20
FormGroup ,
20
21
FormGroupAddon ,
22
+ FormHelp ,
21
23
FormInput ,
22
24
FormInvalidFeedback ,
23
25
FormInputGroup ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import * as Site from './Site'
17
17
import StampCard from './StampCard'
18
18
import StatsCard from './StatsCard'
19
19
import * as Table from './Table'
20
+ import Popper from './Popper'
20
21
21
22
export const components = {
22
23
...Alert ,
@@ -37,5 +38,6 @@ export const components = {
37
38
...Site ,
38
39
StampCard,
39
40
StatsCard,
40
- ...Table
41
+ ...Table ,
42
+ Popper
41
43
}
Original file line number Diff line number Diff line change 1
1
import ClickOutside from './ClickOutSide'
2
+ import Popover from './popover'
2
3
3
4
export default {
4
- ClickOutside
5
+ ClickOutside,
6
+ Popover
5
7
}
You can’t perform that action at this time.
0 commit comments