AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

El Date Picker Panel

skill-jiaiyan-element-plus-skills-el-date-picker-panel · by jiaiyan

DatePickerPanel is the core panel component of DatePicker for custom date selection UI. Invoke when user needs to build custom date picker interfaces without the dropdown wrapper.

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-jiaiyan-element-plus-skills-el-date-picker-panel

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jiaiyan-element-plus-skills-el-date-picker-panel)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of El Date Picker Panel? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DatePickerPanel Component

DatePickerPanel is the core component of DatePicker for building custom date selection interfaces.

When to Use

  • Custom date picker UI
  • Embedded date selection
  • Calendar widgets
  • Custom dropdown implementations

Basic Usage


  

import { ref } from 'vue'

const date = ref('')

Types


  
  
  
  
  

Without Border


  

Disabled


  

With Shortcuts


  

import { ref } from 'vue'

const date = ref('')
const shortcuts = [
  {
    text: 'Today',
    value: new Date()
  },
  {
    text: 'Yesterday',
    value: () => {
      const date = new Date()
      date.setTime(date.getTime() - 3600 * 1000 * 24)
      return date
    }
  }
]

Disabled Dates


  

import { ref } from 'vue'

const date = ref('')

const disabledDate = (time) => {
  return time.getTime() > Date.now()
}

API Reference

Attributes

| Name | Description | Type | Default | |------|-------------|------|---------| | model-value / v-model | Binding value | number \| string \| Date \| array | '' | | border | Show border | boolean | true | | disabled | Disabled | boolean | false | | clearable | Show clear button | boolean | true | | editable | Input editable | boolean | true | | type | Picker type | 'year' \| 'years' \| 'month' \| 'months' \| 'date' \| 'dates' \| 'datetime' \| 'week' \| 'datetimerange' \| 'daterange' \| 'monthrange' \| 'yearrange' | 'date' | | default-value | Default calendar date | Date \| [Date, Date] | — | | default-time | Default time for range | Date \| [Date, Date] | — | | value-format | Value format | string | — | | date-format | Date display format | string | 'YYYY-MM-DD' | | time-format | Time display format | string | 'HH:mm:ss' | | unlink-panels | Unlink range panels | boolean | false | | disabled-date | Disabled date function | (date) => boolean | — | | shortcuts | Shortcut options | Array | [] | | cell-class-name | Custom cell class | (date) => string | — | | show-footer | Show footer | boolean | false | | show-confirm | Show confirm button | boolean | false | | show-week-number | Show week number | boolean | false |

Events

| Name | Description | Type | |------|-------------|------| | calendar-change | Calendar selection changes | (val) => void | | panel-change | Navigation button click | (date, mode, view) => void | | clear | Clear button clicked | () => void |

Slots

| Name | Description | |------|-------------| | default | Custom cell content | | prev-month | Previous month icon | | next-month | Next month icon | | prev-year | Previous year icon | | next-year | Next year icon |

Best Practices

  1. Use for custom date picker implementations
  2. Combine with Popover for dropdown behavior
  3. Use shortcuts for quick selections

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.