Doc for InputNumber
parent
8314c182ee
commit
a1f5f219c2
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<span :class="containerClass">
|
<span :class="containerClass">
|
||||||
<INInputText ref="input" class="p-inputnumber-input" v-bind="$attrs" v-on="listeners" :aria-valumin="min" :aria-valuemax="max" :aria-labelledby="ariaLabelledBy" />
|
<INInputText ref="input" class="p-inputnumber-input" :value="formattedValue" v-bind="$attrs" v-on="listeners" :aria-valumin="min" :aria-valuemax="max" />
|
||||||
<span class="p-inputnumber-button-group" v-if="showButtons && buttonLayout === 'stacked'">
|
<span class="p-inputnumber-button-group" v-if="showButtons && buttonLayout === 'stacked'">
|
||||||
<Button :class="upButtonClass" icon="incrementButtonIcon" v-on="upButtonListeners" :disabled="$attrs.disabled" />
|
<Button :class="upButtonClass" icon="incrementButtonIcon" v-on="upButtonListeners" :disabled="$attrs.disabled" />
|
||||||
<Button :class="downButtonClass" icon="decrementButtonIcon" v-on="downButtonListeners" :disabled="$attrs.disabled" />
|
<Button :class="downButtonClass" icon="decrementButtonIcon" v-on="downButtonListeners" :disabled="$attrs.disabled" />
|
||||||
|
@ -61,11 +61,11 @@ export default {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'decimal'
|
default: 'decimal'
|
||||||
},
|
},
|
||||||
suffix: {
|
prefix: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
prefix: {
|
suffix: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
|
@ -100,10 +100,6 @@ export default {
|
||||||
step: {
|
step: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: null
|
default: null
|
||||||
},
|
|
||||||
ariaLabelledBy: {
|
|
||||||
type: String,
|
|
||||||
default: null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
numberFormat: null,
|
numberFormat: null,
|
||||||
|
@ -117,15 +113,6 @@ export default {
|
||||||
_index: null,
|
_index: null,
|
||||||
isSpecialChar: null,
|
isSpecialChar: null,
|
||||||
timer: null,
|
timer: null,
|
||||||
watch: {
|
|
||||||
value(newValue) {
|
|
||||||
const formattedValue = this.formatValue(newValue);
|
|
||||||
if (this.$refs.input.$el.value !== formattedValue) {
|
|
||||||
this.$refs.input.$el.value = formattedValue;
|
|
||||||
this.$refs.input.$el.setAttribute('aria-valuenow', this.props.value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
created() {
|
||||||
this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
|
this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
|
||||||
const numerals = [...new Intl.NumberFormat(this.locale, {useGrouping: false}).format(9876543210)].reverse();
|
const numerals = [...new Intl.NumberFormat(this.locale, {useGrouping: false}).format(9876543210)].reverse();
|
||||||
|
@ -139,10 +126,6 @@ export default {
|
||||||
this._prefix = new RegExp(`[${this.prefix||''}]`, 'g');
|
this._prefix = new RegExp(`[${this.prefix||''}]`, 'g');
|
||||||
this._index = d => index.get(d);
|
this._index = d => index.get(d);
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
this.$refs.input.$el.value = this.formatValue(this.value);
|
|
||||||
this.$refs.input.$el.setAttribute('aria-valuenow', this.value);
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
getOptions() {
|
getOptions() {
|
||||||
return {
|
return {
|
||||||
|
@ -619,6 +602,9 @@ export default {
|
||||||
keydown: event => this.onDownButtonKeyDown(event),
|
keydown: event => this.onDownButtonKeyDown(event),
|
||||||
keyup: event => this.onDownButtonKeyUp(event)
|
keyup: event => this.onDownButtonKeyUp(event)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
formattedValue() {
|
||||||
|
return this.formatValue(this.value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
<h3>Numerals</h3>
|
<h3>Numerals</h3>
|
||||||
<div class="p-grid p-fluid">
|
<div class="p-grid p-fluid">
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
Integer Only
|
Integer Only - {{value1}}
|
||||||
<InputNumber v-model="value1" />
|
<InputNumber v-model="value1" />
|
||||||
</div>
|
</div>
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
Without Grouping
|
Without Grouping - {{value2}}
|
||||||
<InputNumber v-model="value2" mode="decimal" :useGrouping="false" />
|
<InputNumber v-model="value2" mode="decimal" :useGrouping="false" />
|
||||||
</div>
|
</div>
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
|
@ -94,12 +94,12 @@
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
Horizontal with Step
|
Horizontal with Step
|
||||||
<InputNumber v-model="value18" showButtons buttonLayout="horizontal" spinnerMode="horizontal" :step="0.25"
|
<InputNumber v-model="value18" showButtons buttonLayout="horizontal" spinnerMode="horizontal" :step="0.25"
|
||||||
decrementButtonclass="p-button-danger" incrementButtonclass="p-button-success" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" mode="currency" currency="EUR" />
|
decrementButtonClass="p-button-danger" incrementButtonClass="p-button-success" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" mode="currency" currency="EUR" />
|
||||||
</div>
|
</div>
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
<div>Vertical</div>
|
<div>Vertical</div>
|
||||||
<InputNumber v-model="value19" mode="decimal" showButtons buttonLayout="vertical" spinnerMode="vertical"
|
<InputNumber v-model="value19" mode="decimal" showButtons buttonLayout="vertical" spinnerMode="vertical"
|
||||||
decrementButtonclass="p-button-secondary" incrementButtonclass="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
decrementButtonClass="p-button-secondary" incrementButtonClass="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
||||||
</div>
|
</div>
|
||||||
<div class="p-col-12 p-md-3">
|
<div class="p-col-12 p-md-3">
|
||||||
Min-Max Boundaries
|
Min-Max Boundaries
|
||||||
|
|
|
@ -4,26 +4,257 @@
|
||||||
<TabPanel header="Documentation">
|
<TabPanel header="Documentation">
|
||||||
<h3>Import</h3>
|
<h3>Import</h3>
|
||||||
<CodeHighlight lang="javascript">
|
<CodeHighlight lang="javascript">
|
||||||
import InputText from 'primevue/inputtext';
|
import InputNumber from 'primevue/inputnumber';
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
<h3>Getting Started</h3>
|
<h3>Getting Started</h3>
|
||||||
<p>A model can be bound using the standard v-model directive.</p>
|
<p>InputNumber is used with the standard v-model directive. Component always provides a number type although formatting on the input is a string.</p>
|
||||||
|
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<InputText type="text" v-model="value" />
|
<InputNumber v-model="value" />
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
<h3>Float Label</h3>
|
<h3>Decimal Mode</h3>
|
||||||
<p>A floating label is implemented by wrapping the input and the label inside a container having <i>.p-float-label</i> style class.</p>
|
<p>Format is defined using the <i>mode</i> property, "decimal" is the default value allowing only integers when there is no other configuration.</p>
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<span class="p-float-label">
|
<InputNumber v-model="value" mode="decimal" />
|
||||||
<InputText id="username" type="text" v-model="value" />
|
|
||||||
<label for="username">Username</label>
|
|
||||||
</span>
|
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<p>Fractions are configured with the <i>minFractionDigits</i> property. Optionally <i>maxFractionDigits</i> can be used to defined a boundary for the maximum digits.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
<InputNumber v-model="value1" mode="decimal" :minFractionDigits="2" />
|
||||||
|
<InputNumber v-model="value2" mode="decimal" :minFractionDigits="2" :maxFracionDigits="2" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<p><i>locale</i> option is available to set the localization information such as grouping and decimal symbols where default value is the browser locale. Locales are defined per <a href="https://tools.ietf.org/html/rfc5646">BCP Language Tag</a>.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
User Locale
|
||||||
|
<InputNumber v-model="value1" mode="decimal" :minFractionDigits="2" />
|
||||||
|
|
||||||
|
United State Locale
|
||||||
|
<InputNumber v-model="value2" mode="decimal" locale="en-US" :minFractionDigits="2" />
|
||||||
|
|
||||||
|
German Locale
|
||||||
|
<InputNumber v-model="value3" mode="decimal" locale="de-DE" :minFractionDigits="2" />
|
||||||
|
|
||||||
|
Indian Locale
|
||||||
|
<InputNumber v-model="value4" mode="decimal" locale="en-IN" :minFractionDigits="2" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<h3>Currency</h3>
|
||||||
|
<p>Currency formatting is specified by setting the <i>mode</i> option to currency and <i>currency</i> property. In addition <i>currencyDisplay</i> option
|
||||||
|
allows how the currency is displayed, valid values are "symbol" (default) or "code".</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
United States
|
||||||
|
<InputNumber v-model="value1" mode="currency" currency="USD" locale="en-US" />
|
||||||
|
|
||||||
|
Germany
|
||||||
|
<InputNumber v-model="value2" mode="currency" currency="EUR" locale="de-DE" />
|
||||||
|
|
||||||
|
India
|
||||||
|
<InputNumber v-model="value3" mode="currency" currency="INR" currencyDisplay="code" locale="en-IN" />
|
||||||
|
|
||||||
|
Japan
|
||||||
|
<InputNumber v-model="value4" mode="currency" currency="JPY" locale="jp-JP" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<h3>Prefix and Suffix</h3>
|
||||||
|
<p>Custom texts e.g. units can be placed before or after the input section with the <i>prefix</i> and <i>suffix</i> properties.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
Mile
|
||||||
|
<InputNumber v-model="value1" suffix=" mi" />
|
||||||
|
|
||||||
|
Percent
|
||||||
|
<InputNumber v-model="value2" prefix="%" />
|
||||||
|
|
||||||
|
Expiry
|
||||||
|
<InputNumber v-model="value3" prefix="Expires in " suffix=" days" />
|
||||||
|
|
||||||
|
Temperature
|
||||||
|
<InputNumber v-model="value4" prefix="↑ " suffix="℃" :min="0" :max="40" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<h3>Buttons</h3>
|
||||||
|
<p>Spinner buttons is enabled using the <i>showButtons</i> options and layout is defined with the <i>buttonLayout</i>. Default value is "stacked" whereas
|
||||||
|
"horizontal" and "stacked" are alternatives. Note that even there are no buttons, up and down arrow keys can be used to spin the values with keyboard.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
Stacked
|
||||||
|
<InputNumber v-model="value1" showButtons mode="currency" currency="USD" />
|
||||||
|
|
||||||
|
Horizontal
|
||||||
|
<InputNumber v-model="value2" showButtons buttonLayout="horizontal" spinnerMode="horizontal"
|
||||||
|
decrementButtonClass="p-button-danger" incrementButtonClass="p-button-success" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" mode="currency" currency="EUR" />
|
||||||
|
|
||||||
|
Vertical
|
||||||
|
<InputNumber v-model="value3" mode="decimal" showButtons buttonLayout="vertical" spinnerMode="vertical"
|
||||||
|
decrementButtonClass="p-button-secondary" incrementButtonClass="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<h3>Step</h3>
|
||||||
|
<p>Step factor is 1 by default and can be customized with <i>step</i> option.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
<InputNumber v-model="value" :step="0.25" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Min and Max Boundaries</h3>
|
||||||
|
<p>Value to be entered can be restricted by configuring the <i>min</i> and <i>max</i> options.</p>
|
||||||
|
<CodeHighlight>
|
||||||
|
<InputNumber v-model="value" :min="0" :max="100" />
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
|
||||||
<h3>Properties</h3>
|
<h3>Properties</h3>
|
||||||
<p>InputText passes any valid attribute to the underlying input element.</p>
|
<p>InputNumber passes any valid attribute to the underlying input element.</p>
|
||||||
|
<div className="doc-tablewrapper">
|
||||||
|
<table className="doc-table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Type</th>
|
||||||
|
<th>Default</th>
|
||||||
|
<th>Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>value</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Value of the component.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>format</td>
|
||||||
|
<td>boolean</td>
|
||||||
|
<td>true</td>
|
||||||
|
<td>Whether to format the value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>showButtons</td>
|
||||||
|
<td>boolean</td>
|
||||||
|
<td>false</td>
|
||||||
|
<td>Displays spinner buttons.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>buttonLayout</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>stacked</td>
|
||||||
|
<td>Layout of the buttons, valid values are "stacked" (default), "horizontal" and "vertical".</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>incrementButtonClassName</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Style class of the increment button.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>decrementButtonClassName</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Style class of the decrement button.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>incrementButtonIcon</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>pi pi-caret-up</td>
|
||||||
|
<td>Style class of the increment button.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>decrementButtonIcon</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>pi pi-caret-down</td>
|
||||||
|
<td>Style class of the decrement button.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>locale</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Locale to be used in formatting.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>localeMatcher</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>best fit</td>
|
||||||
|
<td>The locale matching algorithm to use. Possible values are "lookup" and "best fit"; the default is "best fit".
|
||||||
|
See <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation">Locale Negotation</a> for details.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>mode</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>decimal</td>
|
||||||
|
<td>Defines the behavior of the component, valid values are "decimal" and "currency".</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>prefix</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Text to display before the value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>suffix</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>decimal</td>
|
||||||
|
<td>Text to display after the value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>currency</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>The currency to use in currency formatting. Possible values are the <a href="https://www.currency-iso.org/en/home/tables/table-a1.html">ISO 4217 currency codes</a>,
|
||||||
|
such as "USD" for the US dollar, "EUR" for the euro, or "CNY" for the Chinese RMB.
|
||||||
|
There is no default value; if the style is "currency", the currency property must be provided.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>currencyDisplay</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>symbol</td>
|
||||||
|
<td>How to display the currency in currency formatting. Possible values are "symbol" to use a localized currency symbol such as €,
|
||||||
|
ü"code" to use the ISO currency code, "name" to use a localized currency name such as "dollar"; the default is "symbol".</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>useGrouping</td>
|
||||||
|
<td>boolean</td>
|
||||||
|
<td>true</td>
|
||||||
|
<td>Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>minFractionDigits</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>The minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of
|
||||||
|
minor unit digits provided by the <a href="https://www.currency-iso.org/en/home/tables/table-a1.html">ISO 4217 currency code list</a> (2 if the list doesn't provide that information).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>maxFractionDigits</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>The maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain
|
||||||
|
number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting
|
||||||
|
is the larger of minimumFractionDigits and the number of minor unit digits provided by the <a href="https://www.currency-iso.org/en/home/tables/table-a1.html">ISO 4217 currency code list</a>
|
||||||
|
(2 if the list doesn't provide that information).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>min</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Mininum boundary value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>max</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Maximum boundary value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>step</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Step factor to increment/decrement the value.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h3>Events</h3>
|
<h3>Events</h3>
|
||||||
<p>Any valid event such as focus, blur and input are passed to the underlying input element.</p>
|
<p>Any valid event such as focus, blur and input are passed to the underlying input element.</p>
|
||||||
|
@ -33,16 +264,48 @@ import InputText from 'primevue/inputtext';
|
||||||
<div class="doc-tablewrapper">
|
<div class="doc-tablewrapper">
|
||||||
<table class="doc-table">
|
<table class="doc-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Element</th>
|
<th>Element</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>p-inputtext</td>
|
<td>p-inputnumber</td>
|
||||||
<td>Input element</td>
|
<td>Container element</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-stacked</td>
|
||||||
|
<td>Container element with stacked buttons.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-horizontal</td>
|
||||||
|
<td>Container element with horizontal buttons.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-vertical</td>
|
||||||
|
<td>Container element with vertical buttons.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-input</td>
|
||||||
|
<td>Input element</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-button</td>
|
||||||
|
<td>Input element</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-button-up</td>
|
||||||
|
<td>Increment button</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-button-down</td>
|
||||||
|
<td>Decrement button</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>p-inputnumber-button-icon</td>
|
||||||
|
<td>Button icon</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -57,30 +320,133 @@ import InputText from 'primevue/inputtext';
|
||||||
</a>
|
</a>
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<template v-pre>
|
<template v-pre>
|
||||||
<h3>Basic</h3>
|
<h3>Numerals</h3>
|
||||||
<InputText type="text" v-model="value1" />
|
<div class="p-grid p-fluid">
|
||||||
<span :style="{marginLeft: '.5em'}">{{value1}}</span>
|
<div class="p-col-12 p-md-3">
|
||||||
|
Integer Only
|
||||||
|
<InputNumber v-model="value1" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Without Grouping
|
||||||
|
<InputNumber v-model="value2" mode="decimal" :useGrouping="false" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Min-Max Fraction Digits
|
||||||
|
<InputNumber v-model="value3" mode="decimal" :minFractionDigits="2" :maxFractionDigits="5" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Min-Max Boundaries
|
||||||
|
<InputNumber v-model="value4" mode="decimal" :min="0" :max="100" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<h3>Floating Label</h3>
|
<div class="p-col-12 p-md-3">
|
||||||
<span class="p-float-label">
|
User Locale
|
||||||
<InputText id="username" type="text" v-model="value2" />
|
<InputNumber v-model="value5" mode="decimal" :minFractionDigits="2" />
|
||||||
<label for="username">Username</label>
|
</div>
|
||||||
</span>
|
<div class="p-col-12 p-md-3">
|
||||||
|
United State Locale
|
||||||
|
<InputNumber v-model="value6" mode="decimal" locale="en-US" :minFractionDigits="2" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
German Locale
|
||||||
|
<InputNumber v-model="value7" mode="decimal" locale="de-DE" :minFractionDigits="2"/>
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Indian Locale
|
||||||
|
<InputNumber v-model="value8" mode="decimal" locale="en-IN" :minFractionDigits="2" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h3>Disabled</h3>
|
<h3>Currency</h3>
|
||||||
<InputText type="text" v-model="value3" disabled />
|
<div class="p-grid p-fluid">
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
United States
|
||||||
|
<InputNumber v-model="value9" mode="currency" currency="USD" locale="en-US" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Germany
|
||||||
|
<InputNumber v-model="value10" mode="currency" currency="EUR" locale="de-DE" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
India
|
||||||
|
<InputNumber v-model="value11" mode="currency" currency="INR" currencyDisplay="code" locale="en-IN" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Japan
|
||||||
|
<InputNumber v-model="value12" mode="currency" currency="JPY" locale="jp-JP" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3>Prefix and Suffix</h3>
|
||||||
|
<div class="p-grid p-fluid">
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Mile
|
||||||
|
<InputNumber v-model="value13" suffix=" mi" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Percent
|
||||||
|
<InputNumber v-model="value14" prefix="%" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Expiry
|
||||||
|
<InputNumber v-model="value15" prefix="Expires in " suffix=" days" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Temperature
|
||||||
|
<InputNumber v-model="value16" prefix="↑ " suffix="℃" :min="0" :max="40" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3>Buttons</h3>
|
||||||
|
<div class="p-grid p-fluid">
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Stacked
|
||||||
|
<InputNumber v-model="value17" showButtons mode="currency" currency="USD" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Horizontal with Step
|
||||||
|
<InputNumber v-model="value18" showButtons buttonLayout="horizontal" spinnerMode="horizontal" :step="0.25"
|
||||||
|
decrementButtonclass="p-button-danger" incrementButtonclass="p-button-success" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" mode="currency" currency="EUR" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
<div>Vertical</div>
|
||||||
|
<InputNumber v-model="value19" mode="decimal" showButtons buttonLayout="vertical" spinnerMode="vertical"
|
||||||
|
decrementButtonClass="p-button-secondary" incrementButtonClass="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
Min-Max Boundaries
|
||||||
|
<InputNumber v-model="value20" mode="decimal" showButtons :min="0" :max="100" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
<CodeHighlight lang="javascript">
|
<CodeHighlight lang="javascript">
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value1: '',
|
value1: 42723,
|
||||||
value2: '',
|
value2: 58151,
|
||||||
value3: 'PrimeVue'
|
value3: 2351.35,
|
||||||
}
|
value4: 50,
|
||||||
}
|
value5: 151351,
|
||||||
|
value6: 115744,
|
||||||
|
value7: 635524,
|
||||||
|
value8: 732762,
|
||||||
|
value9: 1500,
|
||||||
|
value10: 2500,
|
||||||
|
value11: 4250,
|
||||||
|
value12: 5002,
|
||||||
|
value13: 20,
|
||||||
|
value14: 50,
|
||||||
|
value15: 10,
|
||||||
|
value16: 20,
|
||||||
|
value17: 20,
|
||||||
|
value18: 10.50,
|
||||||
|
value19: 25,
|
||||||
|
value20: 50
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
|
|
Loading…
Reference in New Issue