Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-react-numerictextboxsyncfusion React numerictextbox 开发

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

428

周安装

18

GitHub Stars

1

下载量

150
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-react-numerictextbox(syncfusion React numerictextbox 开发)
来源仓库:https://github.com/syncfusion/react-ui-components-skills
仓库路径:skills/syncfusion-react-numerictextbox
安装命令:
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-numerictextbox
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-numerictextbox

简介

用于辅助 React 前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。
  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。
  • 通过 GitHub 安装,支持 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 需确保项目已集成 Syncfusion React 组件库,否则可能无法正常运行相关功能。

SKILL.md

Implementing NumericTextBox

Component Overview

The NumericTextBox is a Syncfusion React input component designed specifically for numeric data entry. It provides:

  • Formatted input - Automatic number formatting (currency, percentage, scientific notation)
  • Validation - Built-in min/max range validation with strict mode
  • Spin buttons - Visual increment/decrement controls with customizable steps
  • Decimal control - Manage decimal places and precision during input
  • Accessibility - Full WCAG 2.2 compliance with ARIA attributes and keyboard navigation
  • Internationalization - Locale support, RTL (Right-to-Left) languages
  • Form ready - Integrates seamlessly with React forms and state management

Documentation & Navigation Guide

When the user needs help with NumericTextBox, guide them to the appropriate reference:

Getting Started

📄 Read: references/getting-started.md

  • Installation and package setup
  • CSS imports and themes
  • React component import and basic JSX
  • Creating your first NumericTextBox
  • Running the application

Formats & Validation

📄 Read: references/formats-and-validation.md

  • Standard format specifiers (currency, percentage, number, scientific)
  • Custom number formats with # and 0 patterns
  • Range validation with min and max properties
  • strictMode for enforcing valid ranges
  • Real-world formatting examples

Spin Buttons & Step Control

📄 Read: references/spin-buttons-and-step.md

  • Enabling/disabling spin button arrows
  • Step property for increment values
  • Customizing spin button appearance and behavior
  • Precision with step increments
  • Keyboard shortcuts (Arrow Up/Down)

Adornments & Styling

📄 Read: references/adornments-and-styling.md

  • Prefix and suffix text (units, currency symbols)
  • CSS classes and custom styling
  • Placeholder, disabled, and readonly states
  • Focus and blur event handling
  • Theme customization and appearance options

Precision & Decimals

📄 Read: references/precision-decimals.md

  • decimals property for controlling decimal places
  • validateDecimalOnType for real-time precision validation
  • Maintaining trailing zeros in display
  • Rounding behavior and edge cases
  • Precision during input vs display

Two-Way Binding & Forms

📄 Read: references/two-way-binding-forms.md

  • Two-way value binding in React (value prop + onChange)
  • Controlled component patterns
  • React state management
  • React Hook Form integration
  • Form validation with NumericTextBox

Globalization & Accessibility

📄 Read: references/globalization-accessibility.md

  • Internationalization and locale support
  • Right-to-Left (RTL) language support
  • WCAG 2.2 accessibility compliance
  • Keyboard navigation and shortcuts
  • Screen reader support with ARIA attributes
  • Focus management and color contrast

How-To Guide

📄 Read: references/how-to-guide.md

  • Custom validation patterns
  • Preventing nullable input
  • Maintaining trailing zeros
  • Customizing spin button icons
  • Common troubleshooting and edge cases

API Reference

📄 Read: references/api.md

  • Complete properties reference (value, min, max, step, format, decimals, etc.)
  • Methods reference (increment, decrement, getText, focusIn, focusOut, destroy, etc.)
  • Events reference with full argument types (change, blur, focus, created, destroyed)

Quick Start Example

Here's a minimal working example to get started:

import React, { useState } from 'react';
import { NumericTextBoxComponent } from '@syncfusion/ej2-react-inputs';
import '@syncfusion/ej2-base/styles/material3.css';
import '@syncfusion/ej2-buttons/styles/material3.css';
import '@syncfusion/ej2-inputs/styles/material3.css';

export default function App() {
  const [value, setValue] = useState(10);

  return (
    <div style={{ padding: '20px' }}>
      <h3>Enter a Number</h3>
      <NumericTextBoxComponent
        value={value}
        onChange={(e) => setValue(e.value)}
        min={0}
        max={100}
        step={1}
      />
      <p>Current Value: {value}</p>
    </div>
  );
}

Key points:

  • Import NumericTextBoxComponent from @syncfusion/ej2-react-inputs
  • Import required CSS themes (material3 in this example)
  • Use value prop for the current numeric value
  • Use onChange event to update React state
  • Add min, max, step for validation and controls

Common Patterns

1. Currency Input

<NumericTextBoxComponent
  value={99.99}
  format="c2"
  min={0}
  placeholder="Enter amount"
/>

2. Percentage Input

<NumericTextBoxComponent
  value={50}
  format="p"
  min={0}
  max={100}
/>

3. Integer-Only Input

<NumericTextBoxComponent
  value={10}
  decimals={0}
  step={1}
  min={0}
/>

4. Bounded Range with Validation

<NumericTextBoxComponent
  value={25}
  min={0}
  max={100}
  strictMode={true}
  placeholder="0-100"
/>

5. Form Field with Label

<div>
  <label>Product Quantity:</label>
  <NumericTextBoxComponent
    value={qty}
    onChange={(e) => setQty(e.value)}
    min={1}
    step={1}
    prefix="Units: "
  />
</div>

Key Properties Reference

PropertyTypePurpose
valuenumberCurrent numeric value
minnumberMinimum allowed value
maxnumberMaximum allowed value
stepnumberIncrement/decrement step (default: 1)
decimalsnumberNumber of decimal places when focused
formatstringNumber format (n2, c2, p2, e2, etc.)
currencystringISO 4217 currency code (e.g., 'USD', 'EUR')
placeholderstringPlaceholder text when empty
floatLabelTypeFloatLabelTypeFloat label behavior ('Never', 'Always', 'Auto')
readonlybooleanPrevent user input
enabledbooleanEnable or disable the control (default: true)
strictModebooleanEnforce min/max validation (default: true)
validateDecimalOnTypebooleanRestrict decimal length during typing
showSpinButtonbooleanShow/hide spinner arrows (default: true)
showClearButtonbooleanShow/hide clear icon
allowMouseWheelbooleanEnable mouse wheel increment/decrement (default: true)
cssClassstringAdditional CSS classes for custom styling
widthnumber \stringWidth of the component

Common Use Cases

1. Shopping Cart - Quantity Input

  • Integer-only, min=1, step=1, spinner for easy adjustment

2. Price Calculator - Currency Field

  • format="c2", min=0, prefix="$", two decimal places

3. Rating or Score - 0-100 Range

  • min=0, max=100, strictMode=true, no decimals

4. Discount Percentage

  • format="p", min=0, max=100, two decimal places

5. Measurement Input

  • decimals=2, suffix=" cm", min=0, spinner for precision

6. Financial Form

  • format="c2", validation, form integration, accessibility

Next Steps

  1. Package requirement: The packages @syncfusion/ej2-react-inputs, @syncfusion/ej2-base, and @syncfusion/ej2-buttons must be present in your project's package.json. Confirm they are already installed and that your lockfile (e.g., package-lock.json or yarn.lock) pins their versions for supply-chain integrity. When adding them, use an explicit version range such as @syncfusion/ej2-react-inputs@^27.x.x to avoid unpinned dependency risks.
  2. Getting Started reference: For installation details and basic setup, see references/getting-started.md.
  3. Choose your reference: Based on your use case (formatting, validation, forms, etc.), navigate to the relevant reference section above.
  4. Review examples: Each reference contains ready-to-use code samples that can be adapted to your requirements.
  5. Customize: Modify the examples to fit your specific use case and application needs.

For detailed implementation guidance, navigate to the appropriate reference file above.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.93%
按下载量换算52

Claude

28.83%
按下载量换算43

Cursor

19.01%
按下载量换算29

Gemini CLI

10.34%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills