comand-component-library 3.1.60 → 3.1.61
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -478,6 +478,74 @@ export default {
|
|
478
478
|
tooltip: "Search"
|
479
479
|
}
|
480
480
|
}
|
481
|
+
},
|
482
|
+
/**
|
483
|
+
* icon for error-validated items in list-of-requirements
|
484
|
+
*
|
485
|
+
* element-property must me set to 'input'
|
486
|
+
* showRequirements-property must be set to 'true'
|
487
|
+
*
|
488
|
+
*/
|
489
|
+
iconHasStateError: {
|
490
|
+
type: Object,
|
491
|
+
default() {
|
492
|
+
return {
|
493
|
+
show: true,
|
494
|
+
iconClass: "icon-error-circle",
|
495
|
+
tooltip: "Error"
|
496
|
+
}
|
497
|
+
}
|
498
|
+
},
|
499
|
+
/**
|
500
|
+
* icon for warning-validated items in list-of-requirements
|
501
|
+
*
|
502
|
+
* element-property must me set to 'input'
|
503
|
+
* showRequirements-property must be set to 'true'
|
504
|
+
*
|
505
|
+
*/
|
506
|
+
iconHasStateWarning: {
|
507
|
+
type: Object,
|
508
|
+
default() {
|
509
|
+
return {
|
510
|
+
show: true,
|
511
|
+
iconClass: "icon-warning-circle",
|
512
|
+
tooltip: "Warning"
|
513
|
+
}
|
514
|
+
}
|
515
|
+
},
|
516
|
+
/**
|
517
|
+
* icon for success-validated items in list-of-requirements
|
518
|
+
*
|
519
|
+
* element-property must me set to 'input'
|
520
|
+
* showRequirements-property must be set to 'true'
|
521
|
+
*
|
522
|
+
*/
|
523
|
+
iconHasStateSuccess: {
|
524
|
+
type: Object,
|
525
|
+
default() {
|
526
|
+
return {
|
527
|
+
show: true,
|
528
|
+
iconClass: "icon-check-circle",
|
529
|
+
tooltip: "Success"
|
530
|
+
}
|
531
|
+
}
|
532
|
+
},
|
533
|
+
/**
|
534
|
+
* icon for info-validated items in list-of-requirements
|
535
|
+
*
|
536
|
+
* element-property must me set to 'input'
|
537
|
+
* showRequirements-property must be set to 'true'
|
538
|
+
*
|
539
|
+
*/
|
540
|
+
iconHasStateInfo: {
|
541
|
+
type: Object,
|
542
|
+
default() {
|
543
|
+
return {
|
544
|
+
show: true,
|
545
|
+
iconClass: "icon-info-circle",
|
546
|
+
tooltip: "Info"
|
547
|
+
}
|
548
|
+
}
|
481
549
|
}
|
482
550
|
},
|
483
551
|
computed: {
|