forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQChatMessage.json
More file actions
115 lines (97 loc) · 2.98 KB
/
QChatMessage.json
File metadata and controls
115 lines (97 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"meta": {
"docsUrl": "https://v2.quasar.dev/vue-components/chat"
},
"props": {
"sent": {
"type": "Boolean",
"desc": "Render as a sent message (so from current user)",
"category": "content"
},
"label": {
"type": "String",
"desc": "Renders a label header/section only",
"examples": [ "Friday, 18th" ],
"category": "content"
},
"bg-color": {
"extends": "color",
"desc": "Color name (from the Quasar Color Palette) for chat bubble background",
"category": "style"
},
"text-color": {
"extends": "text-color",
"desc": "Color name (from the Quasar Color Palette) for chat bubble text",
"category": "style"
},
"name": {
"type": "String",
"desc": "Author's name",
"examples": [ "John Doe" ],
"category": "content"
},
"avatar": {
"type": "String",
"desc": "URL to the avatar image of the author",
"transformAssetUrls": true,
"examples": [
"(public folder) src=\"boy-avatar.png\"",
"(assets folder) src=\"~assets/boy-avatar.png\"",
"(relative path format) :src=\"require('./my_img.jpg')\"",
"(URL) src=\"https://placeimg.com/500/300/nature\""
],
"category": "content"
},
"text": {
"type": "Array",
"desc": "Array of strings that are the message body. Strings are not sanitized (see details in docs)",
"examples": [ ":text=\"['How are you?']\"", ":text=\"['I\\'m good, thank you!', 'And you?']\"" ],
"category": "content"
},
"stamp": {
"type": "String",
"desc": "Creation timestamp",
"examples": [ "13:55", "Yesterday at 13:51" ],
"category": "content"
},
"size": {
"type": "String",
"desc": "1-12 out of 12 (same as col-*)",
"examples": [ "4", "6", "12" ],
"category": "style"
},
"label-html": {
"extends": "html",
"desc": "Render the label as HTML; This can lead to XSS attacks so make sure that you sanitize the message first"
},
"name-html": {
"extends": "html",
"desc": "Render the name as HTML; This can lead to XSS attacks so make sure that you sanitize the message first"
},
"text-html": {
"extends": "html",
"desc": "Render the text as HTML; This can lead to XSS attacks so make sure that you sanitize the message first"
},
"stamp-html": {
"extends": "html",
"desc": "Render the stamp as HTML; This can lead to XSS attacks so make sure that you sanitize the message first"
}
},
"slots": {
"default": {
"desc": "You can use this slot to define a custom message (overrides props)"
},
"avatar": {
"desc": "Slot for avatar; Suggestion: QAvatar, img"
},
"name": {
"desc": "Slot for name; Overrides the 'name' prop"
},
"stamp": {
"desc": "Slot for stamp; Overrides the 'stamp' prop"
},
"label": {
"desc": "Slot for label; Overrides the 'label' prop"
}
}
}