File tree Expand file tree Collapse file tree 3 files changed +25
-15
lines changed Expand file tree Collapse file tree 3 files changed +25
-15
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,17 @@ export default function() {
32
32
const tooltips = tippy ( buttons )
33
33
const defaultSettings = {
34
34
interactive : true ,
35
- flip : true ,
35
+ popperOptions : {
36
+ modifiers : [
37
+ {
38
+ name : 'flip' ,
39
+ enabled : true
40
+ } ,
41
+ ] ,
42
+ } ,
36
43
placement : 'bottom-end' ,
37
- boundary : '.docs' ,
38
44
trigger : 'manual' ,
45
+ allowHTML : true ,
39
46
onMount : ( tooltip ) => {
40
47
const sendButton = document . querySelector ( SEND_SELECTOR )
41
48
const feedbackText = document . querySelector ( TEXT_SELECTOR )
Original file line number Diff line number Diff line change @@ -37,40 +37,37 @@ actions:
37
37
- action : Identify User
38
38
blurb : Set user identity variables.
39
39
fields :
40
- - name : userId
40
+ - name : User ID
41
41
description : The user's ID in FullStory.
42
42
default : userId
43
- - name : anonymous
43
+ - name : Anonymous ID
44
44
description : The user's anonymousId in FullStory.
45
45
default : anonymousId
46
- - name : displayName
46
+ - name : Display Name
47
47
description : The user's display name.
48
48
default : traits.name
49
- - name : email
49
+ - name : Email
50
50
description : The user's email address.
51
51
default : traits.email
52
- - name : traits
52
+ - name : Traits
53
53
description : The Segment traits forwarded to FullStory.
54
54
default : traits
55
55
- action : Track Event
56
56
blurb : Send event details to FullStory.
57
57
fields :
58
- - name : name
58
+ - name : Name
59
59
description : The name of the event
60
60
default : name
61
- - name : properties
61
+ - name : Properties
62
62
description : A JSON object that contains additional information about the event, and is indexed by FullStory.
63
63
default : properties
64
64
- action : Viewed Page
65
65
blurb : Set the properties of a page event, and send them to FullStory.
66
66
fields :
67
- - name : name
68
- description : The name of the viewed page.
67
+ - name : Page Name
68
+ description : The name of the viewed page. Defaults to `category`. If `category` is not present, `name` is used.
69
69
default : name
70
- - name : category
71
- description : The category of the viewed page
72
- default : category
73
- - name : properties
70
+ - name : Properties
74
71
description : The properties of the viewed page.
75
72
default : properties
76
73
settings :
Original file line number Diff line number Diff line change 4
4
align-items : flex-end ;
5
5
padding : 10px 5px 5px 10px ;
6
6
transition : 200ms ease ;
7
+ background-color : white ;
8
+ border-radius : 4px ;
9
+ border : 1px solid rgb (216 ,218 ,229 );
10
+ box-shadow : rgba (149 , 157 , 165 , 0.2 ) 0px 8px 24px ;
11
+
7
12
8
13
& __textarea {
9
14
width : 260px ;
10
15
border : none ;
11
16
resize : none ;
12
17
color : color (gray-800 );
13
18
outline : none ;
19
+ font-size : 12px ;
14
20
15
21
& ::placeholder {
16
22
color : color (gray-600 );
You can’t perform that action at this time.
0 commit comments