2022-06-17 17:51:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2022-08-31 15:02:43 +02:00
|
|
|
'extends' => 'number',
|
|
|
|
'props' => [
|
|
|
|
/**
|
|
|
|
* Unset inherited props
|
|
|
|
*/
|
|
|
|
'placeholder' => null,
|
2022-06-17 17:51:59 +02:00
|
|
|
|
2022-08-31 15:02:43 +02:00
|
|
|
/**
|
|
|
|
* The maximum value on the slider
|
|
|
|
*/
|
|
|
|
'max' => function (float $max = 100) {
|
|
|
|
return $max;
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Enables/disables the tooltip and set the before and after values
|
|
|
|
*/
|
|
|
|
'tooltip' => function ($tooltip = true) {
|
|
|
|
return $tooltip;
|
|
|
|
},
|
|
|
|
]
|
2022-06-17 17:51:59 +02:00
|
|
|
];
|