You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
2.1 KiB
1 lines
2.1 KiB
{"ast":null,"code":"import { disabledTimeListsProps } from './shared.mjs';\nimport { buildProps, definePropType } from '../../../../utils/vue/props/runtime.mjs';\nconst basicTimeSpinnerProps = buildProps({\n role: {\n type: String,\n required: true\n },\n spinnerDate: {\n type: definePropType(Object),\n required: true\n },\n showSeconds: {\n type: Boolean,\n default: true\n },\n arrowControl: Boolean,\n amPmMode: {\n type: definePropType(String),\n default: \"\"\n },\n ...disabledTimeListsProps\n});\nexport { basicTimeSpinnerProps };","map":{"version":3,"names":["basicTimeSpinnerProps","buildProps","role","type","String","required","spinnerDate","definePropType","Object","showSeconds","Boolean","default","arrowControl","amPmMode","disabledTimeListsProps"],"sources":["../../../../../../../packages/components/time-picker/src/props/basic-time-spinner.ts"],"sourcesContent":["import { buildProps, definePropType } from '@element-plus/utils'\nimport { disabledTimeListsProps } from '../props/shared'\n\nimport type { ExtractPropTypes } from 'vue'\nimport type { Dayjs } from 'dayjs'\n\nexport const basicTimeSpinnerProps = buildProps({\n role: {\n type: String,\n required: true,\n },\n spinnerDate: {\n type: definePropType<Dayjs>(Object),\n required: true,\n },\n showSeconds: {\n type: Boolean,\n default: true,\n },\n arrowControl: Boolean,\n amPmMode: {\n // 'a': am/pm; 'A': AM/PM\n type: definePropType<'a' | 'A' | ''>(String),\n default: '',\n },\n ...disabledTimeListsProps,\n} as const)\n\nexport type BasicTimeSpinnerProps = ExtractPropTypes<\n typeof basicTimeSpinnerProps\n>\n"],"mappings":";;AAEY,MAACA,qBAAqB,GAAGC,UAAU,CAAC;EAC9CC,IAAI,EAAE;IACJC,IAAI,EAAEC,MAAM;IACZC,QAAQ,EAAE;EACd,CAAG;EACDC,WAAW,EAAE;IACXH,IAAI,EAAEI,cAAc,CAACC,MAAM,CAAC;IAC5BH,QAAQ,EAAE;EACd,CAAG;EACDI,WAAW,EAAE;IACXN,IAAI,EAAEO,OAAO;IACbC,OAAO,EAAE;EACb,CAAG;EACDC,YAAY,EAAEF,OAAO;EACrBG,QAAQ,EAAE;IACRV,IAAI,EAAEI,cAAc,CAACH,MAAM,CAAC;IAC5BO,OAAO,EAAE;EACb,CAAG;EACD,GAAGG;AACL,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|