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

syncfusion-react-datepickersyncfusion React datepicker 开发

Agent Skill

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

总安装

1,123

周安装

45

GitHub Stars

1

下载量

364
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • syncfusion-react-datepicker 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing DatePicker

Component Overview

The DatePicker is a Syncfusion React component for date selection with powerful features:

  • Calendar popup - Visual date selection with navigation
  • Flexible formatting - Display and input formats with pattern support
  • Masked input - enableMask for segment-by-segment date entry with maskPlaceholder
  • Range validation - Min/max dates with strictMode automatic correction
  • Multiple views - Month, year, and decade views via start and depth properties
  • Day cell customization - Disable weekends, highlight special dates via renderDayCell event
  • Full globalization - 150+ cultures, RTL (enableRtl), locale-specific formatting, firstDayOfWeek
  • WCAG 2.2 compliant - Full accessibility with keyboard navigation and ARIA attributes
  • Form ready - Controlled components, React hooks, form validation integration
  • Programmatic control - show(), hide(), focusIn(), focusOut(), navigateTo(), currentView()

Complete API Summary

Key Properties

PropertyTypeDefaultDescription
valueDatenullSelected date
minDate1900-01-01Minimum selectable date
maxDate2099-12-31Maximum selectable date
formatstring \FormatObjectnullDisplay format (e.g., "dd/MM/yyyy")
inputFormatsstring[] \FormatObject[]nullAccepted input formats array
placeholderstringnullPlaceholder text for the input
enabledbooleantrueEnable or disable the component
readonlybooleanfalseReadonly state
allowEditbooleantrueAllow editing the input textbox
strictModebooleanfalseAuto-correct out-of-range dates
showClearButtonbooleantrueShow/hide the clear button
showTodayButtonbooleantrueShow/hide today button
startCalendarViewMonthInitial view: "Month", "Year", "Decade"
depthCalendarViewMonthDeepest navigation level
enableMaskbooleanfalseEnable masked date input
maskPlaceholderMaskPlaceholderModel{...}Segment placeholders for masked input
enableRtlbooleanfalseRight-to-left rendering
localestring''Culture/locale code
firstDayOfWeeknumber0First day of week (0=Sunday)
weekNumberbooleanfalseShow week numbers
weekRuleWeekRuleFirstDayRule for first week of year
calendarModeCalendarTypeGregorianCalendar type (Gregorian or Islamic)
dayHeaderFormatDayHeaderFormatsShortDay name format in header
floatLabelTypeFloatLabelTypeNeverFloating label behavior
fullScreenModebooleanfalseFull screen popup on mobile
openOnFocusbooleanfalseOpen popup on input focus
serverTimezoneOffsetnumbernullServer timezone offset
cssClassstringnullCustom CSS class
htmlAttributes{[key: string]: string}{}Additional HTML attributes
keyConfigs{[key: string]: string}nullCustom key action mappings
widthnumber \stringnullComponent width
zIndexnumber1000Popup z-index
enablePersistencebooleanfalsePersist state between reloads

Methods

MethodReturnsDescription
show()voidOpens the calendar popup
hide()voidCloses the calendar popup
focusIn()voidSets focus to the component
focusOut()voidRemoves focus from the component
navigateTo(view, date)voidNavigates to a specific view and date
currentView()stringReturns the current calendar view name
getPersistData()stringGets persisted state data
removeDate(dates)voidRemoves date(s) from the values
destroy()voidDestroys the component

Events

EventArgs TypeDescription
changeChangedEventArgsFires when the selected date changes
focusFocusEventArgsFires when input gains focus
blurBlurEventArgsFires when input loses focus
openPreventableEventArgs \PopupObjectArgsFires when the popup opens
closePreventableEventArgs \PopupObjectArgsFires when the popup closes
clearedClearedEventArgsFires when value is cleared
createdObjectFires when component is created
destroyedObjectFires when component is destroyed
navigatedNavigatedEventArgsFires when calendar view is navigated
renderDayCellRenderDayCellEventArgsFires when each day cell is rendered

Documentation & Navigation Guide

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

Getting Started

📄 Read: references/getting-started.md

  • Installation via npm (@syncfusion/ej2-react-calendars)
  • CSS theme imports (material3, bootstrap, fluent, tailwind)
  • Component imports and setup
  • Basic JSX implementation with DatePickerComponent
  • Functional vs class component examples
  • Running your first application

Date Formats & Input

📄 Read: references/date-formats-and-input.md

  • Display format property and patterns (yyyy-MM-dd, dd/MM/yyyy, etc.)
  • Custom format specifiers (# and 0 patterns)
  • Input formats for flexible date entry (accepting multiple formats)
  • Format examples with real-world scenarios
  • Parsing and converting user input automatically
  • Culture-based default formatting

Date Range & Validation

📄 Read: references/date-range-and-validation.md

  • Min and max date properties for range restriction
  • Range validation and error states
  • strictMode for automatic out-of-range correction
  • Out-of-range behavior and error handling
  • Disabling dates outside valid range
  • Edge cases and gotchas

Date Views & Navigation

📄 Read: references/date-views-and-navigation.md

  • Start property (month, year, decade initial view)
  • Depth property for restricting view levels
  • Calendar navigation and user interactions
  • Month and year selection shortcuts
  • Navigating between different views
  • Default behavior and best practices

Customization & Styling

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

  • CSS classes for styling (e-datepicker, e-calendar, e-day, etc.)
  • renderDayCell event for day customization
  • Disabling specific dates and weekends
  • Placeholder, disabled, and readonly states
  • Custom CSS and theme customization
  • Day cell appearance and behavior

Globalization & Localization

📄 Read: references/globalization-and-localization.md

  • Culture and locale configuration (German, French, Arabic, etc.)
  • Loading CLDR data for internationalization
  • Date format by culture (different countries, different formats)
  • Locale text customization (today button, placeholder)
  • Right-to-Left (RTL) support for Arabic, Hebrew, Urdu
  • Week start day by culture
  • Number formatting and calendar adjustments

Accessibility & Keyboard Navigation

📄 Read: references/accessibility-and-keyboard.md

  • WCAG 2.2 compliance and accessibility standards
  • Keyboard navigation shortcuts (Alt+Down, arrow keys, Esc)
  • ARIA attributes (aria-expanded, aria-disabled, aria-activedescendant)
  • Screen reader support and announcements
  • Focus management and visible focus indicators
  • Color contrast and visual accessibility
  • Mobile device support

Date Masking & Advanced Validation

📄 Read: references/date-masking-and-strict-mode.md

  • enableMask property for structured segment-by-segment date input
  • maskPlaceholder for custom segment placeholder text
  • Date masking patterns for input guidance
  • strictMode property behavior and enforcement
  • Date parsing rules and validation logic
  • Input validation and format enforcement
  • Edge cases (leap years, month boundaries, etc.)
  • Troubleshooting common validation issues
  • Best practices for date input

Quick Start Example

Here's a minimal working example to get started:

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

export default function App() {
  const [selectedDate, setSelectedDate] = useState(new Date());

  return (
    <div style={{ padding: '20px' }}>
      <h3>Select a Date</h3>
      <DatePickerComponent
        value={selectedDate}
        change={(e) => setSelectedDate(e.value)}
        placeholder="Enter date"
      />
      <p>Selected: {selectedDate?.toDateString()}</p>
    </div>
  );
}

Key points:

  • Import DatePickerComponent from @syncfusion/ej2-react-calendars
  • Import all required CSS themes (base, buttons, inputs, popups, calendars)
  • Use value prop for the current date (can be null or Date object)
  • Use change event (not onChange) to update React state — this is the Syncfusion event name
  • DatePicker opens a calendar popup on click or Alt+Down arrow

Common Patterns

1. Date Range Picker (Min/Max Dates)

<DatePickerComponent
  value={new Date()}
  min={new Date(2026, 0, 1)}
  max={new Date(2026, 11, 31)}
  placeholder="Select a date in 2026"
/>

2. Custom Date Format

<DatePickerComponent
  value={new Date()}
  format="dd/MM/yyyy"
  placeholder="DD/MM/YYYY"
/>

3. Multiple Accepted Input Formats

<DatePickerComponent
  value={new Date()}
  format="yyyy-MM-dd"
  inputFormats={['dd/MM/yyyy', 'yyyy-MM-dd', 'yyyyMMdd']}
  placeholder="Enter date (dd/MM/yyyy or yyyy-MM-dd)"
/>

4. Year/Decade View for Birth Date Selection

<DatePickerComponent
  value={new Date()}
  start="Decade"
  depth="Year"
  placeholder="Select year"
/>

5. Disable Weekends

<DatePickerComponent
  value={new Date()}
  renderDayCell={(args) => {
    if ((args.date.getDay()) === 0 || (args.date.getDay()) === 6) {
      args.isDisabled = true;
    }
  }}
  placeholder="Weekdays only"
/>

6. Controlled Component in React Form

const [date, setDate] = useState(null);

<DatePickerComponent
  value={date}
  change={(e) => setDate(e.value)}
  format="yyyy-MM-dd"
  strictMode={true}
  placeholder="Enter date"
/>

7. German Culture with RTL Support

<DatePickerComponent
  locale="de"
  enableRtl={false}
  firstDayOfWeek={1}
  value={new Date()}
  placeholder="Datum eingeben"
/>

8. Masked Date Input

<DatePickerComponent
  enableMask={true}
  format="MM/dd/yyyy"
  maskPlaceholder={{ day: 'DD', month: 'MM', year: 'YYYY' }}
  placeholder="Select a date"
/>

9. Programmatic Control

import { useRef } from 'react';

const datePickerRef = useRef(null);

// Open calendar
datePickerRef.current.show();

// Close calendar
datePickerRef.current.hide();

// Focus
datePickerRef.current.focusIn();

// Get current view
const view = datePickerRef.current.currentView(); // "Month" | "Year" | "Decade"

// Navigate to specific view
datePickerRef.current.navigateTo('Year', new Date(2026, 0, 1));

<DatePickerComponent ref={datePickerRef} value={new Date()} />

10. Handle All Key Events

<DatePickerComponent
  value={new Date()}
  change={(e) => console.log('Changed:', e.value)}
  focus={(e) => console.log('Focused')}
  blur={(e) => console.log('Blurred')}
  open={(e) => console.log('Opened')}
  close={(e) => console.log('Closed')}
  cleared={(e) => console.log('Cleared')}
  navigated={(e) => console.log('Navigated to view:', e.view)}
  renderDayCell={(args) => {
    // Disable weekends
    if (args.date.getDay() === 0 || args.date.getDay() === 6) {
      args.isDisabled = true;
    }
  }}
/>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.77%
按下载量换算123

Claude

28.71%
按下载量换算105

Cursor

19.97%
按下载量换算73

Gemini CLI

9.32%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills