@stechquick/symphony-cli 0.4.10 → 0.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -17
- package/lib/commands/quick-serve.js +1 -1
- package/lib/commands/studio-sync.d.ts +17 -0
- package/lib/commands/studio-sync.js +69 -0
- package/lib/helpers/socketServer/socketServerHelper.d.ts +2 -0
- package/lib/helpers/socketServer/socketServerHelper.js +40 -0
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
- package/templates/createui/{{UIName}}/static/js/componentList.ts +923 -336
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare var exports, module;
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
interface IPropExtensionUX {
|
|
3
4
|
required?: boolean;
|
|
4
5
|
type?: StringConstructor | BooleanConstructor | NumberConstructor | ObjectConstructor | FunctionConstructor | ArrayConstructor | undefined | null | string;
|
|
5
6
|
showInEditor?: boolean;
|
|
@@ -10,8 +11,11 @@ interface IPropExtensionUX {
|
|
|
10
11
|
multiple?: boolean;
|
|
11
12
|
GroupName?: string;
|
|
12
13
|
MultiLanguageProperty?: boolean;
|
|
14
|
+
propType?: PType;
|
|
15
|
+
isReadOnly?: boolean;
|
|
13
16
|
}
|
|
14
17
|
|
|
18
|
+
type PType = "class" | "text" | "prop" | "attr";
|
|
15
19
|
|
|
16
20
|
type IPropOverrideType = "Append" | "Override" | "Replace";
|
|
17
21
|
|
|
@@ -19,13 +23,27 @@ type ComponentOptions = Record<string, Record<string, IPropExtensionUX>>;
|
|
|
19
23
|
|
|
20
24
|
//#region JS Section
|
|
21
25
|
var componentOptions : ComponentOptions = {
|
|
26
|
+
QReCaptcha: {
|
|
27
|
+
siteKey: {
|
|
28
|
+
type: String
|
|
29
|
+
},
|
|
30
|
+
size: {
|
|
31
|
+
type: String,
|
|
32
|
+
options: ["'compact'", "'normal'", "'invisible'"],
|
|
33
|
+
editorDefaultValue: "'normal'"
|
|
34
|
+
},
|
|
35
|
+
tabindex: {
|
|
36
|
+
type: Number
|
|
37
|
+
}
|
|
38
|
+
},
|
|
22
39
|
VAlert: {
|
|
23
40
|
qValue: {
|
|
24
41
|
type: Boolean
|
|
25
42
|
},
|
|
26
43
|
border: {
|
|
27
44
|
type: String,
|
|
28
|
-
options: ["'left'"]
|
|
45
|
+
options: ["'top'", "'left'"],
|
|
46
|
+
editorDefaultValue: "'top'"
|
|
29
47
|
},
|
|
30
48
|
class: {
|
|
31
49
|
type: String
|
|
@@ -37,7 +55,7 @@ var componentOptions : ComponentOptions = {
|
|
|
37
55
|
},
|
|
38
56
|
closeIcon: {
|
|
39
57
|
type: String,
|
|
40
|
-
editorDefaultValue: "'mdi-close'"
|
|
58
|
+
editorDefaultValue: "'mdi-close-circle'"
|
|
41
59
|
},
|
|
42
60
|
closeLabel: {
|
|
43
61
|
type: String
|
|
@@ -46,6 +64,9 @@ var componentOptions : ComponentOptions = {
|
|
|
46
64
|
type: Boolean,
|
|
47
65
|
editorDefaultValue: "true"
|
|
48
66
|
},
|
|
67
|
+
dark: {
|
|
68
|
+
type: Boolean
|
|
69
|
+
},
|
|
49
70
|
dismissible: {
|
|
50
71
|
type: Boolean,
|
|
51
72
|
editorDefaultValue: "true"
|
|
@@ -58,11 +79,9 @@ var componentOptions : ComponentOptions = {
|
|
|
58
79
|
icon: {
|
|
59
80
|
type: String,
|
|
60
81
|
editorDefaultValue: "'mdi-check-circle'",
|
|
61
|
-
options: ["'mdi-
|
|
62
|
-
},
|
|
63
|
-
type: {
|
|
64
|
-
type: String
|
|
82
|
+
options: ["'mdi-alert-circle'", "'mdi-alert'", "'mdi-check-circle'", "'mdi-information'", "'mdi-help-circle'", "'mdi-close-circle'"]
|
|
65
83
|
},
|
|
84
|
+
|
|
66
85
|
mode: {
|
|
67
86
|
type: String
|
|
68
87
|
},
|
|
@@ -84,16 +103,15 @@ var componentOptions : ComponentOptions = {
|
|
|
84
103
|
transition: {
|
|
85
104
|
type: String
|
|
86
105
|
},
|
|
106
|
+
type: {
|
|
107
|
+
type: String
|
|
108
|
+
},
|
|
87
109
|
visible: {
|
|
88
110
|
type: Boolean,
|
|
89
111
|
editorDefaultValue: "true"
|
|
90
112
|
}
|
|
91
113
|
},
|
|
92
|
-
|
|
93
114
|
VAppBar: {
|
|
94
|
-
dark: {
|
|
95
|
-
type: Boolean
|
|
96
|
-
},
|
|
97
115
|
absolute: {
|
|
98
116
|
type: Boolean
|
|
99
117
|
},
|
|
@@ -103,6 +121,9 @@ var componentOptions : ComponentOptions = {
|
|
|
103
121
|
bottom: {
|
|
104
122
|
type: Boolean
|
|
105
123
|
},
|
|
124
|
+
class: {
|
|
125
|
+
type: String
|
|
126
|
+
},
|
|
106
127
|
clippedLeft: {
|
|
107
128
|
type: Boolean
|
|
108
129
|
},
|
|
@@ -115,6 +136,9 @@ var componentOptions : ComponentOptions = {
|
|
|
115
136
|
color: {
|
|
116
137
|
type: String
|
|
117
138
|
},
|
|
139
|
+
dark: {
|
|
140
|
+
type: Boolean
|
|
141
|
+
},
|
|
118
142
|
dense: {
|
|
119
143
|
type: Boolean
|
|
120
144
|
},
|
|
@@ -143,7 +167,7 @@ var componentOptions : ComponentOptions = {
|
|
|
143
167
|
type: "boolean | string"
|
|
144
168
|
},
|
|
145
169
|
src: {
|
|
146
|
-
type: "
|
|
170
|
+
type: "string | object"
|
|
147
171
|
},
|
|
148
172
|
maxWidth: {
|
|
149
173
|
type: "number | string"
|
|
@@ -169,6 +193,9 @@ var componentOptions : ComponentOptions = {
|
|
|
169
193
|
autofocus: {
|
|
170
194
|
type: Boolean
|
|
171
195
|
},
|
|
196
|
+
avoidClearableTabIndex: {
|
|
197
|
+
type: Boolean
|
|
198
|
+
},
|
|
172
199
|
backgroundColor: {
|
|
173
200
|
type: String
|
|
174
201
|
},
|
|
@@ -190,6 +217,9 @@ var componentOptions : ComponentOptions = {
|
|
|
190
217
|
counterValue: {
|
|
191
218
|
type: Function
|
|
192
219
|
},
|
|
220
|
+
dark: {
|
|
221
|
+
type: Boolean
|
|
222
|
+
},
|
|
193
223
|
disabled: {
|
|
194
224
|
type: Boolean
|
|
195
225
|
},
|
|
@@ -212,9 +242,6 @@ var componentOptions : ComponentOptions = {
|
|
|
212
242
|
errorMessages: {
|
|
213
243
|
type: "Array<any> | string"
|
|
214
244
|
},
|
|
215
|
-
filter: {
|
|
216
|
-
type: Function
|
|
217
|
-
},
|
|
218
245
|
flat: {
|
|
219
246
|
type: Boolean
|
|
220
247
|
},
|
|
@@ -237,7 +264,9 @@ var componentOptions : ComponentOptions = {
|
|
|
237
264
|
type: "string"
|
|
238
265
|
},
|
|
239
266
|
items: {
|
|
240
|
-
type: "Array<any>"
|
|
267
|
+
type: "Array<any>",
|
|
268
|
+
editorDefaultValue: `[{text = 'test1', value = 1},
|
|
269
|
+
{ text = 'test2', value = 2}]`
|
|
241
270
|
},
|
|
242
271
|
itemText: {
|
|
243
272
|
type: "string | Array<any> | Function"
|
|
@@ -251,8 +280,12 @@ var componentOptions : ComponentOptions = {
|
|
|
251
280
|
loading: {
|
|
252
281
|
type: "boolean | string"
|
|
253
282
|
},
|
|
283
|
+
maxlength: {
|
|
284
|
+
type: "number | string",
|
|
285
|
+
propType: "attr"
|
|
286
|
+
},
|
|
254
287
|
menuProps: {
|
|
255
|
-
type: "{maxHeight: number}"
|
|
288
|
+
type: "{closeOnClick: boolean, closeOnContentClick: boolean, disableKeys: boolean, openOnClick: boolean, maxHeight: number, offsetY: boolean, offsetOverflow: boolean, transition: boolean}"
|
|
256
289
|
},
|
|
257
290
|
outlined: {
|
|
258
291
|
type: Boolean
|
|
@@ -266,18 +299,30 @@ var componentOptions : ComponentOptions = {
|
|
|
266
299
|
noFilter: {
|
|
267
300
|
type: Boolean
|
|
268
301
|
},
|
|
302
|
+
persistentPlaceholder: {
|
|
303
|
+
type: Boolean
|
|
304
|
+
},
|
|
269
305
|
prefix: {
|
|
270
306
|
type: String
|
|
271
307
|
},
|
|
272
308
|
prependIcon: {
|
|
273
309
|
type: String
|
|
274
310
|
},
|
|
311
|
+
preventPaste: {
|
|
312
|
+
type: Boolean
|
|
313
|
+
},
|
|
275
314
|
placeholder: {
|
|
276
315
|
type: String
|
|
277
316
|
},
|
|
278
317
|
rules: {
|
|
279
318
|
type: "Array<any>"
|
|
280
319
|
},
|
|
320
|
+
smallChips: {
|
|
321
|
+
type: Boolean
|
|
322
|
+
},
|
|
323
|
+
solo: {
|
|
324
|
+
type: Boolean
|
|
325
|
+
},
|
|
281
326
|
success: {
|
|
282
327
|
type: Boolean
|
|
283
328
|
},
|
|
@@ -287,12 +332,6 @@ var componentOptions : ComponentOptions = {
|
|
|
287
332
|
suffix: {
|
|
288
333
|
type: String
|
|
289
334
|
},
|
|
290
|
-
smallChips: {
|
|
291
|
-
type: Boolean
|
|
292
|
-
},
|
|
293
|
-
solo: {
|
|
294
|
-
type: Boolean
|
|
295
|
-
},
|
|
296
335
|
validateOnBlur: {
|
|
297
336
|
type: Boolean
|
|
298
337
|
},
|
|
@@ -302,6 +341,12 @@ var componentOptions : ComponentOptions = {
|
|
|
302
341
|
},
|
|
303
342
|
tabindex: {
|
|
304
343
|
type: "number | string"
|
|
344
|
+
},
|
|
345
|
+
hint: {
|
|
346
|
+
type: String
|
|
347
|
+
},
|
|
348
|
+
persistentHint: {
|
|
349
|
+
type: Boolean
|
|
305
350
|
}
|
|
306
351
|
},
|
|
307
352
|
VAvatar: {
|
|
@@ -315,6 +360,9 @@ var componentOptions : ComponentOptions = {
|
|
|
315
360
|
height: {
|
|
316
361
|
type: "number | string"
|
|
317
362
|
},
|
|
363
|
+
width: {
|
|
364
|
+
type: "number | string"
|
|
365
|
+
},
|
|
318
366
|
left: {
|
|
319
367
|
type: Boolean
|
|
320
368
|
},
|
|
@@ -340,6 +388,11 @@ var componentOptions : ComponentOptions = {
|
|
|
340
388
|
qValue: {
|
|
341
389
|
type: Boolean
|
|
342
390
|
},
|
|
391
|
+
color: {
|
|
392
|
+
editorDefaultValue: "'primary'",
|
|
393
|
+
type: String,
|
|
394
|
+
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
395
|
+
},
|
|
343
396
|
bordered: {
|
|
344
397
|
type: Boolean
|
|
345
398
|
},
|
|
@@ -352,6 +405,9 @@ var componentOptions : ComponentOptions = {
|
|
|
352
405
|
content: {
|
|
353
406
|
type: String
|
|
354
407
|
},
|
|
408
|
+
dark: {
|
|
409
|
+
type: Boolean
|
|
410
|
+
},
|
|
355
411
|
dot: {
|
|
356
412
|
type: Boolean
|
|
357
413
|
},
|
|
@@ -363,7 +419,7 @@ var componentOptions : ComponentOptions = {
|
|
|
363
419
|
type: Boolean
|
|
364
420
|
},
|
|
365
421
|
label: {
|
|
366
|
-
editorDefaultValue: "'My
|
|
422
|
+
editorDefaultValue: "'My Badge'"
|
|
367
423
|
},
|
|
368
424
|
mode: {
|
|
369
425
|
type: String
|
|
@@ -378,7 +434,8 @@ var componentOptions : ComponentOptions = {
|
|
|
378
434
|
type: String
|
|
379
435
|
},
|
|
380
436
|
overlap: {
|
|
381
|
-
type: Boolean
|
|
437
|
+
type: Boolean,
|
|
438
|
+
editorDefaultValue: "true"
|
|
382
439
|
},
|
|
383
440
|
tile: {
|
|
384
441
|
type: Boolean
|
|
@@ -397,6 +454,77 @@ var componentOptions : ComponentOptions = {
|
|
|
397
454
|
type: Boolean
|
|
398
455
|
}
|
|
399
456
|
},
|
|
457
|
+
VBanner: {
|
|
458
|
+
app: {
|
|
459
|
+
type: Boolean
|
|
460
|
+
},
|
|
461
|
+
class: {
|
|
462
|
+
type: String
|
|
463
|
+
},
|
|
464
|
+
color: {
|
|
465
|
+
type: String
|
|
466
|
+
},
|
|
467
|
+
dark: {
|
|
468
|
+
type: Boolean
|
|
469
|
+
},
|
|
470
|
+
elevation: {
|
|
471
|
+
type: "number | string"
|
|
472
|
+
},
|
|
473
|
+
height: {
|
|
474
|
+
type: "number | string"
|
|
475
|
+
},
|
|
476
|
+
icon: {
|
|
477
|
+
type: String
|
|
478
|
+
},
|
|
479
|
+
"icon-color": {
|
|
480
|
+
type: String
|
|
481
|
+
},
|
|
482
|
+
light: {
|
|
483
|
+
type: Boolean
|
|
484
|
+
},
|
|
485
|
+
"max-height": {
|
|
486
|
+
type: "number | string"
|
|
487
|
+
},
|
|
488
|
+
"max-width": {
|
|
489
|
+
type: "number | string"
|
|
490
|
+
},
|
|
491
|
+
"min-height": {
|
|
492
|
+
type: "number | string"
|
|
493
|
+
},
|
|
494
|
+
"min-width": {
|
|
495
|
+
type: "number | string"
|
|
496
|
+
},
|
|
497
|
+
"mobile-breakpoint": {
|
|
498
|
+
type: "number | string"
|
|
499
|
+
},
|
|
500
|
+
outlined: {
|
|
501
|
+
type: Boolean
|
|
502
|
+
},
|
|
503
|
+
rounded: {
|
|
504
|
+
type: "boolean | string"
|
|
505
|
+
},
|
|
506
|
+
shaped: {
|
|
507
|
+
type: Boolean
|
|
508
|
+
},
|
|
509
|
+
"single-line": {
|
|
510
|
+
type: Boolean
|
|
511
|
+
},
|
|
512
|
+
sticky: {
|
|
513
|
+
type: Boolean
|
|
514
|
+
},
|
|
515
|
+
tag: {
|
|
516
|
+
type: String
|
|
517
|
+
},
|
|
518
|
+
tile: {
|
|
519
|
+
type: Boolean
|
|
520
|
+
},
|
|
521
|
+
value: {
|
|
522
|
+
type: Boolean
|
|
523
|
+
},
|
|
524
|
+
width: {
|
|
525
|
+
type: "number | string"
|
|
526
|
+
},
|
|
527
|
+
},
|
|
400
528
|
VBottomNavigation: {
|
|
401
529
|
qValue: {
|
|
402
530
|
type: "any"
|
|
@@ -404,6 +532,9 @@ var componentOptions : ComponentOptions = {
|
|
|
404
532
|
class: {
|
|
405
533
|
type: String
|
|
406
534
|
},
|
|
535
|
+
dark: {
|
|
536
|
+
type: Boolean
|
|
537
|
+
},
|
|
407
538
|
fixed: {
|
|
408
539
|
type: Boolean
|
|
409
540
|
},
|
|
@@ -440,6 +571,9 @@ var componentOptions : ComponentOptions = {
|
|
|
440
571
|
class: {
|
|
441
572
|
type: String
|
|
442
573
|
},
|
|
574
|
+
dark: {
|
|
575
|
+
type: Boolean
|
|
576
|
+
},
|
|
443
577
|
eager: {
|
|
444
578
|
type: Boolean,
|
|
445
579
|
editorDefaultValue: "true"
|
|
@@ -457,6 +591,9 @@ var componentOptions : ComponentOptions = {
|
|
|
457
591
|
}
|
|
458
592
|
},
|
|
459
593
|
VBreadcrumbs: {
|
|
594
|
+
dark: {
|
|
595
|
+
type: Boolean
|
|
596
|
+
},
|
|
460
597
|
divider: {
|
|
461
598
|
type: String
|
|
462
599
|
},
|
|
@@ -520,6 +657,9 @@ var componentOptions : ComponentOptions = {
|
|
|
520
657
|
absolute: {
|
|
521
658
|
type: Boolean
|
|
522
659
|
},
|
|
660
|
+
activeClass: {
|
|
661
|
+
type: String
|
|
662
|
+
},
|
|
523
663
|
appendIcon: {
|
|
524
664
|
type: String
|
|
525
665
|
},
|
|
@@ -537,15 +677,20 @@ var componentOptions : ComponentOptions = {
|
|
|
537
677
|
type: String,
|
|
538
678
|
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'", "'white'"]
|
|
539
679
|
},
|
|
540
|
-
|
|
680
|
+
dark: {
|
|
541
681
|
type: Boolean
|
|
542
682
|
},
|
|
683
|
+
depressed: {
|
|
684
|
+
type: Boolean,
|
|
685
|
+
editorDefaultValue: "true"
|
|
686
|
+
},
|
|
543
687
|
disabled: {
|
|
544
688
|
type: Boolean
|
|
545
689
|
},
|
|
546
690
|
elevation: {
|
|
547
691
|
type: "number | string",
|
|
548
|
-
options: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24"]
|
|
692
|
+
options: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24"],
|
|
693
|
+
editorDefaultValue: "0"
|
|
549
694
|
},
|
|
550
695
|
fab: {
|
|
551
696
|
type: Boolean
|
|
@@ -554,7 +699,8 @@ var componentOptions : ComponentOptions = {
|
|
|
554
699
|
type: Boolean
|
|
555
700
|
},
|
|
556
701
|
height: {
|
|
557
|
-
type: "number | string"
|
|
702
|
+
type: "number | string",
|
|
703
|
+
editorDefaultValue: "'40px'"
|
|
558
704
|
},
|
|
559
705
|
href: {
|
|
560
706
|
type: "string | object"
|
|
@@ -577,9 +723,6 @@ var componentOptions : ComponentOptions = {
|
|
|
577
723
|
outlined: {
|
|
578
724
|
type: Boolean
|
|
579
725
|
},
|
|
580
|
-
regular: {
|
|
581
|
-
type: Boolean
|
|
582
|
-
},
|
|
583
726
|
prependInnerIcon: {
|
|
584
727
|
type: String
|
|
585
728
|
},
|
|
@@ -601,6 +744,9 @@ var componentOptions : ComponentOptions = {
|
|
|
601
744
|
ripple: {
|
|
602
745
|
type: "boolean | object"
|
|
603
746
|
},
|
|
747
|
+
small: {
|
|
748
|
+
type: Boolean
|
|
749
|
+
},
|
|
604
750
|
tag: {
|
|
605
751
|
type: String
|
|
606
752
|
},
|
|
@@ -652,6 +798,9 @@ var componentOptions : ComponentOptions = {
|
|
|
652
798
|
class: {
|
|
653
799
|
type: String
|
|
654
800
|
},
|
|
801
|
+
dark: {
|
|
802
|
+
type: Boolean
|
|
803
|
+
},
|
|
655
804
|
dense: {
|
|
656
805
|
type: Boolean
|
|
657
806
|
},
|
|
@@ -685,42 +834,38 @@ var componentOptions : ComponentOptions = {
|
|
|
685
834
|
activeClass: {
|
|
686
835
|
type: String
|
|
687
836
|
},
|
|
688
|
-
|
|
689
|
-
type: Boolean
|
|
690
|
-
},
|
|
691
|
-
exact: {
|
|
837
|
+
append: {
|
|
692
838
|
type: Boolean
|
|
693
839
|
},
|
|
694
|
-
|
|
695
|
-
type:
|
|
840
|
+
class: {
|
|
841
|
+
type: String,
|
|
842
|
+
options: ["'custom-scroll'"]
|
|
696
843
|
},
|
|
697
|
-
|
|
698
|
-
type:
|
|
844
|
+
color: {
|
|
845
|
+
type: String,
|
|
846
|
+
options: ["'white'", "'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"],
|
|
847
|
+
editorDefaultValue: "'white'"
|
|
699
848
|
},
|
|
700
|
-
|
|
849
|
+
dark: {
|
|
701
850
|
type: Boolean
|
|
702
851
|
},
|
|
703
|
-
|
|
852
|
+
disabled: {
|
|
704
853
|
type: Boolean
|
|
705
854
|
},
|
|
706
|
-
|
|
707
|
-
type:
|
|
855
|
+
elevation: {
|
|
856
|
+
type: String,
|
|
857
|
+
options: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24"],
|
|
858
|
+
editorDefaultValue: "0"
|
|
708
859
|
},
|
|
709
|
-
|
|
710
|
-
type:
|
|
860
|
+
exact: {
|
|
861
|
+
type: Boolean
|
|
711
862
|
},
|
|
712
863
|
flat: {
|
|
713
864
|
type: Boolean
|
|
714
865
|
},
|
|
715
|
-
|
|
866
|
+
height: {
|
|
716
867
|
type: String
|
|
717
868
|
},
|
|
718
|
-
disabled: {
|
|
719
|
-
type: Boolean
|
|
720
|
-
},
|
|
721
|
-
append: {
|
|
722
|
-
type: Boolean
|
|
723
|
-
},
|
|
724
869
|
hover: {
|
|
725
870
|
type: Boolean
|
|
726
871
|
},
|
|
@@ -733,113 +878,55 @@ var componentOptions : ComponentOptions = {
|
|
|
733
878
|
link: {
|
|
734
879
|
type: Boolean
|
|
735
880
|
},
|
|
736
|
-
|
|
737
|
-
type: "string |
|
|
738
|
-
},
|
|
739
|
-
raised: {
|
|
740
|
-
type: Boolean
|
|
881
|
+
loaderHeight: {
|
|
882
|
+
type: "string | number"
|
|
741
883
|
},
|
|
742
|
-
|
|
884
|
+
loading: {
|
|
743
885
|
type: Boolean
|
|
744
886
|
},
|
|
745
|
-
|
|
746
|
-
type:
|
|
747
|
-
},
|
|
748
|
-
to: {
|
|
749
|
-
type: "string | object"
|
|
887
|
+
maxHeight: {
|
|
888
|
+
type: "number | string"
|
|
750
889
|
},
|
|
751
|
-
|
|
890
|
+
nuxt: {
|
|
752
891
|
type: Boolean
|
|
753
892
|
},
|
|
754
|
-
|
|
755
|
-
type: String,
|
|
756
|
-
options: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24"]
|
|
757
|
-
},
|
|
758
|
-
height: {
|
|
759
|
-
type: String
|
|
760
|
-
},
|
|
761
|
-
width: {
|
|
762
|
-
type: String
|
|
763
|
-
},
|
|
764
|
-
color: {
|
|
765
|
-
type: String,
|
|
766
|
-
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
767
|
-
},
|
|
768
|
-
visible: {
|
|
893
|
+
outlined: {
|
|
769
894
|
type: Boolean,
|
|
770
895
|
editorDefaultValue: "true"
|
|
771
896
|
},
|
|
772
|
-
|
|
773
|
-
VSparkline: {
|
|
774
|
-
|
|
775
|
-
autoDraw: {
|
|
897
|
+
raised: {
|
|
776
898
|
type: Boolean
|
|
777
899
|
},
|
|
778
|
-
|
|
900
|
+
replace: {
|
|
779
901
|
type: Boolean
|
|
780
902
|
},
|
|
781
|
-
|
|
782
|
-
type: Number
|
|
783
|
-
},
|
|
784
|
-
|
|
785
|
-
autoDrawEasing: {
|
|
786
|
-
type: String
|
|
787
|
-
},
|
|
788
|
-
color: {
|
|
789
|
-
type: String
|
|
790
|
-
},
|
|
791
|
-
fill: {
|
|
903
|
+
ripple: {
|
|
792
904
|
type: Boolean
|
|
793
905
|
},
|
|
794
|
-
|
|
795
|
-
type:
|
|
796
|
-
editorDefaultValue: "['#f72047', '#ffd200', '#1feaea']"
|
|
906
|
+
rounded: {
|
|
907
|
+
type: "boolean | string"
|
|
797
908
|
},
|
|
798
|
-
|
|
799
|
-
type:
|
|
800
|
-
|
|
909
|
+
shaped: {
|
|
910
|
+
type: Boolean
|
|
801
911
|
},
|
|
802
|
-
|
|
912
|
+
tag: {
|
|
803
913
|
type: String
|
|
804
914
|
},
|
|
805
|
-
|
|
806
|
-
type: Number
|
|
807
|
-
},
|
|
808
|
-
labels: {
|
|
809
|
-
type: Array
|
|
810
|
-
},
|
|
811
|
-
lineWidth: {
|
|
812
|
-
type: Number,
|
|
813
|
-
editorDefaultValue: "2",
|
|
814
|
-
},
|
|
815
|
-
showLabels: {
|
|
816
|
-
type: Boolean,
|
|
817
|
-
|
|
818
|
-
},
|
|
819
|
-
radius: {
|
|
820
|
-
type: Number
|
|
821
|
-
},
|
|
822
|
-
smooth: {
|
|
823
|
-
type: String,
|
|
824
|
-
editorDefaultValue: "10",
|
|
825
|
-
},
|
|
826
|
-
type: {
|
|
915
|
+
target: {
|
|
827
916
|
type: String
|
|
828
917
|
},
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
type: Array,
|
|
832
|
-
editorDefaultValue: "[0, 2, 5, 9, 5, 10, 3, 5, 0, 0, 1, 8, 2, 9, 0]",
|
|
918
|
+
tile: {
|
|
919
|
+
type: Boolean
|
|
833
920
|
},
|
|
834
|
-
|
|
835
|
-
type:
|
|
921
|
+
to: {
|
|
922
|
+
type: "string | object"
|
|
836
923
|
},
|
|
837
924
|
visible: {
|
|
838
925
|
type: Boolean,
|
|
839
926
|
editorDefaultValue: "true"
|
|
840
927
|
},
|
|
841
|
-
|
|
842
|
-
type:
|
|
928
|
+
width: {
|
|
929
|
+
type: String
|
|
843
930
|
}
|
|
844
931
|
},
|
|
845
932
|
VCarousel: {
|
|
@@ -848,9 +935,6 @@ var componentOptions : ComponentOptions = {
|
|
|
848
935
|
},
|
|
849
936
|
class: {
|
|
850
937
|
type: String
|
|
851
|
-
},
|
|
852
|
-
append: {
|
|
853
|
-
|
|
854
938
|
},
|
|
855
939
|
continuous: {
|
|
856
940
|
type: Boolean
|
|
@@ -858,6 +942,9 @@ var componentOptions : ComponentOptions = {
|
|
|
858
942
|
cycle: {
|
|
859
943
|
type: Boolean
|
|
860
944
|
},
|
|
945
|
+
dark: {
|
|
946
|
+
type: Boolean
|
|
947
|
+
},
|
|
861
948
|
delimiterIcon: {
|
|
862
949
|
type: String
|
|
863
950
|
},
|
|
@@ -873,22 +960,9 @@ var componentOptions : ComponentOptions = {
|
|
|
873
960
|
interval: {
|
|
874
961
|
type: "number | string"
|
|
875
962
|
},
|
|
876
|
-
|
|
877
|
-
type: Boolean
|
|
878
|
-
},
|
|
879
|
-
showArrowsOnHover: {
|
|
880
|
-
type: Boolean
|
|
881
|
-
},
|
|
882
|
-
vertical: {
|
|
963
|
+
light: {
|
|
883
964
|
type: Boolean
|
|
884
965
|
},
|
|
885
|
-
verticalDelimiters: {
|
|
886
|
-
type: String
|
|
887
|
-
},
|
|
888
|
-
visible: {
|
|
889
|
-
type: Boolean,
|
|
890
|
-
editorDefaultValue: "true"
|
|
891
|
-
},
|
|
892
966
|
mandatory: {
|
|
893
967
|
type: Boolean
|
|
894
968
|
},
|
|
@@ -913,27 +987,43 @@ var componentOptions : ComponentOptions = {
|
|
|
913
987
|
reverse: {
|
|
914
988
|
type: Boolean
|
|
915
989
|
},
|
|
990
|
+
showArrows: {
|
|
991
|
+
type: Boolean
|
|
992
|
+
},
|
|
993
|
+
showArrowsOnHover: {
|
|
994
|
+
type: Boolean
|
|
995
|
+
},
|
|
996
|
+
tabindex: {
|
|
997
|
+
type: "number | string"
|
|
998
|
+
},
|
|
916
999
|
touch: {
|
|
917
1000
|
type: Object
|
|
918
1001
|
},
|
|
919
1002
|
touchless: {
|
|
920
1003
|
type: Boolean
|
|
921
1004
|
},
|
|
922
|
-
|
|
923
|
-
type:
|
|
924
|
-
}
|
|
1005
|
+
vertical: {
|
|
1006
|
+
type: Boolean
|
|
1007
|
+
},
|
|
1008
|
+
verticalDelimiters: {
|
|
1009
|
+
type: String
|
|
1010
|
+
},
|
|
1011
|
+
visible: {
|
|
1012
|
+
type: Boolean,
|
|
1013
|
+
editorDefaultValue: "true"
|
|
1014
|
+
},
|
|
925
1015
|
},
|
|
926
1016
|
VCarouselItem: {
|
|
927
1017
|
qValue: {
|
|
928
1018
|
type: "any"
|
|
929
1019
|
},
|
|
930
|
-
eager: {
|
|
931
|
-
type: Boolean,
|
|
932
|
-
editorDefaultValue: "true"
|
|
933
|
-
},
|
|
934
1020
|
activeClass: {
|
|
935
1021
|
type: String
|
|
936
1022
|
},
|
|
1023
|
+
eager: {
|
|
1024
|
+
type: Boolean,
|
|
1025
|
+
editorDefaultValue: "true"
|
|
1026
|
+
},
|
|
937
1027
|
append: {
|
|
938
1028
|
type: Boolean
|
|
939
1029
|
},
|
|
@@ -943,6 +1033,9 @@ var componentOptions : ComponentOptions = {
|
|
|
943
1033
|
exact: {
|
|
944
1034
|
type: Boolean
|
|
945
1035
|
},
|
|
1036
|
+
href: {
|
|
1037
|
+
type: "string | object"
|
|
1038
|
+
},
|
|
946
1039
|
link: {
|
|
947
1040
|
type: Boolean
|
|
948
1041
|
},
|
|
@@ -952,6 +1045,9 @@ var componentOptions : ComponentOptions = {
|
|
|
952
1045
|
replace: {
|
|
953
1046
|
type: Boolean
|
|
954
1047
|
},
|
|
1048
|
+
tabindex: {
|
|
1049
|
+
type: "number | string"
|
|
1050
|
+
},
|
|
955
1051
|
target: {
|
|
956
1052
|
type: String
|
|
957
1053
|
},
|
|
@@ -961,17 +1057,10 @@ var componentOptions : ComponentOptions = {
|
|
|
961
1057
|
transition: {
|
|
962
1058
|
type: String
|
|
963
1059
|
},
|
|
964
|
-
href: {
|
|
965
|
-
type: "string | object"
|
|
966
|
-
},
|
|
967
1060
|
visible: {
|
|
968
1061
|
type: Boolean,
|
|
969
1062
|
editorDefaultValue: "true"
|
|
970
|
-
},
|
|
971
|
-
tabindex: {
|
|
972
|
-
type: "number | string"
|
|
973
1063
|
}
|
|
974
|
-
|
|
975
1064
|
},
|
|
976
1065
|
VCheckbox: {
|
|
977
1066
|
qValue: {
|
|
@@ -994,6 +1083,12 @@ var componentOptions : ComponentOptions = {
|
|
|
994
1083
|
compareTableValue: {
|
|
995
1084
|
type: String
|
|
996
1085
|
},
|
|
1086
|
+
dark: {
|
|
1087
|
+
type: Boolean
|
|
1088
|
+
},
|
|
1089
|
+
dense: {
|
|
1090
|
+
type: Boolean
|
|
1091
|
+
},
|
|
997
1092
|
disabled: {
|
|
998
1093
|
type: Boolean
|
|
999
1094
|
},
|
|
@@ -1012,9 +1107,6 @@ var componentOptions : ComponentOptions = {
|
|
|
1012
1107
|
indeterminateIcon: {
|
|
1013
1108
|
type: String
|
|
1014
1109
|
},
|
|
1015
|
-
inputValue: {
|
|
1016
|
-
type: "any"
|
|
1017
|
-
},
|
|
1018
1110
|
label: {
|
|
1019
1111
|
editorDefaultValue: "'My CheckBox'"
|
|
1020
1112
|
},
|
|
@@ -1067,18 +1159,27 @@ var componentOptions : ComponentOptions = {
|
|
|
1067
1159
|
activeClass: {
|
|
1068
1160
|
type: String
|
|
1069
1161
|
},
|
|
1070
|
-
class: {
|
|
1071
|
-
type: String
|
|
1072
|
-
},
|
|
1073
1162
|
active: {
|
|
1074
1163
|
type: Boolean
|
|
1075
1164
|
},
|
|
1076
1165
|
append: {
|
|
1077
1166
|
type: Boolean
|
|
1078
1167
|
},
|
|
1168
|
+
class: {
|
|
1169
|
+
type: String
|
|
1170
|
+
},
|
|
1079
1171
|
close: {
|
|
1080
1172
|
type: Boolean
|
|
1081
1173
|
},
|
|
1174
|
+
closeIcon: {
|
|
1175
|
+
type: String,
|
|
1176
|
+
options: ["'mdi-delete'", "'mdi-close'", "'mdi-close-circle'"]
|
|
1177
|
+
},
|
|
1178
|
+
color: {
|
|
1179
|
+
editorDefaultValue: "'primary'",
|
|
1180
|
+
type: String,
|
|
1181
|
+
options: ["'default'", "'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
1182
|
+
},
|
|
1082
1183
|
draggable: {
|
|
1083
1184
|
type: Boolean
|
|
1084
1185
|
},
|
|
@@ -1097,10 +1198,13 @@ var componentOptions : ComponentOptions = {
|
|
|
1097
1198
|
label: {
|
|
1098
1199
|
type: Boolean
|
|
1099
1200
|
},
|
|
1201
|
+
large: {
|
|
1202
|
+
type: Boolean
|
|
1203
|
+
},
|
|
1100
1204
|
link: {
|
|
1101
1205
|
type: Boolean
|
|
1102
1206
|
},
|
|
1103
|
-
|
|
1207
|
+
outlined: {
|
|
1104
1208
|
type: Boolean
|
|
1105
1209
|
},
|
|
1106
1210
|
pill: {
|
|
@@ -1112,32 +1216,17 @@ var componentOptions : ComponentOptions = {
|
|
|
1112
1216
|
ripple: {
|
|
1113
1217
|
type: "boolean | object"
|
|
1114
1218
|
},
|
|
1115
|
-
tag: {
|
|
1116
|
-
type: String
|
|
1117
|
-
},
|
|
1118
|
-
to: {
|
|
1119
|
-
type: "string | object"
|
|
1120
|
-
},
|
|
1121
1219
|
small: {
|
|
1122
1220
|
type: Boolean
|
|
1123
1221
|
},
|
|
1124
|
-
|
|
1125
|
-
type:
|
|
1126
|
-
},
|
|
1127
|
-
xLarge: {
|
|
1128
|
-
type: Boolean
|
|
1129
|
-
},
|
|
1130
|
-
color: {
|
|
1131
|
-
editorDefaultValue: "'primary'",
|
|
1132
|
-
type: String,
|
|
1133
|
-
options: ["'default'", "'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
1222
|
+
tabindex: {
|
|
1223
|
+
type: "number | string"
|
|
1134
1224
|
},
|
|
1135
|
-
|
|
1136
|
-
type: String
|
|
1137
|
-
options: ["'mdi-delete'", "'mdi-close'", "'mdi-close-circle'"]
|
|
1225
|
+
tag: {
|
|
1226
|
+
type: String
|
|
1138
1227
|
},
|
|
1139
|
-
|
|
1140
|
-
type:
|
|
1228
|
+
to: {
|
|
1229
|
+
type: "string | object"
|
|
1141
1230
|
},
|
|
1142
1231
|
textColor: {
|
|
1143
1232
|
type: String
|
|
@@ -1146,12 +1235,17 @@ var componentOptions : ComponentOptions = {
|
|
|
1146
1235
|
type: Boolean,
|
|
1147
1236
|
editorDefaultValue: "true"
|
|
1148
1237
|
},
|
|
1149
|
-
|
|
1150
|
-
type:
|
|
1151
|
-
}
|
|
1238
|
+
xSmall: {
|
|
1239
|
+
type: Boolean
|
|
1240
|
+
},
|
|
1241
|
+
xLarge: {
|
|
1242
|
+
type: Boolean
|
|
1243
|
+
},
|
|
1152
1244
|
},
|
|
1153
1245
|
VChipGroup: {
|
|
1154
|
-
|
|
1246
|
+
qValue: {
|
|
1247
|
+
type: String
|
|
1248
|
+
},
|
|
1155
1249
|
activeClass: {
|
|
1156
1250
|
type: String
|
|
1157
1251
|
},
|
|
@@ -1164,6 +1258,9 @@ var componentOptions : ComponentOptions = {
|
|
|
1164
1258
|
column: {
|
|
1165
1259
|
type: Boolean
|
|
1166
1260
|
},
|
|
1261
|
+
dark: {
|
|
1262
|
+
type: Boolean
|
|
1263
|
+
},
|
|
1167
1264
|
mandatory: {
|
|
1168
1265
|
type: Boolean
|
|
1169
1266
|
},
|
|
@@ -1182,16 +1279,13 @@ var componentOptions : ComponentOptions = {
|
|
|
1182
1279
|
showArrows: {
|
|
1183
1280
|
type: Boolean
|
|
1184
1281
|
},
|
|
1185
|
-
|
|
1186
|
-
type:
|
|
1282
|
+
tabindex: {
|
|
1283
|
+
type: "number | string"
|
|
1187
1284
|
},
|
|
1188
1285
|
visible: {
|
|
1189
1286
|
type: Boolean,
|
|
1190
1287
|
editorDefaultValue: "true"
|
|
1191
1288
|
},
|
|
1192
|
-
tabindex: {
|
|
1193
|
-
type: "number | string"
|
|
1194
|
-
}
|
|
1195
1289
|
},
|
|
1196
1290
|
VCombobox: {
|
|
1197
1291
|
qValue: {
|
|
@@ -1207,14 +1301,14 @@ var componentOptions : ComponentOptions = {
|
|
|
1207
1301
|
type: Boolean,
|
|
1208
1302
|
editorDefaultValue: "true"
|
|
1209
1303
|
},
|
|
1210
|
-
|
|
1304
|
+
autofocus: {
|
|
1211
1305
|
type: Boolean
|
|
1212
1306
|
},
|
|
1213
|
-
|
|
1307
|
+
autoSelectFirst: {
|
|
1214
1308
|
type: Boolean
|
|
1215
1309
|
},
|
|
1216
|
-
|
|
1217
|
-
type: Boolean
|
|
1310
|
+
avoidClearableTabIndex: {
|
|
1311
|
+
type: Boolean
|
|
1218
1312
|
},
|
|
1219
1313
|
backgroundColor: {
|
|
1220
1314
|
type: String,
|
|
@@ -1226,6 +1320,7 @@ var componentOptions : ComponentOptions = {
|
|
|
1226
1320
|
chips: {
|
|
1227
1321
|
type: Boolean
|
|
1228
1322
|
},
|
|
1323
|
+
|
|
1229
1324
|
class: {
|
|
1230
1325
|
type: String
|
|
1231
1326
|
},
|
|
@@ -1253,6 +1348,9 @@ var componentOptions : ComponentOptions = {
|
|
|
1253
1348
|
counterValue: {
|
|
1254
1349
|
type: Function
|
|
1255
1350
|
},
|
|
1351
|
+
dark: {
|
|
1352
|
+
type: Boolean
|
|
1353
|
+
},
|
|
1256
1354
|
deletableChips: {
|
|
1257
1355
|
type: Boolean
|
|
1258
1356
|
},
|
|
@@ -1346,6 +1444,9 @@ var componentOptions : ComponentOptions = {
|
|
|
1346
1444
|
persistentHint: {
|
|
1347
1445
|
type: Boolean
|
|
1348
1446
|
},
|
|
1447
|
+
persistentPlaceholder: {
|
|
1448
|
+
type: Boolean,
|
|
1449
|
+
},
|
|
1349
1450
|
placeholder: {
|
|
1350
1451
|
type: String
|
|
1351
1452
|
},
|
|
@@ -1355,9 +1456,15 @@ var componentOptions : ComponentOptions = {
|
|
|
1355
1456
|
prependInnerIcon: {
|
|
1356
1457
|
type: String
|
|
1357
1458
|
},
|
|
1459
|
+
preventPaste: {
|
|
1460
|
+
type: Boolean
|
|
1461
|
+
},
|
|
1358
1462
|
readonly: {
|
|
1359
1463
|
type: Boolean
|
|
1360
1464
|
},
|
|
1465
|
+
rounded: {
|
|
1466
|
+
type: Boolean
|
|
1467
|
+
},
|
|
1361
1468
|
rules: {
|
|
1362
1469
|
type: "Array<any>"
|
|
1363
1470
|
},
|
|
@@ -1367,6 +1474,9 @@ var componentOptions : ComponentOptions = {
|
|
|
1367
1474
|
singleLine: {
|
|
1368
1475
|
type: Boolean
|
|
1369
1476
|
},
|
|
1477
|
+
smallChips: {
|
|
1478
|
+
type: Boolean
|
|
1479
|
+
},
|
|
1370
1480
|
solo: {
|
|
1371
1481
|
type: Boolean
|
|
1372
1482
|
},
|
|
@@ -1401,9 +1511,14 @@ var componentOptions : ComponentOptions = {
|
|
|
1401
1511
|
}
|
|
1402
1512
|
},
|
|
1403
1513
|
VContainer: {
|
|
1514
|
+
eager: {
|
|
1515
|
+
type: Boolean,
|
|
1516
|
+
editorDefaultValue: "true"
|
|
1517
|
+
},
|
|
1404
1518
|
class: {
|
|
1405
1519
|
type: String,
|
|
1406
|
-
editorDefaultValue: "'container container--fluid'"
|
|
1520
|
+
editorDefaultValue: "'container container--fluid'",
|
|
1521
|
+
options: ["'devx-datagrid-header-left'", "'devx-datagrid-header-right'", "'devx-datagrid-header-center'", "'devx-datagrid-header-text-compact'"]
|
|
1407
1522
|
},
|
|
1408
1523
|
visible: {
|
|
1409
1524
|
type: Boolean,
|
|
@@ -1420,6 +1535,94 @@ var componentOptions : ComponentOptions = {
|
|
|
1420
1535
|
disabled: {
|
|
1421
1536
|
type: Boolean
|
|
1422
1537
|
},
|
|
1538
|
+
disableFiltering: {
|
|
1539
|
+
type: Boolean
|
|
1540
|
+
},
|
|
1541
|
+
disablePagination: {
|
|
1542
|
+
type: Boolean
|
|
1543
|
+
},
|
|
1544
|
+
disableSort: {
|
|
1545
|
+
type: Boolean
|
|
1546
|
+
},
|
|
1547
|
+
expanded: {
|
|
1548
|
+
type: "Array<any>",
|
|
1549
|
+
},
|
|
1550
|
+
footerProps: {
|
|
1551
|
+
editorDefaultValue: `{showFirstLastPage = true,
|
|
1552
|
+
firstIcon = 'mdi-arrow-collapse-left',
|
|
1553
|
+
lastIcon = 'mdi-arrow-collapse-right',
|
|
1554
|
+
prevIcon = 'mdi-minus',
|
|
1555
|
+
nextIcon = 'mdi-plus'}`
|
|
1556
|
+
},
|
|
1557
|
+
groupBy: {
|
|
1558
|
+
type: "Array<any> | boolean"
|
|
1559
|
+
},
|
|
1560
|
+
groupDesc: {
|
|
1561
|
+
type: "Array<any> | boolean"
|
|
1562
|
+
},
|
|
1563
|
+
items: {
|
|
1564
|
+
editorDefaultValue: `[{name = 'Frozens Yogurt', calories = 159, fat = '6.0', carbs = 24, protein = '4.0', iron = '1%'},
|
|
1565
|
+
{name = 'Ice cream sandwich', calories = 237, fat = '9.0', carbs = 37, protein = '4.3', iron = '1%'},
|
|
1566
|
+
{name = 'Eclair', calories = 262, fat = '16.0', carbs = 23, protein = '6.0', iron = '7%'},
|
|
1567
|
+
{name = 'Cupcake', calories = 305, fat = '3.7', carbs = 67, protein = '4.3', iron = '8%'},
|
|
1568
|
+
{name = 'Gingerbread',calories = 356, fat = '16.0', carbs = 49, protein = '3.9', iron = '16%'},
|
|
1569
|
+
{name = 'Jelly bean', calories = 375, fat = '0.0', carbs = 94, protein = '0.0', iron = '0%'},
|
|
1570
|
+
{name = 'Lollipop', calories = 392, fat = '0.2', carbs = 98, protein = '0.0', iron = '2 %'},
|
|
1571
|
+
{name = 'Honeycomb', calories = 408, fat = '3.2', carbs = 87, protein = '6.5', iron = '45%'},
|
|
1572
|
+
{name = 'Donut', calories = 452, fat = '25.0', carbs = 51, protein = '4.9', iron = '22%'},
|
|
1573
|
+
{name = 'KitKat', calories = 518, fat = '26.0', carbs = 65, protein = '7', iron= '6 %'}]`
|
|
1574
|
+
},
|
|
1575
|
+
itemsPerPage: {
|
|
1576
|
+
editorDefaultValue: "5"
|
|
1577
|
+
},
|
|
1578
|
+
loading: {
|
|
1579
|
+
type: "string | boolean",
|
|
1580
|
+
},
|
|
1581
|
+
locale: {
|
|
1582
|
+
type: String
|
|
1583
|
+
},
|
|
1584
|
+
mobileBreakpoint: {
|
|
1585
|
+
type: "number | string",
|
|
1586
|
+
editorDefaultValue: "md",
|
|
1587
|
+
runTimeDefaultValue: "md"
|
|
1588
|
+
},
|
|
1589
|
+
multiSort: {
|
|
1590
|
+
type: Boolean,
|
|
1591
|
+
},
|
|
1592
|
+
mustSort: {
|
|
1593
|
+
type: Boolean,
|
|
1594
|
+
},
|
|
1595
|
+
noDataText: {
|
|
1596
|
+
type: String,
|
|
1597
|
+
},
|
|
1598
|
+
noResultsText: {
|
|
1599
|
+
type: String
|
|
1600
|
+
},
|
|
1601
|
+
options: {},
|
|
1602
|
+
page: {
|
|
1603
|
+
type: Number
|
|
1604
|
+
},
|
|
1605
|
+
search: {
|
|
1606
|
+
type: String
|
|
1607
|
+
},
|
|
1608
|
+
selectableKey: {
|
|
1609
|
+
type: String
|
|
1610
|
+
},
|
|
1611
|
+
serverItemsLength: {
|
|
1612
|
+
type: Number
|
|
1613
|
+
},
|
|
1614
|
+
singleExpand: {
|
|
1615
|
+
type: Boolean
|
|
1616
|
+
},
|
|
1617
|
+
singleSelect: {
|
|
1618
|
+
type: Boolean
|
|
1619
|
+
},
|
|
1620
|
+
sortBy: {
|
|
1621
|
+
type: "string | Array<any>"
|
|
1622
|
+
},
|
|
1623
|
+
sortDesc: {
|
|
1624
|
+
type: "boolean | Array<any>"
|
|
1625
|
+
},
|
|
1423
1626
|
visible: {
|
|
1424
1627
|
type: Boolean,
|
|
1425
1628
|
editorDefaultValue: "true"
|
|
@@ -1439,7 +1642,7 @@ var componentOptions : ComponentOptions = {
|
|
|
1439
1642
|
type: "number | string"
|
|
1440
1643
|
},
|
|
1441
1644
|
height: {
|
|
1442
|
-
type:"number | string"
|
|
1645
|
+
type: "number | string"
|
|
1443
1646
|
},
|
|
1444
1647
|
itemHeight: {
|
|
1445
1648
|
type: "number | string"
|
|
@@ -1474,7 +1677,8 @@ var componentOptions : ComponentOptions = {
|
|
|
1474
1677
|
type: String
|
|
1475
1678
|
},
|
|
1476
1679
|
class: {
|
|
1477
|
-
type: String
|
|
1680
|
+
type: String,
|
|
1681
|
+
options: ["'v-table-denser'", "'v-table-hover-hidden'", "'v-table-border-b-hidden'", "'stickytable'"]
|
|
1478
1682
|
},
|
|
1479
1683
|
calculateWidths: {
|
|
1480
1684
|
type: Boolean
|
|
@@ -1485,6 +1689,9 @@ var componentOptions : ComponentOptions = {
|
|
|
1485
1689
|
customGroup: {
|
|
1486
1690
|
type: Function
|
|
1487
1691
|
},
|
|
1692
|
+
dark: {
|
|
1693
|
+
type: Boolean
|
|
1694
|
+
},
|
|
1488
1695
|
disableFiltering: {
|
|
1489
1696
|
type: Boolean
|
|
1490
1697
|
},
|
|
@@ -1577,6 +1784,7 @@ nextIcon = 'mdi-plus'}`
|
|
|
1577
1784
|
},
|
|
1578
1785
|
mobileBreakpoint: {
|
|
1579
1786
|
type: "number | string",
|
|
1787
|
+
editorDefaultValue: "600"
|
|
1580
1788
|
},
|
|
1581
1789
|
multiSort: {
|
|
1582
1790
|
type: Boolean,
|
|
@@ -1587,7 +1795,7 @@ nextIcon = 'mdi-plus'}`
|
|
|
1587
1795
|
noDataText: {
|
|
1588
1796
|
type: String,
|
|
1589
1797
|
},
|
|
1590
|
-
|
|
1798
|
+
noResultsText: {
|
|
1591
1799
|
type: String
|
|
1592
1800
|
},
|
|
1593
1801
|
options: {},
|
|
@@ -1631,12 +1839,18 @@ nextIcon = 'mdi-plus'}`
|
|
|
1631
1839
|
tabindex: {
|
|
1632
1840
|
type: "number | string"
|
|
1633
1841
|
},
|
|
1842
|
+
uniqueSlots: {
|
|
1843
|
+
type: Boolean
|
|
1844
|
+
}
|
|
1634
1845
|
},
|
|
1635
1846
|
VDatePicker: {
|
|
1636
1847
|
qValue: {
|
|
1637
1848
|
type: "Array<any> | string",
|
|
1638
1849
|
editorDefaultValue: "Date.now().toFormattedString('YYYY-MM-DD')"
|
|
1639
1850
|
},
|
|
1851
|
+
dark: {
|
|
1852
|
+
type: Boolean
|
|
1853
|
+
},
|
|
1640
1854
|
dayFormat: {
|
|
1641
1855
|
type: String
|
|
1642
1856
|
},
|
|
@@ -1717,6 +1931,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
1717
1931
|
titleDateFormat: {
|
|
1718
1932
|
type: Function
|
|
1719
1933
|
},
|
|
1934
|
+
weekdayFormat: {
|
|
1935
|
+
type: Function
|
|
1936
|
+
},
|
|
1720
1937
|
type: {
|
|
1721
1938
|
type: String
|
|
1722
1939
|
},
|
|
@@ -1735,8 +1952,11 @@ nextIcon = 'mdi-plus'}`
|
|
|
1735
1952
|
class: {
|
|
1736
1953
|
type: String
|
|
1737
1954
|
},
|
|
1738
|
-
contentClass:{
|
|
1739
|
-
type:String
|
|
1955
|
+
contentClass: {
|
|
1956
|
+
type: String
|
|
1957
|
+
},
|
|
1958
|
+
dark: {
|
|
1959
|
+
type: Boolean
|
|
1740
1960
|
},
|
|
1741
1961
|
eager: {
|
|
1742
1962
|
type: Boolean,
|
|
@@ -1788,7 +2008,6 @@ nextIcon = 'mdi-plus'}`
|
|
|
1788
2008
|
},
|
|
1789
2009
|
attach: {
|
|
1790
2010
|
type: String,
|
|
1791
|
-
editorDefaultValue: "",
|
|
1792
2011
|
showInEditor: false
|
|
1793
2012
|
}
|
|
1794
2013
|
},
|
|
@@ -1796,6 +2015,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
1796
2015
|
class: {
|
|
1797
2016
|
type: String
|
|
1798
2017
|
},
|
|
2018
|
+
dark: {
|
|
2019
|
+
type: Boolean
|
|
2020
|
+
},
|
|
1799
2021
|
inset: {
|
|
1800
2022
|
type: Boolean
|
|
1801
2023
|
},
|
|
@@ -1808,6 +2030,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
1808
2030
|
},
|
|
1809
2031
|
},
|
|
1810
2032
|
VEditDialog: {
|
|
2033
|
+
dark: {
|
|
2034
|
+
type: Boolean
|
|
2035
|
+
},
|
|
1811
2036
|
eager: {
|
|
1812
2037
|
type: Boolean,
|
|
1813
2038
|
editorDefaultValue: "true"
|
|
@@ -1892,6 +2117,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
1892
2117
|
activeClass: {
|
|
1893
2118
|
type: String
|
|
1894
2119
|
},
|
|
2120
|
+
dark: {
|
|
2121
|
+
type: Boolean
|
|
2122
|
+
},
|
|
1895
2123
|
disabled: {
|
|
1896
2124
|
type: Boolean
|
|
1897
2125
|
},
|
|
@@ -1964,6 +2192,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
1964
2192
|
counterSizeString: {
|
|
1965
2193
|
type: String
|
|
1966
2194
|
},
|
|
2195
|
+
dark: {
|
|
2196
|
+
type: Boolean
|
|
2197
|
+
},
|
|
1967
2198
|
dense: {
|
|
1968
2199
|
type: Boolean
|
|
1969
2200
|
},
|
|
@@ -2085,6 +2316,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2085
2316
|
class: {
|
|
2086
2317
|
type: String
|
|
2087
2318
|
},
|
|
2319
|
+
dark: {
|
|
2320
|
+
type: Boolean
|
|
2321
|
+
},
|
|
2088
2322
|
fixed: {
|
|
2089
2323
|
type: Boolean
|
|
2090
2324
|
},
|
|
@@ -2134,7 +2368,10 @@ nextIcon = 'mdi-plus'}`
|
|
|
2134
2368
|
type: String
|
|
2135
2369
|
},
|
|
2136
2370
|
color: {
|
|
2137
|
-
type: String
|
|
2371
|
+
type: String
|
|
2372
|
+
},
|
|
2373
|
+
dark: {
|
|
2374
|
+
type: Boolean
|
|
2138
2375
|
},
|
|
2139
2376
|
dense: {
|
|
2140
2377
|
type: Boolean
|
|
@@ -2188,6 +2425,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2188
2425
|
contain: {
|
|
2189
2426
|
type: Boolean
|
|
2190
2427
|
},
|
|
2428
|
+
dark: {
|
|
2429
|
+
type: Boolean
|
|
2430
|
+
},
|
|
2191
2431
|
eager: {
|
|
2192
2432
|
type: Boolean,
|
|
2193
2433
|
editorDefaultValue: "true"
|
|
@@ -2249,15 +2489,33 @@ nextIcon = 'mdi-plus'}`
|
|
|
2249
2489
|
activeClass: {
|
|
2250
2490
|
type: String
|
|
2251
2491
|
},
|
|
2492
|
+
dark: {
|
|
2493
|
+
type: Boolean
|
|
2494
|
+
},
|
|
2252
2495
|
dense: {
|
|
2253
2496
|
type: Boolean
|
|
2254
2497
|
},
|
|
2255
2498
|
expand: {
|
|
2256
2499
|
type: Boolean
|
|
2257
2500
|
},
|
|
2501
|
+
maxHeight: {
|
|
2502
|
+
type: String
|
|
2503
|
+
},
|
|
2504
|
+
maxWidth: {
|
|
2505
|
+
type: String
|
|
2506
|
+
},
|
|
2507
|
+
rounded: {
|
|
2508
|
+
type: Boolean
|
|
2509
|
+
},
|
|
2510
|
+
shaped: {
|
|
2511
|
+
type: Boolean
|
|
2512
|
+
},
|
|
2258
2513
|
subheader: {
|
|
2259
2514
|
type: Boolean
|
|
2260
2515
|
},
|
|
2516
|
+
tabindex: {
|
|
2517
|
+
type: "number | string"
|
|
2518
|
+
},
|
|
2261
2519
|
tag: {
|
|
2262
2520
|
type: String
|
|
2263
2521
|
},
|
|
@@ -2267,22 +2525,13 @@ nextIcon = 'mdi-plus'}`
|
|
|
2267
2525
|
tile: {
|
|
2268
2526
|
type: Boolean
|
|
2269
2527
|
},
|
|
2270
|
-
twoLine: {
|
|
2271
|
-
type: Boolean,
|
|
2272
|
-
},
|
|
2273
|
-
maxHeight: {
|
|
2274
|
-
type: String
|
|
2275
|
-
},
|
|
2276
|
-
maxWidth: {
|
|
2277
|
-
type: String
|
|
2528
|
+
twoLine: {
|
|
2529
|
+
type: Boolean,
|
|
2278
2530
|
},
|
|
2279
2531
|
visible: {
|
|
2280
2532
|
type: Boolean,
|
|
2281
2533
|
editorDefaultValue: "true"
|
|
2282
2534
|
},
|
|
2283
|
-
tabindex: {
|
|
2284
|
-
type: "number | string"
|
|
2285
|
-
}
|
|
2286
2535
|
},
|
|
2287
2536
|
VListGroup: {
|
|
2288
2537
|
qValue: {
|
|
@@ -2337,6 +2586,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2337
2586
|
color: {
|
|
2338
2587
|
type: String
|
|
2339
2588
|
},
|
|
2589
|
+
dark: {
|
|
2590
|
+
type: Boolean
|
|
2591
|
+
},
|
|
2340
2592
|
dense: {
|
|
2341
2593
|
type: Boolean
|
|
2342
2594
|
},
|
|
@@ -2358,6 +2610,21 @@ nextIcon = 'mdi-plus'}`
|
|
|
2358
2610
|
link: {
|
|
2359
2611
|
type: Boolean
|
|
2360
2612
|
},
|
|
2613
|
+
nuxt: {
|
|
2614
|
+
type: Boolean
|
|
2615
|
+
},
|
|
2616
|
+
replace: {
|
|
2617
|
+
type: Boolean
|
|
2618
|
+
},
|
|
2619
|
+
ripple: {
|
|
2620
|
+
type: Boolean
|
|
2621
|
+
},
|
|
2622
|
+
selectable: {
|
|
2623
|
+
type: Boolean
|
|
2624
|
+
},
|
|
2625
|
+
tabindex: {
|
|
2626
|
+
type: "number | string"
|
|
2627
|
+
},
|
|
2361
2628
|
tag: {
|
|
2362
2629
|
type: String
|
|
2363
2630
|
},
|
|
@@ -2373,25 +2640,10 @@ nextIcon = 'mdi-plus'}`
|
|
|
2373
2640
|
twoLine: {
|
|
2374
2641
|
type: Boolean
|
|
2375
2642
|
},
|
|
2376
|
-
selectable: {
|
|
2377
|
-
type: Boolean
|
|
2378
|
-
},
|
|
2379
2643
|
visible: {
|
|
2380
2644
|
type: Boolean,
|
|
2381
2645
|
editorDefaultValue: "true"
|
|
2382
2646
|
},
|
|
2383
|
-
nuxt: {
|
|
2384
|
-
type: Boolean
|
|
2385
|
-
},
|
|
2386
|
-
replace: {
|
|
2387
|
-
type: Boolean
|
|
2388
|
-
},
|
|
2389
|
-
ripple: {
|
|
2390
|
-
type: Boolean
|
|
2391
|
-
},
|
|
2392
|
-
tabindex: {
|
|
2393
|
-
type: "number | string"
|
|
2394
|
-
}
|
|
2395
2647
|
},
|
|
2396
2648
|
VListItemAction: {
|
|
2397
2649
|
class: {
|
|
@@ -2416,9 +2668,15 @@ nextIcon = 'mdi-plus'}`
|
|
|
2416
2668
|
qValue: {
|
|
2417
2669
|
type: "any"
|
|
2418
2670
|
},
|
|
2671
|
+
activeClass: {
|
|
2672
|
+
type: String
|
|
2673
|
+
},
|
|
2419
2674
|
class: {
|
|
2420
2675
|
type: String
|
|
2421
2676
|
},
|
|
2677
|
+
dark: {
|
|
2678
|
+
type: Boolean
|
|
2679
|
+
},
|
|
2422
2680
|
mandatory: {
|
|
2423
2681
|
type: Boolean
|
|
2424
2682
|
},
|
|
@@ -2441,6 +2699,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2441
2699
|
class: {
|
|
2442
2700
|
type: String
|
|
2443
2701
|
},
|
|
2702
|
+
dark: {
|
|
2703
|
+
type: Boolean
|
|
2704
|
+
},
|
|
2444
2705
|
closeOnContentClick: {
|
|
2445
2706
|
type: Boolean,
|
|
2446
2707
|
editorDefaultValue: "true"
|
|
@@ -2528,6 +2789,12 @@ nextIcon = 'mdi-plus'}`
|
|
|
2528
2789
|
clipped: {
|
|
2529
2790
|
type: Boolean
|
|
2530
2791
|
},
|
|
2792
|
+
color: {
|
|
2793
|
+
type: String
|
|
2794
|
+
},
|
|
2795
|
+
dark: {
|
|
2796
|
+
type: Boolean
|
|
2797
|
+
},
|
|
2531
2798
|
disableResizeWatcher: {
|
|
2532
2799
|
type: Boolean
|
|
2533
2800
|
},
|
|
@@ -2537,21 +2804,27 @@ nextIcon = 'mdi-plus'}`
|
|
|
2537
2804
|
fixed: {
|
|
2538
2805
|
type: Boolean
|
|
2539
2806
|
},
|
|
2807
|
+
miniVariant: {
|
|
2808
|
+
type: Boolean
|
|
2809
|
+
},
|
|
2810
|
+
mobileBreakpoint: {
|
|
2811
|
+
type: "number | string"
|
|
2812
|
+
},
|
|
2540
2813
|
permanent: {
|
|
2541
2814
|
type: Boolean,
|
|
2542
2815
|
},
|
|
2543
2816
|
right: {
|
|
2544
2817
|
type: Boolean,
|
|
2545
2818
|
},
|
|
2546
|
-
|
|
2547
|
-
type:
|
|
2819
|
+
temporary: {
|
|
2820
|
+
type: Boolean,
|
|
2548
2821
|
},
|
|
2549
2822
|
visible: {
|
|
2550
2823
|
type: Boolean,
|
|
2551
2824
|
editorDefaultValue: "true"
|
|
2552
2825
|
},
|
|
2553
|
-
|
|
2554
|
-
type:
|
|
2826
|
+
width: {
|
|
2827
|
+
type: String
|
|
2555
2828
|
},
|
|
2556
2829
|
},
|
|
2557
2830
|
VOverflowBtn: {
|
|
@@ -2591,6 +2864,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2591
2864
|
counterValue: {
|
|
2592
2865
|
type: Function
|
|
2593
2866
|
},
|
|
2867
|
+
dark: {
|
|
2868
|
+
type: Boolean
|
|
2869
|
+
},
|
|
2594
2870
|
deletableChips: {
|
|
2595
2871
|
type: Boolean
|
|
2596
2872
|
},
|
|
@@ -2694,6 +2970,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2694
2970
|
class: {
|
|
2695
2971
|
type: String
|
|
2696
2972
|
},
|
|
2973
|
+
dark: {
|
|
2974
|
+
type: Boolean
|
|
2975
|
+
},
|
|
2697
2976
|
opacity: {
|
|
2698
2977
|
type: "number | string"
|
|
2699
2978
|
},
|
|
@@ -2715,12 +2994,15 @@ nextIcon = 'mdi-plus'}`
|
|
|
2715
2994
|
class: {
|
|
2716
2995
|
type: String
|
|
2717
2996
|
},
|
|
2997
|
+
dark: {
|
|
2998
|
+
type: Boolean
|
|
2999
|
+
},
|
|
2718
3000
|
disabled: {
|
|
2719
3001
|
type: Boolean
|
|
2720
3002
|
},
|
|
2721
3003
|
length: {
|
|
2722
3004
|
type: String,
|
|
2723
|
-
editorDefaultValue: "
|
|
3005
|
+
editorDefaultValue: "5"
|
|
2724
3006
|
},
|
|
2725
3007
|
nextIcon: {
|
|
2726
3008
|
type: String
|
|
@@ -2746,23 +3028,24 @@ nextIcon = 'mdi-plus'}`
|
|
|
2746
3028
|
class: {
|
|
2747
3029
|
type: String
|
|
2748
3030
|
},
|
|
2749
|
-
|
|
2750
|
-
type: String,
|
|
2751
|
-
editorDefaultValue: "'https://cdn.vuetifyjs.com/images/parallax/material.jpg'"
|
|
2752
|
-
},
|
|
3031
|
+
|
|
2753
3032
|
height: {
|
|
2754
3033
|
type: String
|
|
2755
3034
|
},
|
|
2756
3035
|
srcset: {
|
|
2757
3036
|
type: String
|
|
2758
3037
|
},
|
|
3038
|
+
src: {
|
|
3039
|
+
type: String,
|
|
3040
|
+
editorDefaultValue: "'https://cdn.vuetifyjs.com/images/parallax/material.jpg'"
|
|
3041
|
+
},
|
|
3042
|
+
tabindex: {
|
|
3043
|
+
type: "number | string"
|
|
3044
|
+
},
|
|
2759
3045
|
visible: {
|
|
2760
3046
|
type: Boolean,
|
|
2761
3047
|
editorDefaultValue: "true"
|
|
2762
3048
|
},
|
|
2763
|
-
tabindex: {
|
|
2764
|
-
type: "number | string"
|
|
2765
|
-
}
|
|
2766
3049
|
},
|
|
2767
3050
|
VProgressCircular: {
|
|
2768
3051
|
qValue: {
|
|
@@ -2824,6 +3107,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2824
3107
|
type: String,
|
|
2825
3108
|
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
2826
3109
|
},
|
|
3110
|
+
dark: {
|
|
3111
|
+
type: Boolean
|
|
3112
|
+
},
|
|
2827
3113
|
fixed: {
|
|
2828
3114
|
type: Boolean
|
|
2829
3115
|
},
|
|
@@ -2856,6 +3142,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2856
3142
|
type: String,
|
|
2857
3143
|
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
2858
3144
|
},
|
|
3145
|
+
dark: {
|
|
3146
|
+
type: Boolean
|
|
3147
|
+
},
|
|
2859
3148
|
disabled: {
|
|
2860
3149
|
type: Boolean
|
|
2861
3150
|
},
|
|
@@ -2899,7 +3188,7 @@ nextIcon = 'mdi-plus'}`
|
|
|
2899
3188
|
},
|
|
2900
3189
|
VRadioGroup: {
|
|
2901
3190
|
qValue: {
|
|
2902
|
-
type:
|
|
3191
|
+
type: "any"
|
|
2903
3192
|
},
|
|
2904
3193
|
appendIcon: {
|
|
2905
3194
|
type: String
|
|
@@ -2920,6 +3209,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
2920
3209
|
compareTableValue: {
|
|
2921
3210
|
type: String
|
|
2922
3211
|
},
|
|
3212
|
+
dark: {
|
|
3213
|
+
type: Boolean
|
|
3214
|
+
},
|
|
2923
3215
|
disabled: {
|
|
2924
3216
|
type: Boolean
|
|
2925
3217
|
},
|
|
@@ -3000,6 +3292,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3000
3292
|
color: {
|
|
3001
3293
|
type: String
|
|
3002
3294
|
},
|
|
3295
|
+
dark: {
|
|
3296
|
+
type: Boolean
|
|
3297
|
+
},
|
|
3003
3298
|
dense: {
|
|
3004
3299
|
type: Boolean
|
|
3005
3300
|
},
|
|
@@ -3048,9 +3343,6 @@ nextIcon = 'mdi-plus'}`
|
|
|
3048
3343
|
tickSize: {
|
|
3049
3344
|
type: "number | string"
|
|
3050
3345
|
},
|
|
3051
|
-
ticks: {
|
|
3052
|
-
type: "boolean | string"
|
|
3053
|
-
},
|
|
3054
3346
|
trackColor: {
|
|
3055
3347
|
type: String
|
|
3056
3348
|
},
|
|
@@ -3086,18 +3378,21 @@ nextIcon = 'mdi-plus'}`
|
|
|
3086
3378
|
step: {
|
|
3087
3379
|
type: "number | string"
|
|
3088
3380
|
},
|
|
3089
|
-
validateOnBlur: {
|
|
3090
|
-
type: Boolean
|
|
3091
|
-
},
|
|
3092
3381
|
thumbSize: {
|
|
3093
3382
|
type: "number | string"
|
|
3094
3383
|
},
|
|
3095
3384
|
tickLabels: {
|
|
3096
3385
|
type: "Array<any>"
|
|
3097
3386
|
},
|
|
3387
|
+
ticks: {
|
|
3388
|
+
type: "boolean | string"
|
|
3389
|
+
},
|
|
3098
3390
|
rules: {
|
|
3099
3391
|
type: "Array<any>"
|
|
3100
3392
|
},
|
|
3393
|
+
validateOnBlur: {
|
|
3394
|
+
type: Boolean
|
|
3395
|
+
},
|
|
3101
3396
|
vertical: {
|
|
3102
3397
|
type: Boolean
|
|
3103
3398
|
},
|
|
@@ -3122,6 +3417,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3122
3417
|
closeDelay: {
|
|
3123
3418
|
type: "number | string"
|
|
3124
3419
|
},
|
|
3420
|
+
dark: {
|
|
3421
|
+
type: Boolean
|
|
3422
|
+
},
|
|
3125
3423
|
dense: {
|
|
3126
3424
|
type: Boolean
|
|
3127
3425
|
},
|
|
@@ -3192,10 +3490,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3192
3490
|
class: {
|
|
3193
3491
|
type: String
|
|
3194
3492
|
},
|
|
3195
|
-
|
|
3493
|
+
dark: {
|
|
3196
3494
|
type: Boolean
|
|
3197
3495
|
},
|
|
3198
|
-
|
|
3199
3496
|
clearable: {
|
|
3200
3497
|
type: Boolean
|
|
3201
3498
|
},
|
|
@@ -3270,12 +3567,18 @@ nextIcon = 'mdi-plus'}`
|
|
|
3270
3567
|
persistentHint: {
|
|
3271
3568
|
type: Boolean
|
|
3272
3569
|
},
|
|
3570
|
+
persistentPlaceholder: {
|
|
3571
|
+
type: Boolean
|
|
3572
|
+
},
|
|
3273
3573
|
placeholder: {
|
|
3274
3574
|
type: String
|
|
3275
3575
|
},
|
|
3276
3576
|
prependInnerIcon: {
|
|
3277
3577
|
type: String
|
|
3278
3578
|
},
|
|
3579
|
+
rounded: {
|
|
3580
|
+
type: Boolean
|
|
3581
|
+
},
|
|
3279
3582
|
solo: {
|
|
3280
3583
|
type: Boolean
|
|
3281
3584
|
},
|
|
@@ -3303,12 +3606,18 @@ nextIcon = 'mdi-plus'}`
|
|
|
3303
3606
|
},
|
|
3304
3607
|
tabindex: {
|
|
3305
3608
|
type: "number | string"
|
|
3609
|
+
},
|
|
3610
|
+
autofocus:{
|
|
3611
|
+
type: Boolean
|
|
3306
3612
|
}
|
|
3307
3613
|
},
|
|
3308
3614
|
VSheet: {
|
|
3309
3615
|
class: {
|
|
3310
3616
|
type: String
|
|
3311
3617
|
},
|
|
3618
|
+
dark: {
|
|
3619
|
+
type: Boolean
|
|
3620
|
+
},
|
|
3312
3621
|
elevation: {
|
|
3313
3622
|
type: "number | string"
|
|
3314
3623
|
},
|
|
@@ -3326,6 +3635,65 @@ nextIcon = 'mdi-plus'}`
|
|
|
3326
3635
|
editorDefaultValue: "true"
|
|
3327
3636
|
},
|
|
3328
3637
|
},
|
|
3638
|
+
VSkeletonLoader: {
|
|
3639
|
+
boilerPlate: {
|
|
3640
|
+
type: Boolean
|
|
3641
|
+
},
|
|
3642
|
+
dark: {
|
|
3643
|
+
type: Boolean
|
|
3644
|
+
},
|
|
3645
|
+
elevation: {
|
|
3646
|
+
type: "number | string",
|
|
3647
|
+
editorDefaultValue: "4",
|
|
3648
|
+
options: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24"]
|
|
3649
|
+
},
|
|
3650
|
+
height: {
|
|
3651
|
+
type: "number | string",
|
|
3652
|
+
editorDefaultValue: "'200'"
|
|
3653
|
+
},
|
|
3654
|
+
width: {
|
|
3655
|
+
type: "number | string",
|
|
3656
|
+
editorDefaultValue: "'200'"
|
|
3657
|
+
},
|
|
3658
|
+
light: {
|
|
3659
|
+
type: Boolean
|
|
3660
|
+
},
|
|
3661
|
+
loading: {
|
|
3662
|
+
type: Boolean
|
|
3663
|
+
},
|
|
3664
|
+
maxHeight: {
|
|
3665
|
+
type: "number | string"
|
|
3666
|
+
},
|
|
3667
|
+
maxWidth: {
|
|
3668
|
+
type: "number | string"
|
|
3669
|
+
},
|
|
3670
|
+
minHeight: {
|
|
3671
|
+
type: "number | string"
|
|
3672
|
+
},
|
|
3673
|
+
minWidth: {
|
|
3674
|
+
type: "number | string"
|
|
3675
|
+
},
|
|
3676
|
+
tile: {
|
|
3677
|
+
type: Boolean
|
|
3678
|
+
},
|
|
3679
|
+
type: {
|
|
3680
|
+
editorDefaultValue: "'card'",
|
|
3681
|
+
type: String,
|
|
3682
|
+
options: ["'actions'", "'article'", "'avatar'", "'button'", "'card'", "'card-avatar'", "'card-heading'", "'chip'",
|
|
3683
|
+
"'date-picker'", "'date-picker-options'", "'date-picker-days'", "'heading'", "'image'", "'list-item'", "'list-item-avatar'",
|
|
3684
|
+
"'list-item-two-line'", "'list-item-avatar-two-line'", "'list-item-three-line'", "'list-item-avatar-three-line'",
|
|
3685
|
+
"'paragraph'", "'sentences'", "'table'", "'table-heading'", "'table-thead'", "'table-tbody'", "'table-row-divider'",
|
|
3686
|
+
"'table-row'", "'table-cell'", "'table-tfoot'", "'text'"
|
|
3687
|
+
]
|
|
3688
|
+
},
|
|
3689
|
+
types: {
|
|
3690
|
+
type: Object
|
|
3691
|
+
},
|
|
3692
|
+
visible: {
|
|
3693
|
+
type: Boolean,
|
|
3694
|
+
editorDefaultValue: "true"
|
|
3695
|
+
},
|
|
3696
|
+
},
|
|
3329
3697
|
VSlideGroup: {
|
|
3330
3698
|
qValue: {
|
|
3331
3699
|
type: "any"
|
|
@@ -3381,6 +3749,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3381
3749
|
class: {
|
|
3382
3750
|
type: String
|
|
3383
3751
|
},
|
|
3752
|
+
dark: {
|
|
3753
|
+
type: Boolean
|
|
3754
|
+
},
|
|
3384
3755
|
disabled: {
|
|
3385
3756
|
type: Boolean
|
|
3386
3757
|
},
|
|
@@ -3473,49 +3844,119 @@ nextIcon = 'mdi-plus'}`
|
|
|
3473
3844
|
contentClass: {
|
|
3474
3845
|
type: String
|
|
3475
3846
|
},
|
|
3847
|
+
dark: {
|
|
3848
|
+
type: Boolean
|
|
3849
|
+
},
|
|
3476
3850
|
elevation: {
|
|
3477
3851
|
type: "number | string"
|
|
3478
3852
|
},
|
|
3479
3853
|
multiLine: {
|
|
3480
3854
|
type: Boolean
|
|
3481
3855
|
},
|
|
3482
|
-
outlined: {
|
|
3483
|
-
type: Boolean
|
|
3856
|
+
outlined: {
|
|
3857
|
+
type: Boolean
|
|
3858
|
+
},
|
|
3859
|
+
rounded: {
|
|
3860
|
+
type: "number | string"
|
|
3861
|
+
},
|
|
3862
|
+
shaped: {
|
|
3863
|
+
type: Boolean
|
|
3864
|
+
},
|
|
3865
|
+
text: {
|
|
3866
|
+
type: Boolean
|
|
3867
|
+
},
|
|
3868
|
+
tile: {
|
|
3869
|
+
type: Boolean
|
|
3870
|
+
},
|
|
3871
|
+
timeout: {
|
|
3872
|
+
type: "number | string"
|
|
3873
|
+
},
|
|
3874
|
+
transition: {
|
|
3875
|
+
type: String
|
|
3876
|
+
},
|
|
3877
|
+
left: {
|
|
3878
|
+
type: Boolean
|
|
3879
|
+
},
|
|
3880
|
+
top: {
|
|
3881
|
+
type: Boolean
|
|
3882
|
+
},
|
|
3883
|
+
right: {
|
|
3884
|
+
type: Boolean
|
|
3885
|
+
},
|
|
3886
|
+
visible: {
|
|
3887
|
+
type: Boolean,
|
|
3888
|
+
editorDefaultValue: "true"
|
|
3889
|
+
},
|
|
3890
|
+
vertical: {
|
|
3891
|
+
type: Boolean
|
|
3892
|
+
}
|
|
3893
|
+
},
|
|
3894
|
+
VSparkline: {
|
|
3895
|
+
autoDraw: {
|
|
3896
|
+
type: Boolean
|
|
3897
|
+
},
|
|
3898
|
+
autoDrawDuration: {
|
|
3899
|
+
type: Number
|
|
3900
|
+
},
|
|
3901
|
+
autoDrawEasing: {
|
|
3902
|
+
type: String
|
|
3903
|
+
},
|
|
3904
|
+
autoLineWidth: {
|
|
3905
|
+
type: Boolean
|
|
3906
|
+
},
|
|
3907
|
+
color: {
|
|
3908
|
+
type: String
|
|
3909
|
+
},
|
|
3910
|
+
fill: {
|
|
3911
|
+
type: Boolean
|
|
3912
|
+
},
|
|
3913
|
+
gradient: {
|
|
3914
|
+
type: Array,
|
|
3915
|
+
editorDefaultValue: "['#f72047', '#ffd200', '#1feaea']"
|
|
3916
|
+
},
|
|
3917
|
+
gradientDirection: {
|
|
3918
|
+
type: String,
|
|
3919
|
+
},
|
|
3920
|
+
height: {
|
|
3921
|
+
type: String
|
|
3922
|
+
},
|
|
3923
|
+
labelSize: {
|
|
3924
|
+
type: Number
|
|
3925
|
+
},
|
|
3926
|
+
labels: {
|
|
3927
|
+
type: Array
|
|
3484
3928
|
},
|
|
3485
|
-
|
|
3486
|
-
type:
|
|
3929
|
+
lineWidth: {
|
|
3930
|
+
type: Number,
|
|
3931
|
+
editorDefaultValue: "2",
|
|
3487
3932
|
},
|
|
3488
|
-
|
|
3489
|
-
type:
|
|
3933
|
+
radius: {
|
|
3934
|
+
type: Number
|
|
3490
3935
|
},
|
|
3491
|
-
|
|
3492
|
-
type: Boolean
|
|
3936
|
+
showLabels: {
|
|
3937
|
+
type: Boolean,
|
|
3493
3938
|
},
|
|
3494
|
-
|
|
3495
|
-
type:
|
|
3939
|
+
smooth: {
|
|
3940
|
+
type: String,
|
|
3941
|
+
editorDefaultValue: "10",
|
|
3496
3942
|
},
|
|
3497
|
-
|
|
3943
|
+
tabindex: {
|
|
3498
3944
|
type: "number | string"
|
|
3499
3945
|
},
|
|
3500
|
-
|
|
3946
|
+
type: {
|
|
3501
3947
|
type: String
|
|
3502
3948
|
},
|
|
3503
|
-
|
|
3504
|
-
type:
|
|
3505
|
-
|
|
3506
|
-
top: {
|
|
3507
|
-
type: Boolean
|
|
3508
|
-
},
|
|
3509
|
-
right: {
|
|
3510
|
-
type: Boolean
|
|
3949
|
+
value: {
|
|
3950
|
+
type: Array,
|
|
3951
|
+
editorDefaultValue: "[0, 2, 5, 9, 5, 10, 3, 5, 0, 0, 1, 8, 2, 9, 0]",
|
|
3511
3952
|
},
|
|
3512
3953
|
visible: {
|
|
3513
3954
|
type: Boolean,
|
|
3514
3955
|
editorDefaultValue: "true"
|
|
3515
3956
|
},
|
|
3516
|
-
|
|
3517
|
-
type:
|
|
3518
|
-
}
|
|
3957
|
+
width: {
|
|
3958
|
+
type: Number
|
|
3959
|
+
},
|
|
3519
3960
|
},
|
|
3520
3961
|
VSpeedDial: {
|
|
3521
3962
|
qValue: {
|
|
@@ -3572,6 +4013,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3572
4013
|
class: {
|
|
3573
4014
|
type: String
|
|
3574
4015
|
},
|
|
4016
|
+
dark: {
|
|
4017
|
+
type: Boolean
|
|
4018
|
+
},
|
|
3575
4019
|
nonLinear: {
|
|
3576
4020
|
type: Boolean
|
|
3577
4021
|
},
|
|
@@ -3655,6 +4099,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3655
4099
|
type: String,
|
|
3656
4100
|
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
3657
4101
|
},
|
|
4102
|
+
dark: {
|
|
4103
|
+
type: Boolean
|
|
4104
|
+
},
|
|
3658
4105
|
disabled: {
|
|
3659
4106
|
type: Boolean
|
|
3660
4107
|
},
|
|
@@ -3687,6 +4134,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3687
4134
|
prependInnerIcon: {
|
|
3688
4135
|
type: String
|
|
3689
4136
|
},
|
|
4137
|
+
readonly: {
|
|
4138
|
+
type: Boolean
|
|
4139
|
+
},
|
|
3690
4140
|
ripple: {
|
|
3691
4141
|
type: "boolean | object"
|
|
3692
4142
|
},
|
|
@@ -3719,7 +4169,11 @@ nextIcon = 'mdi-plus'}`
|
|
|
3719
4169
|
type: String
|
|
3720
4170
|
},
|
|
3721
4171
|
class: {
|
|
3722
|
-
type: String
|
|
4172
|
+
type: String,
|
|
4173
|
+
options: ["'tab-header-border-radius-left'", "'tab-header-border-radius-right'"]
|
|
4174
|
+
},
|
|
4175
|
+
dark: {
|
|
4176
|
+
type: Boolean
|
|
3723
4177
|
},
|
|
3724
4178
|
link: {
|
|
3725
4179
|
type: Boolean
|
|
@@ -3780,7 +4234,8 @@ nextIcon = 'mdi-plus'}`
|
|
|
3780
4234
|
type: String
|
|
3781
4235
|
},
|
|
3782
4236
|
class: {
|
|
3783
|
-
type: String
|
|
4237
|
+
type: String,
|
|
4238
|
+
options: ["'tab-dense'"]
|
|
3784
4239
|
},
|
|
3785
4240
|
centered: {
|
|
3786
4241
|
type: Boolean
|
|
@@ -3788,8 +4243,8 @@ nextIcon = 'mdi-plus'}`
|
|
|
3788
4243
|
centerActive: {
|
|
3789
4244
|
type: Boolean
|
|
3790
4245
|
},
|
|
3791
|
-
|
|
3792
|
-
type:
|
|
4246
|
+
dark: {
|
|
4247
|
+
type: Boolean
|
|
3793
4248
|
},
|
|
3794
4249
|
fixedTabs: {
|
|
3795
4250
|
type: Boolean
|
|
@@ -3797,11 +4252,16 @@ nextIcon = 'mdi-plus'}`
|
|
|
3797
4252
|
grow: {
|
|
3798
4253
|
type: Boolean
|
|
3799
4254
|
},
|
|
4255
|
+
height: {
|
|
4256
|
+
type: String
|
|
4257
|
+
},
|
|
3800
4258
|
iconsAndText: {
|
|
3801
4259
|
type: Boolean
|
|
3802
4260
|
},
|
|
3803
|
-
|
|
3804
|
-
type: "number | string"
|
|
4261
|
+
mobileBreakpoint: {
|
|
4262
|
+
type: "number | string",
|
|
4263
|
+
editorDefaultValue: "md",
|
|
4264
|
+
runTimeDefaultValue: "md"
|
|
3805
4265
|
},
|
|
3806
4266
|
nextIcon: {
|
|
3807
4267
|
type: String
|
|
@@ -3827,10 +4287,10 @@ nextIcon = 'mdi-plus'}`
|
|
|
3827
4287
|
class: {
|
|
3828
4288
|
type: String
|
|
3829
4289
|
},
|
|
3830
|
-
|
|
4290
|
+
continuous: {
|
|
3831
4291
|
type: Boolean
|
|
3832
4292
|
},
|
|
3833
|
-
|
|
4293
|
+
dark: {
|
|
3834
4294
|
type: Boolean
|
|
3835
4295
|
},
|
|
3836
4296
|
max: {
|
|
@@ -3857,6 +4317,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3857
4317
|
touchless: {
|
|
3858
4318
|
type: Boolean
|
|
3859
4319
|
},
|
|
4320
|
+
vertical: {
|
|
4321
|
+
type: Boolean
|
|
4322
|
+
},
|
|
3860
4323
|
visible: {
|
|
3861
4324
|
type: Boolean,
|
|
3862
4325
|
editorDefaultValue: "true"
|
|
@@ -3893,17 +4356,15 @@ nextIcon = 'mdi-plus'}`
|
|
|
3893
4356
|
clearable: {
|
|
3894
4357
|
type: Boolean
|
|
3895
4358
|
},
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
compareValue: {
|
|
3900
|
-
type: "any"
|
|
4359
|
+
|
|
4360
|
+
compareTableValue: {
|
|
4361
|
+
type: String
|
|
3901
4362
|
},
|
|
3902
4363
|
compareText: {
|
|
3903
4364
|
type: String
|
|
3904
4365
|
},
|
|
3905
|
-
|
|
3906
|
-
type:
|
|
4366
|
+
compareValue: {
|
|
4367
|
+
type: "any"
|
|
3907
4368
|
},
|
|
3908
4369
|
counter: {
|
|
3909
4370
|
type: "boolean | string | number"
|
|
@@ -3911,6 +4372,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3911
4372
|
counterValue: {
|
|
3912
4373
|
type: Function
|
|
3913
4374
|
},
|
|
4375
|
+
dark: {
|
|
4376
|
+
type: Boolean
|
|
4377
|
+
},
|
|
3914
4378
|
dense: {
|
|
3915
4379
|
type: Boolean
|
|
3916
4380
|
},
|
|
@@ -3927,7 +4391,8 @@ nextIcon = 'mdi-plus'}`
|
|
|
3927
4391
|
type: "Array<any> | string"
|
|
3928
4392
|
},
|
|
3929
4393
|
format: {
|
|
3930
|
-
type: String
|
|
4394
|
+
type: String,
|
|
4395
|
+
options: ["'number'", "'regex'", "'creditcard'", "'phone'", "'turkishMobilePhone'", "'internationalPhone'", "'email'", "'multipleEmails'", "'ipaddress'", "'iban'", "'onlyAlphabetic'", "'alphaNumeric'", "'bigdecimal'"]
|
|
3931
4396
|
},
|
|
3932
4397
|
formatValues: {
|
|
3933
4398
|
type: "Array<any>"
|
|
@@ -3949,7 +4414,8 @@ nextIcon = 'mdi-plus'}`
|
|
|
3949
4414
|
type: "boolean | string"
|
|
3950
4415
|
},
|
|
3951
4416
|
maxlength: {
|
|
3952
|
-
type: "number | string"
|
|
4417
|
+
type: "number | string",
|
|
4418
|
+
propType: "attr"
|
|
3953
4419
|
},
|
|
3954
4420
|
tabindex: {
|
|
3955
4421
|
type: "number | string"
|
|
@@ -3960,6 +4426,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3960
4426
|
persistentHint: {
|
|
3961
4427
|
type: Boolean
|
|
3962
4428
|
},
|
|
4429
|
+
persistentPlaceholder: {
|
|
4430
|
+
type: Boolean
|
|
4431
|
+
},
|
|
3963
4432
|
placeholder: {
|
|
3964
4433
|
type: String
|
|
3965
4434
|
},
|
|
@@ -3972,12 +4441,21 @@ nextIcon = 'mdi-plus'}`
|
|
|
3972
4441
|
prependInnerIcon: {
|
|
3973
4442
|
type: String
|
|
3974
4443
|
},
|
|
4444
|
+
avoidClearableTabIndex: {
|
|
4445
|
+
type: Boolean
|
|
4446
|
+
},
|
|
4447
|
+
preventPaste: {
|
|
4448
|
+
type: Boolean
|
|
4449
|
+
},
|
|
3975
4450
|
regular: {
|
|
3976
4451
|
type: Boolean
|
|
3977
4452
|
},
|
|
3978
4453
|
readonly: {
|
|
3979
4454
|
type: Boolean
|
|
3980
4455
|
},
|
|
4456
|
+
rounded: {
|
|
4457
|
+
type: Boolean
|
|
4458
|
+
},
|
|
3981
4459
|
rules: {
|
|
3982
4460
|
type: "Array<any>"
|
|
3983
4461
|
},
|
|
@@ -3987,6 +4465,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
3987
4465
|
soloInverted: {
|
|
3988
4466
|
type: Boolean
|
|
3989
4467
|
},
|
|
4468
|
+
step: {
|
|
4469
|
+
type: Number
|
|
4470
|
+
},
|
|
3990
4471
|
success: {
|
|
3991
4472
|
type: Boolean
|
|
3992
4473
|
},
|
|
@@ -4035,6 +4516,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
4035
4516
|
counterValue: {
|
|
4036
4517
|
type: Function
|
|
4037
4518
|
},
|
|
4519
|
+
dark: {
|
|
4520
|
+
type: Boolean
|
|
4521
|
+
},
|
|
4038
4522
|
disabled: {
|
|
4039
4523
|
type: Boolean
|
|
4040
4524
|
},
|
|
@@ -4047,9 +4531,15 @@ nextIcon = 'mdi-plus'}`
|
|
|
4047
4531
|
errorMessages: {
|
|
4048
4532
|
type: "Array<any> | string"
|
|
4049
4533
|
},
|
|
4534
|
+
flat: {
|
|
4535
|
+
type: Boolean
|
|
4536
|
+
},
|
|
4050
4537
|
hint: {
|
|
4051
4538
|
type: String
|
|
4052
4539
|
},
|
|
4540
|
+
height: {
|
|
4541
|
+
type: "number | string"
|
|
4542
|
+
},
|
|
4053
4543
|
label: {
|
|
4054
4544
|
type: String
|
|
4055
4545
|
},
|
|
@@ -4086,6 +4576,9 @@ nextIcon = 'mdi-plus'}`
|
|
|
4086
4576
|
rows: {
|
|
4087
4577
|
type: "number | string"
|
|
4088
4578
|
},
|
|
4579
|
+
rounded: {
|
|
4580
|
+
type: Boolean
|
|
4581
|
+
},
|
|
4089
4582
|
rules: {
|
|
4090
4583
|
type: "Array<any>"
|
|
4091
4584
|
},
|
|
@@ -4152,22 +4645,28 @@ nextIcon = 'mdi-plus'}`
|
|
|
4152
4645
|
alignTop: {
|
|
4153
4646
|
type: Boolean
|
|
4154
4647
|
},
|
|
4648
|
+
dark: {
|
|
4649
|
+
type: Boolean
|
|
4650
|
+
},
|
|
4155
4651
|
dense: {
|
|
4156
4652
|
type: Boolean
|
|
4157
4653
|
},
|
|
4654
|
+
tabindex: {
|
|
4655
|
+
type: "number | string"
|
|
4656
|
+
},
|
|
4158
4657
|
visible: {
|
|
4159
4658
|
type: Boolean,
|
|
4160
4659
|
editorDefaultValue: "true"
|
|
4161
4660
|
},
|
|
4162
|
-
tabindex: {
|
|
4163
|
-
type: "number | string"
|
|
4164
|
-
}
|
|
4165
4661
|
},
|
|
4166
4662
|
VTimelineItem: {
|
|
4167
4663
|
color: {
|
|
4168
4664
|
type: String,
|
|
4169
4665
|
options: ["'default'", "'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
4170
4666
|
},
|
|
4667
|
+
dark: {
|
|
4668
|
+
type: Boolean
|
|
4669
|
+
},
|
|
4171
4670
|
icon: {
|
|
4172
4671
|
type: String,
|
|
4173
4672
|
options: ["'mdi-information'", "'mdi-check-circle'", "'mdi-alert-circle'", "'mdi-close-circle'"]
|
|
@@ -4212,6 +4711,18 @@ nextIcon = 'mdi-plus'}`
|
|
|
4212
4711
|
collapse: {
|
|
4213
4712
|
type: Boolean
|
|
4214
4713
|
},
|
|
4714
|
+
color: {
|
|
4715
|
+
type: String
|
|
4716
|
+
},
|
|
4717
|
+
dark: {
|
|
4718
|
+
type: Boolean
|
|
4719
|
+
},
|
|
4720
|
+
dense: {
|
|
4721
|
+
type: Boolean
|
|
4722
|
+
},
|
|
4723
|
+
elevation: {
|
|
4724
|
+
type: "number | string"
|
|
4725
|
+
},
|
|
4215
4726
|
extended: {
|
|
4216
4727
|
type: Boolean
|
|
4217
4728
|
},
|
|
@@ -4242,33 +4753,12 @@ nextIcon = 'mdi-plus'}`
|
|
|
4242
4753
|
qValue: {
|
|
4243
4754
|
type: "Array<any>"
|
|
4244
4755
|
},
|
|
4245
|
-
|
|
4246
|
-
type: "Array<any>"
|
|
4247
|
-
editorDefaultValue: "[{name = 'test1', id = 1, children=[{name='test1 Child', id = 2}, {name='test2 Child', id = 3}]},{ name = 'test3', id = 4, children=[{name='test4 Child', id=5}]}]"
|
|
4756
|
+
active: {
|
|
4757
|
+
type: "Array<any>"
|
|
4248
4758
|
},
|
|
4249
4759
|
activatable: {
|
|
4250
4760
|
type: Boolean
|
|
4251
4761
|
},
|
|
4252
|
-
hoverable: {
|
|
4253
|
-
type: Boolean
|
|
4254
|
-
},
|
|
4255
|
-
openAll: {
|
|
4256
|
-
type: Boolean
|
|
4257
|
-
},
|
|
4258
|
-
selectable: {
|
|
4259
|
-
type: Boolean
|
|
4260
|
-
},
|
|
4261
|
-
selectedColor: {
|
|
4262
|
-
editorDefaultValue: "'primary'",
|
|
4263
|
-
type: String,
|
|
4264
|
-
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
4265
|
-
},
|
|
4266
|
-
selectionType: {
|
|
4267
|
-
type: String
|
|
4268
|
-
},
|
|
4269
|
-
active: {
|
|
4270
|
-
type: "Array<any>"
|
|
4271
|
-
},
|
|
4272
4762
|
color: {
|
|
4273
4763
|
editorDefaultValue: "'primary'",
|
|
4274
4764
|
type: String,
|
|
@@ -4280,15 +4770,31 @@ nextIcon = 'mdi-plus'}`
|
|
|
4280
4770
|
expandIcon: {
|
|
4281
4771
|
type: String
|
|
4282
4772
|
},
|
|
4773
|
+
hoverable: {
|
|
4774
|
+
type: Boolean
|
|
4775
|
+
},
|
|
4283
4776
|
itemChildren: {
|
|
4284
4777
|
type: String
|
|
4285
4778
|
},
|
|
4779
|
+
itemDisabled: {
|
|
4780
|
+
type: String
|
|
4781
|
+
},
|
|
4286
4782
|
itemKey: {
|
|
4287
4783
|
type: String
|
|
4288
4784
|
},
|
|
4289
4785
|
itemText: {
|
|
4290
4786
|
type: String
|
|
4291
4787
|
},
|
|
4788
|
+
items: {
|
|
4789
|
+
type: "Array<any>",
|
|
4790
|
+
editorDefaultValue: "[{name = 'test1', id = 1, children=[{name='test1 Child', id = 2}, {name='test2 Child', id = 3}]},{ name = 'test3', id = 4, children=[{name='test4 Child', id=5}]}]"
|
|
4791
|
+
},
|
|
4792
|
+
loadChildren: {
|
|
4793
|
+
type: Function,
|
|
4794
|
+
},
|
|
4795
|
+
loadingIcon: {
|
|
4796
|
+
type: String
|
|
4797
|
+
},
|
|
4292
4798
|
multipleActive: {
|
|
4293
4799
|
type: Boolean
|
|
4294
4800
|
},
|
|
@@ -4301,17 +4807,28 @@ nextIcon = 'mdi-plus'}`
|
|
|
4301
4807
|
open: {
|
|
4302
4808
|
type: "Array<any>"
|
|
4303
4809
|
},
|
|
4810
|
+
openAll: {
|
|
4811
|
+
type: Boolean
|
|
4812
|
+
},
|
|
4304
4813
|
openOnClick: {
|
|
4305
4814
|
type: Boolean
|
|
4306
4815
|
},
|
|
4307
4816
|
search: {
|
|
4308
4817
|
type: String
|
|
4309
4818
|
},
|
|
4310
|
-
|
|
4819
|
+
selectable: {
|
|
4311
4820
|
type: Boolean
|
|
4312
4821
|
},
|
|
4313
|
-
|
|
4314
|
-
|
|
4822
|
+
selectedColor: {
|
|
4823
|
+
editorDefaultValue: "'primary'",
|
|
4824
|
+
type: String,
|
|
4825
|
+
options: ["'primary'", "'secondary'", "'accent'", "'success'", "'error'", "'info'", "'warning'"]
|
|
4826
|
+
},
|
|
4827
|
+
selectionType: {
|
|
4828
|
+
type: String
|
|
4829
|
+
},
|
|
4830
|
+
shaped: {
|
|
4831
|
+
type: Boolean
|
|
4315
4832
|
},
|
|
4316
4833
|
visible: {
|
|
4317
4834
|
type: Boolean,
|
|
@@ -4319,11 +4836,15 @@ nextIcon = 'mdi-plus'}`
|
|
|
4319
4836
|
},
|
|
4320
4837
|
tabindex: {
|
|
4321
4838
|
type: "number | string"
|
|
4322
|
-
}
|
|
4839
|
+
},
|
|
4840
|
+
transition: {
|
|
4841
|
+
type: "string | boolean"
|
|
4842
|
+
},
|
|
4323
4843
|
},
|
|
4324
4844
|
QLabel: {
|
|
4325
4845
|
class: {
|
|
4326
|
-
type: String
|
|
4846
|
+
type: String,
|
|
4847
|
+
options: ["'devx-ellipsis-qlabel'"]
|
|
4327
4848
|
},
|
|
4328
4849
|
maxWidth: {
|
|
4329
4850
|
type: String
|
|
@@ -4338,7 +4859,7 @@ nextIcon = 'mdi-plus'}`
|
|
|
4338
4859
|
},
|
|
4339
4860
|
text: {
|
|
4340
4861
|
type: String,
|
|
4341
|
-
editorDefaultValue: "'Text'"
|
|
4862
|
+
editorDefaultValue: "'Text'"
|
|
4342
4863
|
},
|
|
4343
4864
|
textOverflow: {
|
|
4344
4865
|
type: String
|
|
@@ -4349,7 +4870,11 @@ nextIcon = 'mdi-plus'}`
|
|
|
4349
4870
|
},
|
|
4350
4871
|
whiteSpace: {
|
|
4351
4872
|
type: String
|
|
4352
|
-
}
|
|
4873
|
+
},
|
|
4874
|
+
processHtml: {
|
|
4875
|
+
type: Boolean,
|
|
4876
|
+
editorDefaultValue: "false"
|
|
4877
|
+
},
|
|
4353
4878
|
},
|
|
4354
4879
|
QLegend: {
|
|
4355
4880
|
QJsonPath: {
|
|
@@ -4373,10 +4898,37 @@ nextIcon = 'mdi-plus'}`
|
|
|
4373
4898
|
editorDefaultValue: "true"
|
|
4374
4899
|
},
|
|
4375
4900
|
},
|
|
4901
|
+
QQRCode: {
|
|
4902
|
+
QJsonPath: {
|
|
4903
|
+
type: String,
|
|
4904
|
+
editorDefaultValue: "'qjson://QQRCode'",
|
|
4905
|
+
runTimeOverrideValue: "qjson://QQRCode"
|
|
4906
|
+
},
|
|
4907
|
+
content: {
|
|
4908
|
+
type: String,
|
|
4909
|
+
editorDefaultValue: "'https://studio.onplateau.com/quick/'"
|
|
4910
|
+
},
|
|
4911
|
+
size: {
|
|
4912
|
+
type: "string | number",
|
|
4913
|
+
editorDefaultValue: "10"
|
|
4914
|
+
},
|
|
4915
|
+
level: {
|
|
4916
|
+
type: String,
|
|
4917
|
+
editorDefaultValue: "'LOW'",
|
|
4918
|
+
options: ["'LOW'", "'MEDIUM'", "'QUARTILE'", "'HIGH'"]
|
|
4919
|
+
}
|
|
4920
|
+
},
|
|
4376
4921
|
QRichText: {
|
|
4922
|
+
height: {
|
|
4923
|
+
type: String,
|
|
4924
|
+
editorDefaultValue: "'auto'",
|
|
4925
|
+
},
|
|
4926
|
+
minHeight: {
|
|
4927
|
+
type: String,
|
|
4928
|
+
editorDefaultValue: "'auto'",
|
|
4929
|
+
},
|
|
4377
4930
|
ToolBarcolor: {
|
|
4378
4931
|
type: String,
|
|
4379
|
-
editorDefaultValue: "",
|
|
4380
4932
|
},
|
|
4381
4933
|
disabled: {
|
|
4382
4934
|
type: Boolean
|
|
@@ -4404,12 +4956,47 @@ nextIcon = 'mdi-plus'}`
|
|
|
4404
4956
|
},
|
|
4405
4957
|
},
|
|
4406
4958
|
QDocumentViewer: {
|
|
4407
|
-
|
|
4408
|
-
|
|
4959
|
+
showToolBar: {
|
|
4960
|
+
type: Boolean,
|
|
4961
|
+
editorDefaultValue: "true"
|
|
4962
|
+
},
|
|
4963
|
+
hidePagination: {
|
|
4964
|
+
type: Boolean,
|
|
4965
|
+
editorDefaultValue: "false"
|
|
4966
|
+
},
|
|
4967
|
+
hideDescription: {
|
|
4968
|
+
type: Boolean,
|
|
4969
|
+
editorDefaultValue: "false"
|
|
4970
|
+
},
|
|
4971
|
+
hideDownload: {
|
|
4972
|
+
type: Boolean,
|
|
4973
|
+
editorDefaultValue: "false"
|
|
4974
|
+
},
|
|
4975
|
+
hideRotate: {
|
|
4976
|
+
type: Boolean,
|
|
4977
|
+
editorDefaultValue: "false"
|
|
4978
|
+
},
|
|
4979
|
+
hideZoom: {
|
|
4980
|
+
type: Boolean,
|
|
4981
|
+
editorDefaultValue: "false"
|
|
4982
|
+
},
|
|
4983
|
+
fileDescription : {
|
|
4984
|
+
editorDefaultValue: "'File Description'",
|
|
4409
4985
|
type: String
|
|
4410
4986
|
},
|
|
4987
|
+
displayOnScroll: {
|
|
4988
|
+
type: Boolean,
|
|
4989
|
+
editorDefaultValue: "false"
|
|
4990
|
+
},
|
|
4411
4991
|
src: {
|
|
4412
|
-
|
|
4992
|
+
type: String
|
|
4993
|
+
},
|
|
4994
|
+
pdfToolbarBackgroundColor: {
|
|
4995
|
+
editorDefaultValue: "'#fafafa'",
|
|
4996
|
+
type: String
|
|
4997
|
+
},
|
|
4998
|
+
pdfBackgroundColor: {
|
|
4999
|
+
editorDefaultValue: "'#eeeeee'",
|
|
4413
5000
|
type: String
|
|
4414
5001
|
},
|
|
4415
5002
|
height: {
|