forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQEditor.json
More file actions
305 lines (275 loc) · 8.59 KB
/
QEditor.json
File metadata and controls
305 lines (275 loc) · 8.59 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
{
"mixins": [ "mixins/fullscreen" ],
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/editor"
},
"props": {
"value": {
"type": "String",
"desc": "Model of the component; Either use this property (along with a listener for 'input' event) OR use v-model directive",
"required": true,
"examples": [
"v-model=\"content\""
],
"category": "model"
},
"readonly": {
"extends": "readonly"
},
"square": {
"extends": "square"
},
"flat": {
"extends": "flat",
"desc": "Applies a 'flat' design (no borders)"
},
"dense": {
"extends": "dense",
"desc": "Dense mode; toolbar buttons are shown on one-line only"
},
"dark": {
"extends": "dark",
"addedIn": "v1.3.0"
},
"disable": {
"extends": "disable"
},
"min-height": {
"type": "String",
"desc": "CSS unit for the minimum height of the editable area",
"default": "10rem",
"examples": [
"15rem", "50vh"
],
"category": "style"
},
"max-height": {
"type": "String",
"desc": "CSS unit for maximum height of the input area",
"examples": [
"1000px", "90vh"
],
"category": "style"
},
"height": {
"type": "String",
"desc": "CSS value to set the height of the editable area",
"examples": [
"100px", "50vh"
],
"category": "style"
},
"definitions": {
"type": "Object",
"desc": "Definition of commands and their buttons to be included in the 'toolbar' prop",
"examples": [
":definitions=\"{ save: { tip: 'Save your work', icon: 'save', label: 'Save', handler: saveWork }, upload: { tip: 'Upload to cloud', icon: 'cloud_upload', label: 'Upload', handler: uploadIt } }\""
],
"definition": {
"label": {
"type": "String",
"desc": "Label of the button",
"examples": [ "Addresses" ]
},
"tip": {
"type": "String",
"desc": "Text to be displayed as a tooltip on hover",
"examples": [ "Add a contact from the Address Book" ]
},
"htmlTip": {
"type": "String",
"desc": "HTML formatted text to be displayed within a tooltip on hover",
"examples": [ "Add a <span class=\"red\">user</span> from the address book" ]
},
"icon": {
"type": "String",
"desc": "Icon of the button",
"examples": [ "fas fa-address-book" ]
},
"key": {
"type": "Number",
"desc": "Keycode of a key to be used together with the <ctrl> key for use as a shortcut to trigger this element",
"examples": [ "12", "36" ]
},
"handler": {
"type": "Function",
"desc": "Either this or \"cmd\" is required. Function for when button gets clicked/tapped.",
"params": null,
"returns": null,
"examples": [ "() => this.uploadFile()" ]
},
"cmd": {
"type": "String",
"desc": "Either this or \"handler\" is required. This must be a valid execCommand method according to the designMode API.",
"examples": [ "insertHTML", "justifyFull" ]
},
"param": {
"type": "String",
"desc": "Only set a param if using a \"cmd\". This is commonly text or HTML to inject, but is highly dependent upon the specific cmd being called.",
"examples": [ "<img src=\"://uploads/001.jpg\" alt=\"nice pic\" />" ]
},
"disable": {
"type": [ "Boolean", "Function" ],
"desc": "Is button disabled? If specifying a function, return a Boolean value.",
"examples": [ "() => this.userIsActive()" ]
},
"type": {
"type": "String",
"desc": "Pass the value \"no-state\" if the button should not have an \"active\" state",
"values": [ null, "no-state" ],
"examples": [ "no-state" ]
},
"fixedLabel": {
"type": "Boolean",
"desc": "Lock the button label, so it doesn't change based on the child option selected."
},
"fixedIcon": {
"type": "Boolean",
"desc": "Lock the button icon, so it doesn't change based on the child option selected."
},
"highlight": {
"type": "Boolean",
"desc": "Highlight the toolbar button, when a child option has been selected."
}
},
"category": "toolbar"
},
"fonts": {
"type": "Object",
"desc": "Object with definitions of fonts",
"examples": [
":fonts=\"{ arial: 'Arial', arial_black: 'Arial Black', comic_sans: 'Comic Sans MS' }\""
],
"category": "toolbar"
},
"toolbar": {
"type": "Array",
"desc": "An array of arrays of Objects/Strings that you use to define the construction of the elements and commands available in the toolbar",
"default": [
[ "left", "center", "right", "justify" ],
[ "bold", "italic", "underline", "strike" ],
[ "undo", "redo" ]
],
"examples": [
[ "left", "center", "right", "justify" ]
],
"category": "toolbar"
},
"toolbar-color": {
"extends": "color",
"desc": "Font color (from the Quasar Palette) of buttons and text in the toolbar",
"category": "toolbar"
},
"toolbar-text-color": {
"extends": "text-color",
"desc": "Text color (from the Quasar Palette) of toolbar commands",
"category": "toolbar"
},
"toolbar-toggle-color": {
"type": "String",
"desc": "Choose the active color (from the Quasar Palette) of toolbar commands button",
"default": "primary",
"examples": [ "secondary", "blue-3" ],
"category": "toolbar"
},
"toolbar-bg": {
"type": "String",
"desc": "Toolbar background color (from Quasar Palette)",
"default": "grey-3",
"examples": [ "secondary", "blue-3" ],
"category": "toolbar"
},
"toolbar-outline": {
"type": "Boolean",
"desc": "Toolbar buttons are rendered \"outlined\"",
"category": "toolbar|style"
},
"toolbar-push": {
"type": "Boolean",
"desc": "Toolbar buttons are rendered as a \"push-button\" type",
"category": "toolbar|style"
},
"toolbar-rounded": {
"type": "Boolean",
"desc": "Toolbar buttons are rendered \"rounded\"",
"category": "toolbar|style"
},
"paragraph-tag": {
"type": "String",
"desc": "Paragraph tag to be used",
"values": [ "div", "p" ],
"category": "behavior",
"addedIn": "v1.14.4"
},
"content-style": {
"type": "Object",
"desc": "Object with CSS properties and values for styling the container of QEditor",
"examples": [ ":content-style=\"{ backgroundColor: '#C0C0C0' }\"" ],
"category": "style"
},
"content-class": {
"type": [ "Object", "Array", "String" ],
"desc": "CSS classes for the input area",
"examples": [
"my-special-class",
":content-class=\"{ 'my-special-class': <condition> }\""
],
"category": "style"
},
"placeholder": {
"type": "String",
"desc": "Text to display as placeholder",
"examples": [ "Type your story here ..." ],
"category": "content",
"addedIn": "v1.9.12"
}
},
"events": {
"input": {
"extends": "input",
"params": {
"value": {
"type": "String",
"desc": "The pure HTML of the content"
}
}
}
},
"methods": {
"runCmd": {
"desc": "Run contentEditable command at caret position and range",
"params": {
"cmd": {
"type": "String",
"desc": "Must be a valid execCommand method according to the designMode API",
"examples": [ "copy", "cut", "paste" ],
"required": true
},
"param": {
"type": "String",
"desc": "The argument to pass to the command",
"examples": [ "<small>Small Text</small>" ]
},
"update": {
"type": "Boolean",
"desc": "Refresh the toolbar",
"default": true
}
}
},
"refreshToolbar": {
"desc": "Hide the link editor if visible and force the instance to re-render"
},
"focus": {
"desc": "Focus on the contentEditable at saved cursor position"
},
"getContentEl": {
"desc": "Retrieve the content of the Editor",
"returns": {
"type": "Element",
"desc": "Provides the pure HTML within the editable area",
"__exemption": [ "examples" ]
}
}
}
}