# Number

[TwebBlockNumberControl](https://github.com/tigriweb/components/blob/master/attributes/TwebBlockNumberControl.js)

<div align="left" data-full-width="false"><figure><img src="/files/kFZJWoAbd05qDZb3nAHr" alt=""><figcaption></figcaption></figure></div>

<div align="left"><figure><img src="/files/4rw7Hv9hLbZoyebWKwq5" alt=""><figcaption></figcaption></figure></div>

<details>

<summary>{ label, help, min, max, step, dragDirection, dragThreshold, spinControls, isDragEnabled, labelPosition, required, name*, onChange, attributes*, setAttributes* }</summary>

```jsx
/**
 * @param {string} [label] - Component label.
 * @param {string} [help] - Component description.
 * @param {number} [min] - Minimum value (default: 0).
 * @param {number} [max] - Maximum value (default: 100).
 * @param {number} [step] - Step value (default: 1).
 * @param {string} [dragDirection] - Determines the drag axis "s", "n", "e", "w".
 * @param {number} [dragThreshold] - If isDragEnabled is true, this controls the amount of px to have been dragged before the drag gesture is actually triggered.
 * @param {string} [spinControls] - The type of spin controls to display. These are buttons that allow the user to quickly increment and decrement the number: "none", "custom", "native".
 * @param {boolean} [isDragEnabled] - If true, enables mouse drag gestures.
 * @param {string} [labelPosition] - The position of the label.
 * @param {boolean} [required] - If true enforces a valid number within the control's min/max range. If false allows an empty string as a valid value.
 * @param {string} name - Attribute name.
 * @param {function} [onChange] - Callback called when the value changes.
 * @param {object} attributes - Object containing block attributes.
 * @param {function} setAttributes - Function to set new block attribute values.
 */
```

</details>

{% code title="block.json" overflow="wrap" %}

```json
"testNumber": {
	"type": "integer",
	"default": 3
}
```

{% endcode %}

{% code title="index.js" overflow="wrap" %}

```jsx
import {
	TwebBlockNumberControl,
} from '@tigriweb/components/attributes';
```

{% endcode %}

{% code title="index.js | edit()" %}

```jsx
<TwebBlockNumberControl
	label={ __('Number Label', 'your-theme-name') }
	help={ __('Number Description', 'your-theme-name') }
	min="3"
	max="13"
	step="2"
	name="testNumber"
	{ ...{ attributes, setAttributes } }
/>
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tigriweb.gitbook.io/components/attributes/number.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
