forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider-utils.json
More file actions
546 lines (502 loc) · 16.5 KB
/
slider-utils.json
File metadata and controls
546 lines (502 loc) · 16.5 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
{
"mixins": [ "mixins/form" ],
"props": {
"min": {
"type": "Number",
"desc": "Minimum value of the model; Set track's minimum value",
"default": 0,
"examples": [ ":min=\"0\"" ],
"category": "model"
},
"max": {
"type": "Number",
"desc": "Maximum value of the model; Set track's maximum value",
"default": 100,
"examples": [ ":max=\"100\"" ],
"category": "model"
},
"inner-min": {
"type": "Number",
"desc": "Inner minimum value of the model; Use in case you need the model value to be inside of the track's min-max values; Needs to be higher or equal to 'min' prop; Defaults to 'min' prop",
"examples": [ ":inner-min=\"0\"" ],
"category": "model",
"addedIn": "v1.17"
},
"inner-max": {
"type": "Number",
"desc": "Inner maximum value of the model; Use in case you need the model value to be inside of the track's min-max values; Needs to be lower or equal to 'max' prop; Defaults to 'max' prop",
"examples": [ ":inner-max=\"100\"" ],
"category": "model",
"addedIn": "v1.17"
},
"step": {
"type": "Number",
"desc": "Specify step amount between valid values (> 0.0); When step equals to 0 it defines infinite granularity",
"default": 1,
"examples": [ ":step=\"1\"" ],
"category": "model"
},
"snap": {
"type": "Boolean",
"desc": "Snap on valid values, rather than sliding freely; Suggestion: use with 'step' prop",
"category": "behavior"
},
"reverse": {
"type": "Boolean",
"desc": "Work in reverse (changes direction)",
"category": "behavior",
"addedIn": "v1.5.0"
},
"vertical": {
"type": "Boolean",
"desc": "Display in vertical direction",
"category": "behavior",
"addedIn": "v1.10.0"
},
"color": {
"extends": "color"
},
"track-color": {
"extends": "color",
"desc": "Color name for the track (can be 'transparent' too) from the Quasar Color Palette",
"addedIn": "v1.17"
},
"track-img": {
"type": "String",
"desc": "Apply a pattern image on the track",
"transformAssetUrls": true,
"examples": [ "~assets/my-pattern.png" ],
"category": "style",
"addedIn": "v1.17"
},
"inner-track-color": {
"extends": "color",
"desc": "Color name for the inner track (can be 'transparent' too) from the Quasar Color Palette",
"addedIn": "v1.17"
},
"inner-track-img": {
"type": "String",
"desc": "Apply a pattern image on the inner track",
"transformAssetUrls": true,
"examples": [ "~assets/my-pattern.png" ],
"category": "style",
"addedIn": "v1.17"
},
"selection-color": {
"extends": "color",
"desc": "Color name for the selection bar (can be 'transparent' too) from the Quasar Color Palette",
"addedIn": "v1.17"
},
"selection-img": {
"type": "String",
"desc": "Apply a pattern image on the selection bar",
"transformAssetUrls": true,
"examples": [ "~assets/my-pattern.png" ],
"category": "style",
"addedIn": "v1.17"
},
"label": {
"type": "Boolean",
"desc": "Popup a label when user clicks/taps on the slider thumb and moves it",
"category": "content"
},
"label-color": {
"extends": "color"
},
"label-text-color": {
"extends": "color",
"addedIn": "v1.1.0"
},
"switch-label-side": {
"type": "Boolean",
"desc": "Switch the position of the label (top <-> bottom or left <-> right)",
"category": "style",
"addedIn": "v1.17"
},
"label-always": {
"type": "Boolean",
"desc": "Always display the label",
"category": "behavior|content"
},
"markers": {
"type": [ "Boolean", "Number" ],
"desc": "Display markers on the track, one for each possible value for the model or using a custom step (when specifying a Number)",
"category": "content",
"examples": [
"markers",
":markers=\"5\""
]
},
"marker-labels": {
"type": [ "Boolean", "Array", "Object", "Function" ],
"tsType": "SliderMarkerLabels",
"desc": "Configure the marker labels (or show the default ones if 'true'); Array of definition Objects or Object with key-value where key is the model and the value is the marker label definition",
"definition": {
"value": {
"type": "Number",
"required": true,
"desc": "Value of equivalent model where to position the marker",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Label to use",
"__exemption": [ "examples" ]
},
"classes": {
"type": [ "String", "Array", "Object" ],
"desc": "CSS classes to be attributed to the marker label",
"examples": [ "my-class-name" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
},
"params": {
"value": {
"type": "Number",
"desc": "The marker value to transform",
"required": true,
"examples": [ "5" ]
}
},
"returns": {
"type": [ "String", "Object" ],
"desc": "Marker definition Object or directly a String for the label of the marker",
"definition": {
"value": {
"type": "Number",
"desc": "Value of equivalent model where to position the marker",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Label to use",
"__exemption": [ "examples" ]
},
"classes": {
"type": [ "String", "Array", "Object" ],
"desc": "CSS classes to be attributed to the marker label",
"examples": [ "my-class-name" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
},
"category": "content",
"examples": [
true,
"[ { value: 0, label: '0%' }, { value: 5, classes: 'my-class', style: { width: '24px' } } ]",
"{ 0: '0%', 5: { label: '5%', classes: 'my-class', style: { width: '24px' } } }",
"val => (10 * val) + '%'",
"val => ({ label: (10 * val) + '%', classes: 'my-class', style: { width: '24px' } })"
],
"addedIn": "v1.17"
},
"marker-labels-class": {
"type": "String",
"desc": "CSS class(es) to apply to the marker labels container",
"examples": [ "text-orange" ],
"category": "style",
"addedIn": "v1.17"
},
"switch-marker-labels-side": {
"type": "Boolean",
"desc": "Switch the position of the marker labels (top <-> bottom or left <-> right)",
"category": "style",
"addedIn": "v1.17"
},
"track-size": {
"type": "String",
"desc": "Track size (including CSS unit)",
"default": "4px",
"examples": [ "35px" ],
"category": "style",
"addedIn": "v1.17"
},
"thumb-size": {
"type": "String",
"desc": "Thumb size (including CSS unit)",
"default": "20px",
"examples": [ "20px" ],
"category": "style",
"addedIn": "v1.17"
},
"thumb-color": {
"extends": "color",
"addedIn": "v1.17"
},
"thumb-path": {
"type": "String",
"desc": "Set custom thumb svg path",
"default": "M 4, 10 a 6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0",
"examples": [ "M5 5 h10 v10 h-10 v-10" ],
"category": "style",
"addedIn": "v1.5.10"
},
"dark": {
"extends": "dark"
},
"dense": {
"extends": "dense"
},
"disable": {
"extends": "disable"
},
"readonly": {
"extends": "readonly"
},
"tabindex": {
"extends": "tabindex"
}
},
"scopedSlots": {
"marker-label": {
"desc": "What to be used to display the marker label",
"addedIn": "v1.17",
"scope": {
"marker": {
"type": "Object",
"desc": "Config for current marker label",
"definition": {
"index": {
"type": "Number",
"desc": "Index of the marker label (0-based)",
"__exemption": [ "examples" ]
},
"value": {
"type": "Number",
"desc": "Equivalent model value for the marker label",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Configured label for the marker",
"__exemption": [ "examples" ]
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
},
"markerList": {
"type": "Array",
"desc": "Array of marker label configs",
"definition": {
"index": {
"type": "Number",
"desc": "Index of the marker label (0-based)",
"__exemption": [ "examples" ]
},
"value": {
"type": "Number",
"desc": "Equivalent model value for the marker label",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Configured label for the marker",
"__exemption": [ "examples" ]
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
},
"markerMap": {
"type": "Object",
"desc": "Object with key-value where key is the model and the value is the marker label config",
"definition": {
"...key": {
"type": "Object",
"desc": "Marker label config",
"definition": {
"index": {
"type": "Number",
"desc": "Index of the marker label (0-based)",
"__exemption": [ "examples" ]
},
"value": {
"type": "Number",
"desc": "Equivalent model value for the marker label",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Configured label for the marker",
"__exemption": [ "examples" ]
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
}
}
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"getStyle": {
"type": "Function",
"desc": "Get CSS style Object to apply to a marker element at respective model value; For perf reasons, use only if requested model value is not already part of markerMap",
"params": {
"value": {
"type": "Number",
"desc": "The marker label equivalent model value",
"required": true,
"examples": [ "5" ]
}
},
"returns": {
"type": "Object",
"desc": "CSS style Object to apply to a marker element at respective model value",
"__exemption": [ "examples" ]
},
"__exemption": [ "examples" ]
}
}
},
"marker-label-group": {
"desc": "What to be used to display the marker label group",
"addedIn": "v1.17",
"scope": {
"markerList": {
"type": "Array",
"desc": "Array of marker label configs",
"definition": {
"index": {
"type": "Number",
"desc": "Index of the marker label (0-based)",
"__exemption": [ "examples" ]
},
"value": {
"type": "Number",
"desc": "Equivalent model value for the marker label",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Configured label for the marker",
"__exemption": [ "examples" ]
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
},
"markerMap": {
"type": "Object",
"desc": "Object with key-value where key is the model and the value is the marker label config",
"definition": {
"...key": {
"type": "Object",
"desc": "Marker label config",
"definition": {
"index": {
"type": "Number",
"desc": "Index of the marker label (0-based)",
"__exemption": [ "examples" ]
},
"value": {
"type": "Number",
"desc": "Equivalent model value for the marker label",
"__exemption": [ "examples" ]
},
"label": {
"type": [ "Number", "String" ],
"desc": "Configured label for the marker",
"__exemption": [ "examples" ]
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"style": {
"type": "Object",
"desc": "Style definitions to be attributed to the marker label",
"examples": [ "{ height: '24px' }" ]
}
}
}
}
},
"classes": {
"type": "String",
"desc": "Required CSS classes to be applied to the marker element",
"__exemption": [ "examples" ]
},
"getStyle": {
"type": "Function",
"desc": "Get CSS style Object to apply to a marker element at respective model value; For perf reasons, use only if requested model value is not already part of markerMap",
"params": {
"value": {
"type": "Number",
"desc": "The marker label equivalent model value",
"required": true,
"examples": [ "5" ]
}
},
"returns": {
"type": "Object",
"desc": "CSS style Object to apply to a marker element at respective model value",
"__exemption": [ "examples" ]
},
"__exemption": [ "examples" ]
}
}
}
},
"events": {
"change": {
"extends": "input",
"desc": "Emitted on lazy model value change (after user slides then releases the thumb)"
},
"pan": {
"desc": "Triggered when user starts panning on the component",
"params": {
"phase": {
"type": "String",
"desc": "Phase of panning",
"values": [ "start", "end" ]
}
},
"addedIn": "v1.14.0"
}
}
}