diff --git a/src/views/spinner/SpinnerDemo.vue b/src/views/spinner/SpinnerDemo.vue index c6b6c8bb2..e6d9d37a2 100644 --- a/src/views/spinner/SpinnerDemo.vue +++ b/src/views/spinner/SpinnerDemo.vue @@ -20,10 +20,14 @@
Two-way value binding is defined using standard v-model directive.
+Boundaries are specified with min and max attributes.
+Step factor is 1 by default and can be customized with step option.
+Name | +Type | +Default | +Description | +
---|---|---|---|
value | +string | +null | +Value of the component. | +
step | +number | +1 | +Step factor to increment/decrement the value. | +
min | +number | +null | +Mininum boundary value. | +
max | +number | +null | +Maximum boundary value. | +
disabled | +boolean | +false | +When present, it specifies that the element should be disabled. | +
Name | +Parameters | +Description | +
---|---|---|
input | +event: New value | +Callback to invoke on value change. | +
Following is the list of structural style classes, for theming classes visit
Name | +Element | +
---|---|
p-spinner | +Container element | +
p-spinner-up | +Up icon. | +
p-spinner-down | +Down icon. | +
p-spinner-input | +Input element | +
None.
+