@v-c/picker 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/PickerInput/Popup/Footer.cjs +115 -0
- package/dist/PickerInput/Popup/Footer.d.ts +19 -0
- package/dist/PickerInput/Popup/Footer.js +109 -0
- package/dist/PickerInput/Popup/PopupPanel.cjs +413 -0
- package/dist/PickerInput/Popup/PopupPanel.d.ts +11 -0
- package/dist/PickerInput/Popup/PopupPanel.js +407 -0
- package/dist/PickerInput/Popup/PresetPanel.cjs +54 -0
- package/dist/PickerInput/Popup/PresetPanel.d.ts +16 -0
- package/dist/PickerInput/Popup/PresetPanel.js +48 -0
- package/dist/PickerInput/Popup/index.cjs +528 -0
- package/dist/PickerInput/Popup/index.d.ts +37 -0
- package/dist/PickerInput/Popup/index.js +522 -0
- package/dist/PickerInput/RangePicker.cjs +1910 -0
- package/dist/PickerInput/RangePicker.d.ts +57 -0
- package/dist/PickerInput/RangePicker.js +1901 -0
- package/dist/PickerInput/Selector/Icon.cjs +89 -0
- package/dist/PickerInput/Selector/Icon.d.ts +11 -0
- package/dist/PickerInput/Selector/Icon.js +83 -0
- package/dist/PickerInput/Selector/Input.cjs +376 -0
- package/dist/PickerInput/Selector/Input.d.ts +9 -0
- package/dist/PickerInput/Selector/Input.js +370 -0
- package/dist/PickerInput/Selector/MaskFormat.cjs +72 -0
- package/dist/PickerInput/Selector/MaskFormat.d.ts +22 -0
- package/dist/PickerInput/Selector/MaskFormat.js +68 -0
- package/dist/PickerInput/Selector/RangeSelector.cjs +1390 -0
- package/dist/PickerInput/Selector/RangeSelector.d.ts +28 -0
- package/dist/PickerInput/Selector/RangeSelector.js +1383 -0
- package/dist/PickerInput/Selector/SingleSelector/MultipleDates.cjs +110 -0
- package/dist/PickerInput/Selector/SingleSelector/MultipleDates.d.ts +13 -0
- package/dist/PickerInput/Selector/SingleSelector/MultipleDates.js +103 -0
- package/dist/PickerInput/Selector/SingleSelector/index.cjs +1358 -0
- package/dist/PickerInput/Selector/SingleSelector/index.d.ts +21 -0
- package/dist/PickerInput/Selector/SingleSelector/index.js +1352 -0
- package/dist/PickerInput/Selector/hooks/useClearIcon.cjs +17 -0
- package/dist/PickerInput/Selector/hooks/useClearIcon.d.ts +17 -0
- package/dist/PickerInput/Selector/hooks/useClearIcon.js +11 -0
- package/dist/PickerInput/Selector/hooks/useInputHooks.cjs +125 -0
- package/dist/PickerInput/Selector/hooks/useInputHooks.d.ts +56 -0
- package/dist/PickerInput/Selector/hooks/useInputHooks.js +120 -0
- package/dist/PickerInput/Selector/hooks/useRootProps.cjs +14 -0
- package/dist/PickerInput/Selector/hooks/useRootProps.d.ts +2 -0
- package/dist/PickerInput/Selector/hooks/useRootProps.js +9 -0
- package/dist/PickerInput/Selector/util.cjs +32 -0
- package/dist/PickerInput/Selector/util.d.ts +5 -0
- package/dist/PickerInput/Selector/util.js +30 -0
- package/dist/PickerInput/SinglePicker.cjs +1881 -0
- package/dist/PickerInput/SinglePicker.d.ts +46 -0
- package/dist/PickerInput/SinglePicker.js +1873 -0
- package/dist/PickerInput/context.cjs +12 -0
- package/dist/PickerInput/context.d.ts +16 -0
- package/dist/PickerInput/context.js +9 -0
- package/dist/PickerInput/hooks/useCellRender.cjs +25 -0
- package/dist/PickerInput/hooks/useCellRender.d.ts +3 -0
- package/dist/PickerInput/hooks/useCellRender.js +20 -0
- package/dist/PickerInput/hooks/useDelayState.cjs +34 -0
- package/dist/PickerInput/hooks/useDelayState.d.ts +2 -0
- package/dist/PickerInput/hooks/useDelayState.js +29 -0
- package/dist/PickerInput/hooks/useDisabledBoundary.cjs +15 -0
- package/dist/PickerInput/hooks/useDisabledBoundary.d.ts +8 -0
- package/dist/PickerInput/hooks/useDisabledBoundary.js +11 -0
- package/dist/PickerInput/hooks/useFieldFormat.cjs +17 -0
- package/dist/PickerInput/hooks/useFieldFormat.d.ts +3 -0
- package/dist/PickerInput/hooks/useFieldFormat.js +15 -0
- package/dist/PickerInput/hooks/useFieldsInvalidate.cjs +24 -0
- package/dist/PickerInput/hooks/useFieldsInvalidate.d.ts +6 -0
- package/dist/PickerInput/hooks/useFieldsInvalidate.js +19 -0
- package/dist/PickerInput/hooks/useFilledProps.cjs +103 -0
- package/dist/PickerInput/hooks/useFilledProps.d.ts +33 -0
- package/dist/PickerInput/hooks/useFilledProps.js +98 -0
- package/dist/PickerInput/hooks/useInputReadOnly.cjs +13 -0
- package/dist/PickerInput/hooks/useInputReadOnly.d.ts +3 -0
- package/dist/PickerInput/hooks/useInputReadOnly.js +8 -0
- package/dist/PickerInput/hooks/useInvalidate.cjs +34 -0
- package/dist/PickerInput/hooks/useInvalidate.d.ts +10 -0
- package/dist/PickerInput/hooks/useInvalidate.js +30 -0
- package/dist/PickerInput/hooks/useLockEffect.cjs +16 -0
- package/dist/PickerInput/hooks/useLockEffect.d.ts +6 -0
- package/dist/PickerInput/hooks/useLockEffect.js +11 -0
- package/dist/PickerInput/hooks/useOpen.cjs +15 -0
- package/dist/PickerInput/hooks/useOpen.d.ts +7 -0
- package/dist/PickerInput/hooks/useOpen.js +10 -0
- package/dist/PickerInput/hooks/usePresets.cjs +21 -0
- package/dist/PickerInput/hooks/usePresets.d.ts +3 -0
- package/dist/PickerInput/hooks/usePresets.js +16 -0
- package/dist/PickerInput/hooks/useRangeActive.cjs +57 -0
- package/dist/PickerInput/hooks/useRangeActive.d.ts +9 -0
- package/dist/PickerInput/hooks/useRangeActive.js +52 -0
- package/dist/PickerInput/hooks/useRangeDisabledDate.cjs +21 -0
- package/dist/PickerInput/hooks/useRangeDisabledDate.d.ts +9 -0
- package/dist/PickerInput/hooks/useRangeDisabledDate.js +17 -0
- package/dist/PickerInput/hooks/useRangePickerValue.cjs +100 -0
- package/dist/PickerInput/hooks/useRangePickerValue.d.ts +5 -0
- package/dist/PickerInput/hooks/useRangePickerValue.js +94 -0
- package/dist/PickerInput/hooks/useRangeValue.cjs +134 -0
- package/dist/PickerInput/hooks/useRangeValue.d.ts +21 -0
- package/dist/PickerInput/hooks/useRangeValue.js +128 -0
- package/dist/PickerInput/hooks/useShowNow.cjs +15 -0
- package/dist/PickerInput/hooks/useShowNow.d.ts +3 -0
- package/dist/PickerInput/hooks/useShowNow.js +10 -0
- package/dist/PickerPanel/DatePanel/index.cjs +294 -0
- package/dist/PickerPanel/DatePanel/index.d.ts +9 -0
- package/dist/PickerPanel/DatePanel/index.js +288 -0
- package/dist/PickerPanel/DateTimePanel/index.cjs +180 -0
- package/dist/PickerPanel/DateTimePanel/index.d.ts +3 -0
- package/dist/PickerPanel/DateTimePanel/index.js +174 -0
- package/dist/PickerPanel/DecadePanel/index.cjs +230 -0
- package/dist/PickerPanel/DecadePanel/index.d.ts +3 -0
- package/dist/PickerPanel/DecadePanel/index.js +224 -0
- package/dist/PickerPanel/MonthPanel/index.cjs +219 -0
- package/dist/PickerPanel/MonthPanel/index.d.ts +3 -0
- package/dist/PickerPanel/MonthPanel/index.js +213 -0
- package/dist/PickerPanel/PanelBody.cjs +157 -0
- package/dist/PickerPanel/PanelBody.d.ts +17 -0
- package/dist/PickerPanel/PanelBody.js +151 -0
- package/dist/PickerPanel/PanelHeader.cjs +132 -0
- package/dist/PickerPanel/PanelHeader.d.ts +9 -0
- package/dist/PickerPanel/PanelHeader.js +126 -0
- package/dist/PickerPanel/QuarterPanel/index.cjs +211 -0
- package/dist/PickerPanel/QuarterPanel/index.d.ts +3 -0
- package/dist/PickerPanel/QuarterPanel/index.js +205 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/TimeColumn.cjs +145 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/TimeColumn.d.ts +17 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/TimeColumn.js +139 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/index.cjs +286 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/index.d.ts +3 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/index.js +280 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/useScrollTo.cjs +65 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/useScrollTo.d.ts +1 -0
- package/dist/PickerPanel/TimePanel/TimePanelBody/useScrollTo.js +60 -0
- package/dist/PickerPanel/TimePanel/index.cjs +173 -0
- package/dist/PickerPanel/TimePanel/index.d.ts +3 -0
- package/dist/PickerPanel/TimePanel/index.js +167 -0
- package/dist/PickerPanel/WeekPanel/index.cjs +179 -0
- package/dist/PickerPanel/WeekPanel/index.d.ts +3 -0
- package/dist/PickerPanel/WeekPanel/index.js +173 -0
- package/dist/PickerPanel/YearPanel/index.cjs +239 -0
- package/dist/PickerPanel/YearPanel/index.d.ts +3 -0
- package/dist/PickerPanel/YearPanel/index.js +233 -0
- package/dist/PickerPanel/context.cjs +61 -0
- package/dist/PickerPanel/context.d.ts +26 -0
- package/dist/PickerPanel/context.js +53 -0
- package/dist/PickerPanel/index.cjs +473 -0
- package/dist/PickerPanel/index.d.ts +65 -0
- package/dist/PickerPanel/index.js +467 -0
- package/dist/PickerTrigger/index.cjs +137 -0
- package/dist/PickerTrigger/index.d.ts +18 -0
- package/dist/PickerTrigger/index.js +130 -0
- package/dist/PickerTrigger/util.cjs +13 -0
- package/dist/PickerTrigger/util.d.ts +2 -0
- package/dist/PickerTrigger/util.js +12 -0
- package/dist/_virtual/rolldown_runtime.cjs +21 -0
- package/dist/generate/dateFns.cjs +80 -0
- package/dist/generate/dateFns.d.ts +3 -0
- package/dist/generate/dateFns.js +73 -0
- package/dist/generate/dayjs.cjs +117 -0
- package/dist/generate/dayjs.d.ts +4 -0
- package/dist/generate/dayjs.js +104 -0
- package/dist/generate/index.cjs +1 -0
- package/dist/generate/index.d.ts +37 -0
- package/dist/generate/index.js +0 -0
- package/dist/generate/luxon.cjs +75 -0
- package/dist/generate/luxon.d.ts +4 -0
- package/dist/generate/luxon.js +69 -0
- package/dist/generate/moment.cjs +107 -0
- package/dist/generate/moment.d.ts +4 -0
- package/dist/generate/moment.js +100 -0
- package/dist/hooks/useLocale.cjs +45 -0
- package/dist/hooks/useLocale.d.ts +9 -0
- package/dist/hooks/useLocale.js +39 -0
- package/dist/hooks/useSemantic.cjs +18 -0
- package/dist/hooks/useSemantic.d.ts +14 -0
- package/dist/hooks/useSemantic.js +13 -0
- package/dist/hooks/useSyncState.cjs +29 -0
- package/dist/hooks/useSyncState.d.ts +7 -0
- package/dist/hooks/useSyncState.js +24 -0
- package/dist/hooks/useTimeConfig.cjs +161 -0
- package/dist/hooks/useTimeConfig.d.ts +18 -0
- package/dist/hooks/useTimeConfig.js +159 -0
- package/dist/hooks/useTimeInfo.cjs +113 -0
- package/dist/hooks/useTimeInfo.d.ts +12 -0
- package/dist/hooks/useTimeInfo.js +108 -0
- package/dist/hooks/useToggleDates.cjs +16 -0
- package/dist/hooks/useToggleDates.d.ts +9 -0
- package/dist/hooks/useToggleDates.js +12 -0
- package/dist/index.cjs +12 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +5 -0
- package/dist/interface.cjs +1 -0
- package/dist/interface.d.ts +379 -0
- package/dist/interface.js +0 -0
- package/dist/locale/am_ET.cjs +34 -0
- package/dist/locale/am_ET.d.ts +3 -0
- package/dist/locale/am_ET.js +29 -0
- package/dist/locale/ar_EG.cjs +32 -0
- package/dist/locale/ar_EG.d.ts +3 -0
- package/dist/locale/ar_EG.js +27 -0
- package/dist/locale/az_AZ.cjs +33 -0
- package/dist/locale/az_AZ.d.ts +3 -0
- package/dist/locale/az_AZ.js +28 -0
- package/dist/locale/bg_BG.cjs +32 -0
- package/dist/locale/bg_BG.d.ts +3 -0
- package/dist/locale/bg_BG.js +27 -0
- package/dist/locale/bn_BD.cjs +33 -0
- package/dist/locale/bn_BD.d.ts +3 -0
- package/dist/locale/bn_BD.js +28 -0
- package/dist/locale/by_BY.cjs +33 -0
- package/dist/locale/by_BY.d.ts +3 -0
- package/dist/locale/by_BY.js +28 -0
- package/dist/locale/ca_ES.cjs +32 -0
- package/dist/locale/ca_ES.d.ts +3 -0
- package/dist/locale/ca_ES.js +27 -0
- package/dist/locale/common.cjs +8 -0
- package/dist/locale/common.d.ts +2 -0
- package/dist/locale/common.js +7 -0
- package/dist/locale/cs_CZ.cjs +32 -0
- package/dist/locale/cs_CZ.d.ts +3 -0
- package/dist/locale/cs_CZ.js +27 -0
- package/dist/locale/da_DK.cjs +32 -0
- package/dist/locale/da_DK.d.ts +3 -0
- package/dist/locale/da_DK.js +27 -0
- package/dist/locale/de_DE.cjs +32 -0
- package/dist/locale/de_DE.d.ts +3 -0
- package/dist/locale/de_DE.js +27 -0
- package/dist/locale/el_GR.cjs +32 -0
- package/dist/locale/el_GR.d.ts +3 -0
- package/dist/locale/el_GR.js +27 -0
- package/dist/locale/en_GB.cjs +32 -0
- package/dist/locale/en_GB.d.ts +3 -0
- package/dist/locale/en_GB.js +27 -0
- package/dist/locale/en_US.cjs +33 -0
- package/dist/locale/en_US.d.ts +3 -0
- package/dist/locale/en_US.js +28 -0
- package/dist/locale/es_ES.cjs +32 -0
- package/dist/locale/es_ES.d.ts +3 -0
- package/dist/locale/es_ES.js +27 -0
- package/dist/locale/es_MX.cjs +33 -0
- package/dist/locale/es_MX.d.ts +3 -0
- package/dist/locale/es_MX.js +28 -0
- package/dist/locale/et_EE.cjs +32 -0
- package/dist/locale/et_EE.d.ts +3 -0
- package/dist/locale/et_EE.js +27 -0
- package/dist/locale/eu_ES.cjs +34 -0
- package/dist/locale/eu_ES.d.ts +3 -0
- package/dist/locale/eu_ES.js +29 -0
- package/dist/locale/fa_IR.cjs +32 -0
- package/dist/locale/fa_IR.d.ts +3 -0
- package/dist/locale/fa_IR.js +27 -0
- package/dist/locale/fi_FI.cjs +32 -0
- package/dist/locale/fi_FI.d.ts +3 -0
- package/dist/locale/fi_FI.js +27 -0
- package/dist/locale/fr_BE.cjs +32 -0
- package/dist/locale/fr_BE.d.ts +3 -0
- package/dist/locale/fr_BE.js +27 -0
- package/dist/locale/fr_CA.cjs +33 -0
- package/dist/locale/fr_CA.d.ts +3 -0
- package/dist/locale/fr_CA.js +28 -0
- package/dist/locale/fr_FR.cjs +33 -0
- package/dist/locale/fr_FR.d.ts +3 -0
- package/dist/locale/fr_FR.js +28 -0
- package/dist/locale/ga_IE.cjs +33 -0
- package/dist/locale/ga_IE.d.ts +3 -0
- package/dist/locale/ga_IE.js +28 -0
- package/dist/locale/gl_ES.cjs +32 -0
- package/dist/locale/gl_ES.d.ts +3 -0
- package/dist/locale/gl_ES.js +27 -0
- package/dist/locale/he_IL.cjs +33 -0
- package/dist/locale/he_IL.d.ts +3 -0
- package/dist/locale/he_IL.js +28 -0
- package/dist/locale/hi_IN.cjs +33 -0
- package/dist/locale/hi_IN.d.ts +3 -0
- package/dist/locale/hi_IN.js +28 -0
- package/dist/locale/hr_HR.cjs +33 -0
- package/dist/locale/hr_HR.d.ts +3 -0
- package/dist/locale/hr_HR.js +28 -0
- package/dist/locale/hu_HU.cjs +33 -0
- package/dist/locale/hu_HU.d.ts +3 -0
- package/dist/locale/hu_HU.js +28 -0
- package/dist/locale/id_ID.cjs +33 -0
- package/dist/locale/id_ID.d.ts +3 -0
- package/dist/locale/id_ID.js +28 -0
- package/dist/locale/is_IS.cjs +32 -0
- package/dist/locale/is_IS.d.ts +3 -0
- package/dist/locale/is_IS.js +27 -0
- package/dist/locale/it_IT.cjs +55 -0
- package/dist/locale/it_IT.d.ts +3 -0
- package/dist/locale/it_IT.js +50 -0
- package/dist/locale/ja_JP.cjs +35 -0
- package/dist/locale/ja_JP.d.ts +3 -0
- package/dist/locale/ja_JP.js +30 -0
- package/dist/locale/ka_GE.cjs +33 -0
- package/dist/locale/ka_GE.d.ts +3 -0
- package/dist/locale/ka_GE.js +28 -0
- package/dist/locale/kk_KZ.cjs +32 -0
- package/dist/locale/kk_KZ.d.ts +3 -0
- package/dist/locale/kk_KZ.js +27 -0
- package/dist/locale/km_KH.cjs +34 -0
- package/dist/locale/km_KH.d.ts +3 -0
- package/dist/locale/km_KH.js +29 -0
- package/dist/locale/kmr_IQ.cjs +32 -0
- package/dist/locale/kmr_IQ.d.ts +3 -0
- package/dist/locale/kmr_IQ.js +27 -0
- package/dist/locale/kn_IN.cjs +33 -0
- package/dist/locale/kn_IN.d.ts +3 -0
- package/dist/locale/kn_IN.js +28 -0
- package/dist/locale/ko_KR.cjs +34 -0
- package/dist/locale/ko_KR.d.ts +3 -0
- package/dist/locale/ko_KR.js +29 -0
- package/dist/locale/lt_LT.cjs +34 -0
- package/dist/locale/lt_LT.d.ts +3 -0
- package/dist/locale/lt_LT.js +29 -0
- package/dist/locale/lv_LV.cjs +32 -0
- package/dist/locale/lv_LV.d.ts +3 -0
- package/dist/locale/lv_LV.js +27 -0
- package/dist/locale/mk_MK.cjs +32 -0
- package/dist/locale/mk_MK.d.ts +3 -0
- package/dist/locale/mk_MK.js +27 -0
- package/dist/locale/ml_IN.cjs +33 -0
- package/dist/locale/ml_IN.d.ts +3 -0
- package/dist/locale/ml_IN.js +28 -0
- package/dist/locale/mn_MN.cjs +34 -0
- package/dist/locale/mn_MN.d.ts +3 -0
- package/dist/locale/mn_MN.js +29 -0
- package/dist/locale/mr_IN.cjs +59 -0
- package/dist/locale/mr_IN.d.ts +3 -0
- package/dist/locale/mr_IN.js +54 -0
- package/dist/locale/ms_MY.cjs +34 -0
- package/dist/locale/ms_MY.d.ts +3 -0
- package/dist/locale/ms_MY.js +29 -0
- package/dist/locale/my_MM.cjs +33 -0
- package/dist/locale/my_MM.d.ts +3 -0
- package/dist/locale/my_MM.js +28 -0
- package/dist/locale/nb_NO.cjs +34 -0
- package/dist/locale/nb_NO.d.ts +3 -0
- package/dist/locale/nb_NO.js +29 -0
- package/dist/locale/ne_NP.cjs +33 -0
- package/dist/locale/ne_NP.d.ts +3 -0
- package/dist/locale/ne_NP.js +28 -0
- package/dist/locale/nl_BE.cjs +32 -0
- package/dist/locale/nl_BE.d.ts +3 -0
- package/dist/locale/nl_BE.js +27 -0
- package/dist/locale/nl_NL.cjs +32 -0
- package/dist/locale/nl_NL.d.ts +3 -0
- package/dist/locale/nl_NL.js +27 -0
- package/dist/locale/pl_PL.cjs +32 -0
- package/dist/locale/pl_PL.d.ts +3 -0
- package/dist/locale/pl_PL.js +27 -0
- package/dist/locale/pt_BR.cjs +56 -0
- package/dist/locale/pt_BR.d.ts +3 -0
- package/dist/locale/pt_BR.js +51 -0
- package/dist/locale/pt_PT.cjs +55 -0
- package/dist/locale/pt_PT.d.ts +3 -0
- package/dist/locale/pt_PT.js +50 -0
- package/dist/locale/ro_RO.cjs +33 -0
- package/dist/locale/ro_RO.d.ts +3 -0
- package/dist/locale/ro_RO.js +28 -0
- package/dist/locale/ru_RU.cjs +32 -0
- package/dist/locale/ru_RU.d.ts +3 -0
- package/dist/locale/ru_RU.js +27 -0
- package/dist/locale/si_LK.cjs +34 -0
- package/dist/locale/si_LK.d.ts +3 -0
- package/dist/locale/si_LK.js +29 -0
- package/dist/locale/sk_SK.cjs +32 -0
- package/dist/locale/sk_SK.d.ts +3 -0
- package/dist/locale/sk_SK.js +27 -0
- package/dist/locale/sl_SI.cjs +32 -0
- package/dist/locale/sl_SI.d.ts +3 -0
- package/dist/locale/sl_SI.js +27 -0
- package/dist/locale/sr_Cyrl_RS.cjs +32 -0
- package/dist/locale/sr_Cyrl_RS.d.ts +3 -0
- package/dist/locale/sr_Cyrl_RS.js +27 -0
- package/dist/locale/sr_RS.cjs +32 -0
- package/dist/locale/sr_RS.d.ts +3 -0
- package/dist/locale/sr_RS.js +27 -0
- package/dist/locale/sv_SE.cjs +32 -0
- package/dist/locale/sv_SE.d.ts +3 -0
- package/dist/locale/sv_SE.js +27 -0
- package/dist/locale/ta_IN.cjs +33 -0
- package/dist/locale/ta_IN.d.ts +3 -0
- package/dist/locale/ta_IN.js +28 -0
- package/dist/locale/te_IN.cjs +33 -0
- package/dist/locale/te_IN.d.ts +3 -0
- package/dist/locale/te_IN.js +28 -0
- package/dist/locale/th_TH.cjs +32 -0
- package/dist/locale/th_TH.d.ts +3 -0
- package/dist/locale/th_TH.js +27 -0
- package/dist/locale/tk_TK.cjs +32 -0
- package/dist/locale/tk_TK.d.ts +3 -0
- package/dist/locale/tk_TK.js +27 -0
- package/dist/locale/tr_TR.cjs +55 -0
- package/dist/locale/tr_TR.d.ts +3 -0
- package/dist/locale/tr_TR.js +50 -0
- package/dist/locale/ug_CN.cjs +35 -0
- package/dist/locale/ug_CN.d.ts +3 -0
- package/dist/locale/ug_CN.js +30 -0
- package/dist/locale/uk_UA.cjs +32 -0
- package/dist/locale/uk_UA.d.ts +3 -0
- package/dist/locale/uk_UA.js +27 -0
- package/dist/locale/ur_PK.cjs +33 -0
- package/dist/locale/ur_PK.d.ts +3 -0
- package/dist/locale/ur_PK.js +28 -0
- package/dist/locale/uz_UZ.cjs +33 -0
- package/dist/locale/uz_UZ.d.ts +3 -0
- package/dist/locale/uz_UZ.js +28 -0
- package/dist/locale/vi_VN.cjs +33 -0
- package/dist/locale/vi_VN.d.ts +3 -0
- package/dist/locale/vi_VN.js +28 -0
- package/dist/locale/zh_CN.cjs +36 -0
- package/dist/locale/zh_CN.d.ts +3 -0
- package/dist/locale/zh_CN.js +31 -0
- package/dist/locale/zh_TW.cjs +36 -0
- package/dist/locale/zh_TW.d.ts +3 -0
- package/dist/locale/zh_TW.js +31 -0
- package/dist/utils/dateUtil.cjs +105 -0
- package/dist/utils/dateUtil.d.ts +29 -0
- package/dist/utils/dateUtil.js +89 -0
- package/dist/utils/getClearIcon.cjs +7 -0
- package/dist/utils/getClearIcon.d.ts +6 -0
- package/dist/utils/getClearIcon.js +5 -0
- package/dist/utils/miscUtil.cjs +46 -0
- package/dist/utils/miscUtil.d.ts +14 -0
- package/dist/utils/miscUtil.js +40 -0
- package/dist/utils/uiUtil.cjs +6 -0
- package/dist/utils/uiUtil.d.ts +1 -0
- package/dist/utils/uiUtil.js +5 -0
- package/dist/utils/warnUtil.cjs +8 -0
- package/dist/utils/warnUtil.d.ts +5 -0
- package/dist/utils/warnUtil.js +6 -0
- package/package.json +82 -0
|
@@ -0,0 +1,1358 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
const require_rolldown_runtime = require("../../../_virtual/rolldown_runtime.cjs");
|
|
6
|
+
const require_context = require("../../context.cjs");
|
|
7
|
+
const require_dateUtil = require("../../../utils/dateUtil.cjs");
|
|
8
|
+
const require_useInputHooks = require("../hooks/useInputHooks.cjs");
|
|
9
|
+
const require_useRootProps = require("../hooks/useRootProps.cjs");
|
|
10
|
+
const require_Icon = require("../Icon.cjs");
|
|
11
|
+
const require_Input = require("../Input.cjs");
|
|
12
|
+
const require_MultipleDates = require("./MultipleDates.cjs");
|
|
13
|
+
let vue = require("vue");
|
|
14
|
+
let _v_c_util = require("@v-c/util");
|
|
15
|
+
var SingleSelector = /* @__PURE__ */ (0, vue.defineComponent)((props, { attrs, expose }) => {
|
|
16
|
+
const rtl = (0, vue.computed)(() => props.direction === "rtl");
|
|
17
|
+
const ctx = require_context.usePickerContext();
|
|
18
|
+
const prefixCls = (0, vue.computed)(() => ctx.value.prefixCls);
|
|
19
|
+
const classNames = (0, vue.computed)(() => ctx.value.classNames);
|
|
20
|
+
const styles = (0, vue.computed)(() => ctx.value.styles);
|
|
21
|
+
const rootRef = (0, vue.ref)();
|
|
22
|
+
const inputRef = (0, vue.ref)();
|
|
23
|
+
expose({
|
|
24
|
+
nativeElement: rootRef,
|
|
25
|
+
focus: (options) => {
|
|
26
|
+
inputRef.value?.focus(options);
|
|
27
|
+
},
|
|
28
|
+
blur: () => {
|
|
29
|
+
inputRef.value?.blur();
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
const rootProps = require_useRootProps.default(props);
|
|
33
|
+
const onSingleChange = (date) => {
|
|
34
|
+
props.onChange?.([date]);
|
|
35
|
+
};
|
|
36
|
+
const onMultipleRemove = (date) => {
|
|
37
|
+
const nextValues = (props.value || []).filter((oriDate) => oriDate && !require_dateUtil.isSame(props.generateConfig, props.locale, oriDate, date, props.internalPicker));
|
|
38
|
+
props.onChange?.(nextValues);
|
|
39
|
+
if (!props.open) props.onSubmit?.();
|
|
40
|
+
};
|
|
41
|
+
const [getInputProps, getText] = require_useInputHooks.default((0, vue.computed)(() => ({
|
|
42
|
+
...props,
|
|
43
|
+
"aria-required": !!props["aria-required"],
|
|
44
|
+
"onChange": onSingleChange
|
|
45
|
+
})), ({ valueTexts }) => ({
|
|
46
|
+
value: valueTexts[0] || "",
|
|
47
|
+
active: props.focused
|
|
48
|
+
}));
|
|
49
|
+
return () => {
|
|
50
|
+
const { prefix, clearIcon, suffixIcon, placeholder, onClick, onClear, multiple, maxTagCount, removeIcon, onMouseDown, value, disabled, invalid, autoFocus, tabIndex } = props;
|
|
51
|
+
const showClear = !!(clearIcon && value && value.length && !disabled);
|
|
52
|
+
const selectorNode = multiple ? (0, vue.createVNode)(vue.Fragment, null, [
|
|
53
|
+
(0, vue.createVNode)(require_MultipleDates.default, {
|
|
54
|
+
"prefixCls": prefixCls.value,
|
|
55
|
+
"value": value,
|
|
56
|
+
"onRemove": onMultipleRemove,
|
|
57
|
+
"formatDate": getText,
|
|
58
|
+
"maxTagCount": maxTagCount,
|
|
59
|
+
"disabled": disabled,
|
|
60
|
+
"removeIcon": removeIcon,
|
|
61
|
+
"placeholder": placeholder
|
|
62
|
+
}, null),
|
|
63
|
+
(0, vue.createVNode)("input", {
|
|
64
|
+
"class": `${prefixCls.value}-multiple-input`,
|
|
65
|
+
"value": (value || []).map(getText).join(","),
|
|
66
|
+
"ref": inputRef,
|
|
67
|
+
"readonly": true,
|
|
68
|
+
"autofocus": autoFocus,
|
|
69
|
+
"tabindex": tabIndex
|
|
70
|
+
}, null),
|
|
71
|
+
(0, vue.createVNode)(require_Icon.default, {
|
|
72
|
+
"type": "suffix",
|
|
73
|
+
"icon": suffixIcon
|
|
74
|
+
}, null),
|
|
75
|
+
showClear && (0, vue.createVNode)(require_Icon.ClearIcon, {
|
|
76
|
+
"icon": clearIcon,
|
|
77
|
+
"onClear": onClear
|
|
78
|
+
}, null)
|
|
79
|
+
]) : (0, vue.createVNode)(require_Input.default, (0, vue.mergeProps)({ "ref": inputRef }, getInputProps(), {
|
|
80
|
+
"autofocus": autoFocus,
|
|
81
|
+
"tabindex": tabIndex,
|
|
82
|
+
"suffixIcon": suffixIcon,
|
|
83
|
+
"clearIcon": showClear && (0, vue.createVNode)(require_Icon.ClearIcon, {
|
|
84
|
+
"icon": clearIcon,
|
|
85
|
+
"onClear": onClear
|
|
86
|
+
}, null),
|
|
87
|
+
"showActiveCls": false
|
|
88
|
+
}), null);
|
|
89
|
+
return (0, vue.createVNode)("div", (0, vue.mergeProps)(rootProps.value, {
|
|
90
|
+
"class": (0, _v_c_util.clsx)(prefixCls.value, {
|
|
91
|
+
[`${prefixCls.value}-multiple`]: multiple,
|
|
92
|
+
[`${prefixCls.value}-focused`]: props.focused,
|
|
93
|
+
[`${prefixCls.value}-disabled`]: disabled,
|
|
94
|
+
[`${prefixCls.value}-invalid`]: invalid,
|
|
95
|
+
[`${prefixCls.value}-rtl`]: rtl.value
|
|
96
|
+
}, attrs.class),
|
|
97
|
+
"style": { ...attrs.style },
|
|
98
|
+
"ref": rootRef,
|
|
99
|
+
"onClick": onClick,
|
|
100
|
+
"onMousedown": (e) => {
|
|
101
|
+
const { target } = e;
|
|
102
|
+
if (target !== inputRef.value?.inputElement) e.preventDefault();
|
|
103
|
+
onMouseDown?.(e);
|
|
104
|
+
}
|
|
105
|
+
}), [prefix && (0, vue.createVNode)("div", {
|
|
106
|
+
"class": (0, _v_c_util.clsx)(`${prefixCls.value}-prefix`, classNames.value.prefix),
|
|
107
|
+
"style": styles.value.prefix
|
|
108
|
+
}, [prefix]), selectorNode]);
|
|
109
|
+
};
|
|
110
|
+
}, {
|
|
111
|
+
props: {
|
|
112
|
+
id: {
|
|
113
|
+
type: String,
|
|
114
|
+
required: false,
|
|
115
|
+
default: void 0
|
|
116
|
+
},
|
|
117
|
+
value: {
|
|
118
|
+
type: Array,
|
|
119
|
+
required: false,
|
|
120
|
+
default: void 0
|
|
121
|
+
},
|
|
122
|
+
onChange: {
|
|
123
|
+
type: Function,
|
|
124
|
+
required: true,
|
|
125
|
+
default: void 0
|
|
126
|
+
},
|
|
127
|
+
internalPicker: {
|
|
128
|
+
type: String,
|
|
129
|
+
required: true,
|
|
130
|
+
default: void 0
|
|
131
|
+
},
|
|
132
|
+
disabled: {
|
|
133
|
+
type: Boolean,
|
|
134
|
+
required: false,
|
|
135
|
+
default: void 0
|
|
136
|
+
},
|
|
137
|
+
allHelp: {
|
|
138
|
+
type: Boolean,
|
|
139
|
+
required: false,
|
|
140
|
+
default: void 0
|
|
141
|
+
},
|
|
142
|
+
placeholder: {
|
|
143
|
+
type: String,
|
|
144
|
+
required: false,
|
|
145
|
+
default: void 0
|
|
146
|
+
},
|
|
147
|
+
invalid: {
|
|
148
|
+
type: Boolean,
|
|
149
|
+
required: false,
|
|
150
|
+
default: void 0
|
|
151
|
+
},
|
|
152
|
+
onInvalid: {
|
|
153
|
+
type: Function,
|
|
154
|
+
required: true,
|
|
155
|
+
default: void 0
|
|
156
|
+
},
|
|
157
|
+
removeIcon: {
|
|
158
|
+
required: false,
|
|
159
|
+
default: void 0
|
|
160
|
+
},
|
|
161
|
+
maxTagCount: {
|
|
162
|
+
type: [Number, String],
|
|
163
|
+
required: false,
|
|
164
|
+
default: void 0
|
|
165
|
+
},
|
|
166
|
+
multiple: {
|
|
167
|
+
type: Boolean,
|
|
168
|
+
required: false,
|
|
169
|
+
default: void 0
|
|
170
|
+
},
|
|
171
|
+
onMouseDown: {
|
|
172
|
+
type: Function,
|
|
173
|
+
required: false,
|
|
174
|
+
default: void 0
|
|
175
|
+
},
|
|
176
|
+
autoFocus: {
|
|
177
|
+
type: Boolean,
|
|
178
|
+
required: false,
|
|
179
|
+
default: void 0
|
|
180
|
+
},
|
|
181
|
+
tabIndex: {
|
|
182
|
+
type: [Number, String],
|
|
183
|
+
required: false,
|
|
184
|
+
default: void 0
|
|
185
|
+
},
|
|
186
|
+
picker: {
|
|
187
|
+
type: String,
|
|
188
|
+
required: true,
|
|
189
|
+
default: void 0
|
|
190
|
+
},
|
|
191
|
+
prefix: {
|
|
192
|
+
type: [
|
|
193
|
+
Object,
|
|
194
|
+
Function,
|
|
195
|
+
String,
|
|
196
|
+
Number,
|
|
197
|
+
null,
|
|
198
|
+
Boolean,
|
|
199
|
+
Array
|
|
200
|
+
],
|
|
201
|
+
required: false,
|
|
202
|
+
default: void 0
|
|
203
|
+
},
|
|
204
|
+
clearIcon: {
|
|
205
|
+
type: [
|
|
206
|
+
Object,
|
|
207
|
+
Function,
|
|
208
|
+
String,
|
|
209
|
+
Number,
|
|
210
|
+
null,
|
|
211
|
+
Boolean,
|
|
212
|
+
Array
|
|
213
|
+
],
|
|
214
|
+
required: false,
|
|
215
|
+
default: void 0
|
|
216
|
+
},
|
|
217
|
+
suffixIcon: {
|
|
218
|
+
type: [
|
|
219
|
+
Object,
|
|
220
|
+
Function,
|
|
221
|
+
String,
|
|
222
|
+
Number,
|
|
223
|
+
null,
|
|
224
|
+
Boolean,
|
|
225
|
+
Array
|
|
226
|
+
],
|
|
227
|
+
required: false,
|
|
228
|
+
default: void 0
|
|
229
|
+
},
|
|
230
|
+
className: {
|
|
231
|
+
type: String,
|
|
232
|
+
required: false,
|
|
233
|
+
default: void 0
|
|
234
|
+
},
|
|
235
|
+
style: {
|
|
236
|
+
type: Object,
|
|
237
|
+
required: false,
|
|
238
|
+
default: void 0
|
|
239
|
+
},
|
|
240
|
+
activeHelp: {
|
|
241
|
+
type: Boolean,
|
|
242
|
+
required: false,
|
|
243
|
+
default: void 0
|
|
244
|
+
},
|
|
245
|
+
focused: {
|
|
246
|
+
type: Boolean,
|
|
247
|
+
required: true,
|
|
248
|
+
default: void 0
|
|
249
|
+
},
|
|
250
|
+
onFocus: {
|
|
251
|
+
type: Function,
|
|
252
|
+
required: true,
|
|
253
|
+
default: void 0
|
|
254
|
+
},
|
|
255
|
+
onBlur: {
|
|
256
|
+
type: Function,
|
|
257
|
+
required: true,
|
|
258
|
+
default: void 0
|
|
259
|
+
},
|
|
260
|
+
onSubmit: {
|
|
261
|
+
required: true,
|
|
262
|
+
default: void 0
|
|
263
|
+
},
|
|
264
|
+
onKeyDown: {
|
|
265
|
+
type: Function,
|
|
266
|
+
required: false,
|
|
267
|
+
default: void 0
|
|
268
|
+
},
|
|
269
|
+
locale: {
|
|
270
|
+
type: Object,
|
|
271
|
+
required: true,
|
|
272
|
+
default: void 0
|
|
273
|
+
},
|
|
274
|
+
generateConfig: {
|
|
275
|
+
type: Object,
|
|
276
|
+
required: true,
|
|
277
|
+
default: void 0
|
|
278
|
+
},
|
|
279
|
+
direction: {
|
|
280
|
+
type: String,
|
|
281
|
+
required: false,
|
|
282
|
+
default: void 0
|
|
283
|
+
},
|
|
284
|
+
onClick: {
|
|
285
|
+
type: [Function, Array],
|
|
286
|
+
required: true,
|
|
287
|
+
default: void 0
|
|
288
|
+
},
|
|
289
|
+
onClear: {
|
|
290
|
+
required: true,
|
|
291
|
+
default: void 0
|
|
292
|
+
},
|
|
293
|
+
format: {
|
|
294
|
+
type: Array,
|
|
295
|
+
required: true,
|
|
296
|
+
default: void 0
|
|
297
|
+
},
|
|
298
|
+
maskFormat: {
|
|
299
|
+
type: String,
|
|
300
|
+
required: false,
|
|
301
|
+
default: void 0
|
|
302
|
+
},
|
|
303
|
+
onInputChange: {
|
|
304
|
+
required: true,
|
|
305
|
+
default: void 0
|
|
306
|
+
},
|
|
307
|
+
preserveInvalidOnBlur: {
|
|
308
|
+
type: Boolean,
|
|
309
|
+
required: false,
|
|
310
|
+
default: void 0
|
|
311
|
+
},
|
|
312
|
+
open: {
|
|
313
|
+
type: Boolean,
|
|
314
|
+
required: true,
|
|
315
|
+
default: void 0
|
|
316
|
+
},
|
|
317
|
+
onOpenChange: {
|
|
318
|
+
type: Function,
|
|
319
|
+
required: true,
|
|
320
|
+
default: void 0
|
|
321
|
+
},
|
|
322
|
+
inputReadOnly: {
|
|
323
|
+
type: Boolean,
|
|
324
|
+
required: false,
|
|
325
|
+
default: void 0
|
|
326
|
+
},
|
|
327
|
+
innerHTML: {
|
|
328
|
+
type: [String, null],
|
|
329
|
+
required: false,
|
|
330
|
+
default: void 0
|
|
331
|
+
},
|
|
332
|
+
class: {
|
|
333
|
+
required: false,
|
|
334
|
+
default: void 0
|
|
335
|
+
},
|
|
336
|
+
accesskey: {
|
|
337
|
+
type: [String, null],
|
|
338
|
+
required: false,
|
|
339
|
+
default: void 0
|
|
340
|
+
},
|
|
341
|
+
contenteditable: {
|
|
342
|
+
type: [
|
|
343
|
+
Boolean,
|
|
344
|
+
String,
|
|
345
|
+
null
|
|
346
|
+
],
|
|
347
|
+
required: false,
|
|
348
|
+
default: void 0
|
|
349
|
+
},
|
|
350
|
+
contextmenu: {
|
|
351
|
+
type: [String, null],
|
|
352
|
+
required: false,
|
|
353
|
+
default: void 0
|
|
354
|
+
},
|
|
355
|
+
dir: {
|
|
356
|
+
type: [String, null],
|
|
357
|
+
required: false,
|
|
358
|
+
default: void 0
|
|
359
|
+
},
|
|
360
|
+
draggable: {
|
|
361
|
+
type: [
|
|
362
|
+
Boolean,
|
|
363
|
+
String,
|
|
364
|
+
null
|
|
365
|
+
],
|
|
366
|
+
required: false,
|
|
367
|
+
default: void 0
|
|
368
|
+
},
|
|
369
|
+
enterkeyhint: {
|
|
370
|
+
type: [String, null],
|
|
371
|
+
required: false,
|
|
372
|
+
default: void 0
|
|
373
|
+
},
|
|
374
|
+
enterKeyHint: {
|
|
375
|
+
type: [String, null],
|
|
376
|
+
required: false,
|
|
377
|
+
default: void 0
|
|
378
|
+
},
|
|
379
|
+
hidden: {
|
|
380
|
+
type: [
|
|
381
|
+
Boolean,
|
|
382
|
+
String,
|
|
383
|
+
null
|
|
384
|
+
],
|
|
385
|
+
required: false,
|
|
386
|
+
default: void 0
|
|
387
|
+
},
|
|
388
|
+
inert: {
|
|
389
|
+
type: [
|
|
390
|
+
Boolean,
|
|
391
|
+
String,
|
|
392
|
+
null
|
|
393
|
+
],
|
|
394
|
+
required: false,
|
|
395
|
+
default: void 0
|
|
396
|
+
},
|
|
397
|
+
lang: {
|
|
398
|
+
type: [String, null],
|
|
399
|
+
required: false,
|
|
400
|
+
default: void 0
|
|
401
|
+
},
|
|
402
|
+
spellcheck: {
|
|
403
|
+
type: [
|
|
404
|
+
Boolean,
|
|
405
|
+
String,
|
|
406
|
+
null
|
|
407
|
+
],
|
|
408
|
+
required: false,
|
|
409
|
+
default: void 0
|
|
410
|
+
},
|
|
411
|
+
tabindex: {
|
|
412
|
+
type: [
|
|
413
|
+
Number,
|
|
414
|
+
String,
|
|
415
|
+
null
|
|
416
|
+
],
|
|
417
|
+
required: false,
|
|
418
|
+
default: void 0
|
|
419
|
+
},
|
|
420
|
+
title: {
|
|
421
|
+
type: [String, null],
|
|
422
|
+
required: false,
|
|
423
|
+
default: void 0
|
|
424
|
+
},
|
|
425
|
+
translate: {
|
|
426
|
+
type: [String, null],
|
|
427
|
+
required: false,
|
|
428
|
+
default: void 0
|
|
429
|
+
},
|
|
430
|
+
radiogroup: {
|
|
431
|
+
type: [String, null],
|
|
432
|
+
required: false,
|
|
433
|
+
default: void 0
|
|
434
|
+
},
|
|
435
|
+
role: {
|
|
436
|
+
type: [String, null],
|
|
437
|
+
required: false,
|
|
438
|
+
default: void 0
|
|
439
|
+
},
|
|
440
|
+
about: {
|
|
441
|
+
type: [String, null],
|
|
442
|
+
required: false,
|
|
443
|
+
default: void 0
|
|
444
|
+
},
|
|
445
|
+
datatype: {
|
|
446
|
+
type: [String, null],
|
|
447
|
+
required: false,
|
|
448
|
+
default: void 0
|
|
449
|
+
},
|
|
450
|
+
inlist: {
|
|
451
|
+
required: false,
|
|
452
|
+
default: void 0
|
|
453
|
+
},
|
|
454
|
+
property: {
|
|
455
|
+
type: [String, null],
|
|
456
|
+
required: false,
|
|
457
|
+
default: void 0
|
|
458
|
+
},
|
|
459
|
+
resource: {
|
|
460
|
+
type: [String, null],
|
|
461
|
+
required: false,
|
|
462
|
+
default: void 0
|
|
463
|
+
},
|
|
464
|
+
typeof: {
|
|
465
|
+
type: [String, null],
|
|
466
|
+
required: false,
|
|
467
|
+
default: void 0
|
|
468
|
+
},
|
|
469
|
+
vocab: {
|
|
470
|
+
type: [String, null],
|
|
471
|
+
required: false,
|
|
472
|
+
default: void 0
|
|
473
|
+
},
|
|
474
|
+
autocapitalize: {
|
|
475
|
+
type: [String, null],
|
|
476
|
+
required: false,
|
|
477
|
+
default: void 0
|
|
478
|
+
},
|
|
479
|
+
autocorrect: {
|
|
480
|
+
type: [String, null],
|
|
481
|
+
required: false,
|
|
482
|
+
default: void 0
|
|
483
|
+
},
|
|
484
|
+
autosave: {
|
|
485
|
+
type: [String, null],
|
|
486
|
+
required: false,
|
|
487
|
+
default: void 0
|
|
488
|
+
},
|
|
489
|
+
color: {
|
|
490
|
+
type: [String, null],
|
|
491
|
+
required: false,
|
|
492
|
+
default: void 0
|
|
493
|
+
},
|
|
494
|
+
itemprop: {
|
|
495
|
+
type: [String, null],
|
|
496
|
+
required: false,
|
|
497
|
+
default: void 0
|
|
498
|
+
},
|
|
499
|
+
itemscope: {
|
|
500
|
+
type: [
|
|
501
|
+
Boolean,
|
|
502
|
+
String,
|
|
503
|
+
null
|
|
504
|
+
],
|
|
505
|
+
required: false,
|
|
506
|
+
default: void 0
|
|
507
|
+
},
|
|
508
|
+
itemtype: {
|
|
509
|
+
type: [String, null],
|
|
510
|
+
required: false,
|
|
511
|
+
default: void 0
|
|
512
|
+
},
|
|
513
|
+
itemid: {
|
|
514
|
+
type: [String, null],
|
|
515
|
+
required: false,
|
|
516
|
+
default: void 0
|
|
517
|
+
},
|
|
518
|
+
itemref: {
|
|
519
|
+
type: [String, null],
|
|
520
|
+
required: false,
|
|
521
|
+
default: void 0
|
|
522
|
+
},
|
|
523
|
+
results: {
|
|
524
|
+
type: [
|
|
525
|
+
Number,
|
|
526
|
+
String,
|
|
527
|
+
null
|
|
528
|
+
],
|
|
529
|
+
required: false,
|
|
530
|
+
default: void 0
|
|
531
|
+
},
|
|
532
|
+
security: {
|
|
533
|
+
type: [String, null],
|
|
534
|
+
required: false,
|
|
535
|
+
default: void 0
|
|
536
|
+
},
|
|
537
|
+
unselectable: {
|
|
538
|
+
type: [String, null],
|
|
539
|
+
required: false,
|
|
540
|
+
default: void 0
|
|
541
|
+
},
|
|
542
|
+
inputmode: {
|
|
543
|
+
type: [String, null],
|
|
544
|
+
required: false,
|
|
545
|
+
default: void 0
|
|
546
|
+
},
|
|
547
|
+
is: {
|
|
548
|
+
type: [String, null],
|
|
549
|
+
required: false,
|
|
550
|
+
default: void 0
|
|
551
|
+
},
|
|
552
|
+
exportparts: {
|
|
553
|
+
type: String,
|
|
554
|
+
required: false,
|
|
555
|
+
default: void 0
|
|
556
|
+
},
|
|
557
|
+
part: {
|
|
558
|
+
type: String,
|
|
559
|
+
required: false,
|
|
560
|
+
default: void 0
|
|
561
|
+
},
|
|
562
|
+
"aria-activedescendant": {
|
|
563
|
+
type: [String, null],
|
|
564
|
+
required: false,
|
|
565
|
+
default: void 0
|
|
566
|
+
},
|
|
567
|
+
"aria-atomic": {
|
|
568
|
+
type: [
|
|
569
|
+
Boolean,
|
|
570
|
+
String,
|
|
571
|
+
null
|
|
572
|
+
],
|
|
573
|
+
required: false,
|
|
574
|
+
default: void 0
|
|
575
|
+
},
|
|
576
|
+
"aria-autocomplete": {
|
|
577
|
+
type: [String, null],
|
|
578
|
+
required: false,
|
|
579
|
+
default: void 0
|
|
580
|
+
},
|
|
581
|
+
"aria-busy": {
|
|
582
|
+
type: [
|
|
583
|
+
Boolean,
|
|
584
|
+
String,
|
|
585
|
+
null
|
|
586
|
+
],
|
|
587
|
+
required: false,
|
|
588
|
+
default: void 0
|
|
589
|
+
},
|
|
590
|
+
"aria-checked": {
|
|
591
|
+
type: [
|
|
592
|
+
Boolean,
|
|
593
|
+
String,
|
|
594
|
+
null
|
|
595
|
+
],
|
|
596
|
+
required: false,
|
|
597
|
+
default: void 0
|
|
598
|
+
},
|
|
599
|
+
"aria-colcount": {
|
|
600
|
+
type: [
|
|
601
|
+
Number,
|
|
602
|
+
String,
|
|
603
|
+
null
|
|
604
|
+
],
|
|
605
|
+
required: false,
|
|
606
|
+
default: void 0
|
|
607
|
+
},
|
|
608
|
+
"aria-colindex": {
|
|
609
|
+
type: [
|
|
610
|
+
Number,
|
|
611
|
+
String,
|
|
612
|
+
null
|
|
613
|
+
],
|
|
614
|
+
required: false,
|
|
615
|
+
default: void 0
|
|
616
|
+
},
|
|
617
|
+
"aria-colspan": {
|
|
618
|
+
type: [
|
|
619
|
+
Number,
|
|
620
|
+
String,
|
|
621
|
+
null
|
|
622
|
+
],
|
|
623
|
+
required: false,
|
|
624
|
+
default: void 0
|
|
625
|
+
},
|
|
626
|
+
"aria-controls": {
|
|
627
|
+
type: [String, null],
|
|
628
|
+
required: false,
|
|
629
|
+
default: void 0
|
|
630
|
+
},
|
|
631
|
+
"aria-current": {
|
|
632
|
+
type: [
|
|
633
|
+
Boolean,
|
|
634
|
+
String,
|
|
635
|
+
null
|
|
636
|
+
],
|
|
637
|
+
required: false,
|
|
638
|
+
default: void 0
|
|
639
|
+
},
|
|
640
|
+
"aria-describedby": {
|
|
641
|
+
type: [String, null],
|
|
642
|
+
required: false,
|
|
643
|
+
default: void 0
|
|
644
|
+
},
|
|
645
|
+
"aria-details": {
|
|
646
|
+
type: [String, null],
|
|
647
|
+
required: false,
|
|
648
|
+
default: void 0
|
|
649
|
+
},
|
|
650
|
+
"aria-disabled": {
|
|
651
|
+
type: [
|
|
652
|
+
Boolean,
|
|
653
|
+
String,
|
|
654
|
+
null
|
|
655
|
+
],
|
|
656
|
+
required: false,
|
|
657
|
+
default: void 0
|
|
658
|
+
},
|
|
659
|
+
"aria-dropeffect": {
|
|
660
|
+
type: [String, null],
|
|
661
|
+
required: false,
|
|
662
|
+
default: void 0
|
|
663
|
+
},
|
|
664
|
+
"aria-errormessage": {
|
|
665
|
+
type: [String, null],
|
|
666
|
+
required: false,
|
|
667
|
+
default: void 0
|
|
668
|
+
},
|
|
669
|
+
"aria-expanded": {
|
|
670
|
+
type: [
|
|
671
|
+
Boolean,
|
|
672
|
+
String,
|
|
673
|
+
null
|
|
674
|
+
],
|
|
675
|
+
required: false,
|
|
676
|
+
default: void 0
|
|
677
|
+
},
|
|
678
|
+
"aria-flowto": {
|
|
679
|
+
type: [String, null],
|
|
680
|
+
required: false,
|
|
681
|
+
default: void 0
|
|
682
|
+
},
|
|
683
|
+
"aria-grabbed": {
|
|
684
|
+
type: [
|
|
685
|
+
Boolean,
|
|
686
|
+
String,
|
|
687
|
+
null
|
|
688
|
+
],
|
|
689
|
+
required: false,
|
|
690
|
+
default: void 0
|
|
691
|
+
},
|
|
692
|
+
"aria-haspopup": {
|
|
693
|
+
type: [
|
|
694
|
+
Boolean,
|
|
695
|
+
String,
|
|
696
|
+
null
|
|
697
|
+
],
|
|
698
|
+
required: false,
|
|
699
|
+
default: void 0
|
|
700
|
+
},
|
|
701
|
+
"aria-hidden": {
|
|
702
|
+
type: [
|
|
703
|
+
Boolean,
|
|
704
|
+
String,
|
|
705
|
+
null
|
|
706
|
+
],
|
|
707
|
+
required: false,
|
|
708
|
+
default: void 0
|
|
709
|
+
},
|
|
710
|
+
"aria-invalid": {
|
|
711
|
+
type: [
|
|
712
|
+
Boolean,
|
|
713
|
+
String,
|
|
714
|
+
null
|
|
715
|
+
],
|
|
716
|
+
required: false,
|
|
717
|
+
default: void 0
|
|
718
|
+
},
|
|
719
|
+
"aria-keyshortcuts": {
|
|
720
|
+
type: [String, null],
|
|
721
|
+
required: false,
|
|
722
|
+
default: void 0
|
|
723
|
+
},
|
|
724
|
+
"aria-label": {
|
|
725
|
+
type: [String, null],
|
|
726
|
+
required: false,
|
|
727
|
+
default: void 0
|
|
728
|
+
},
|
|
729
|
+
"aria-labelledby": {
|
|
730
|
+
type: [String, null],
|
|
731
|
+
required: false,
|
|
732
|
+
default: void 0
|
|
733
|
+
},
|
|
734
|
+
"aria-level": {
|
|
735
|
+
type: [
|
|
736
|
+
Number,
|
|
737
|
+
String,
|
|
738
|
+
null
|
|
739
|
+
],
|
|
740
|
+
required: false,
|
|
741
|
+
default: void 0
|
|
742
|
+
},
|
|
743
|
+
"aria-live": {
|
|
744
|
+
type: [String, null],
|
|
745
|
+
required: false,
|
|
746
|
+
default: void 0
|
|
747
|
+
},
|
|
748
|
+
"aria-modal": {
|
|
749
|
+
type: [
|
|
750
|
+
Boolean,
|
|
751
|
+
String,
|
|
752
|
+
null
|
|
753
|
+
],
|
|
754
|
+
required: false,
|
|
755
|
+
default: void 0
|
|
756
|
+
},
|
|
757
|
+
"aria-multiline": {
|
|
758
|
+
type: [
|
|
759
|
+
Boolean,
|
|
760
|
+
String,
|
|
761
|
+
null
|
|
762
|
+
],
|
|
763
|
+
required: false,
|
|
764
|
+
default: void 0
|
|
765
|
+
},
|
|
766
|
+
"aria-multiselectable": {
|
|
767
|
+
type: [
|
|
768
|
+
Boolean,
|
|
769
|
+
String,
|
|
770
|
+
null
|
|
771
|
+
],
|
|
772
|
+
required: false,
|
|
773
|
+
default: void 0
|
|
774
|
+
},
|
|
775
|
+
"aria-orientation": {
|
|
776
|
+
type: [String, null],
|
|
777
|
+
required: false,
|
|
778
|
+
default: void 0
|
|
779
|
+
},
|
|
780
|
+
"aria-owns": {
|
|
781
|
+
type: [String, null],
|
|
782
|
+
required: false,
|
|
783
|
+
default: void 0
|
|
784
|
+
},
|
|
785
|
+
"aria-placeholder": {
|
|
786
|
+
type: [String, null],
|
|
787
|
+
required: false,
|
|
788
|
+
default: void 0
|
|
789
|
+
},
|
|
790
|
+
"aria-posinset": {
|
|
791
|
+
type: [
|
|
792
|
+
Number,
|
|
793
|
+
String,
|
|
794
|
+
null
|
|
795
|
+
],
|
|
796
|
+
required: false,
|
|
797
|
+
default: void 0
|
|
798
|
+
},
|
|
799
|
+
"aria-pressed": {
|
|
800
|
+
type: [
|
|
801
|
+
Boolean,
|
|
802
|
+
String,
|
|
803
|
+
null
|
|
804
|
+
],
|
|
805
|
+
required: false,
|
|
806
|
+
default: void 0
|
|
807
|
+
},
|
|
808
|
+
"aria-readonly": {
|
|
809
|
+
type: [
|
|
810
|
+
Boolean,
|
|
811
|
+
String,
|
|
812
|
+
null
|
|
813
|
+
],
|
|
814
|
+
required: false,
|
|
815
|
+
default: void 0
|
|
816
|
+
},
|
|
817
|
+
"aria-relevant": {
|
|
818
|
+
type: [String, null],
|
|
819
|
+
required: false,
|
|
820
|
+
default: void 0
|
|
821
|
+
},
|
|
822
|
+
"aria-required": {
|
|
823
|
+
type: [
|
|
824
|
+
Boolean,
|
|
825
|
+
String,
|
|
826
|
+
null
|
|
827
|
+
],
|
|
828
|
+
required: false,
|
|
829
|
+
default: void 0
|
|
830
|
+
},
|
|
831
|
+
"aria-roledescription": {
|
|
832
|
+
type: [String, null],
|
|
833
|
+
required: false,
|
|
834
|
+
default: void 0
|
|
835
|
+
},
|
|
836
|
+
"aria-rowcount": {
|
|
837
|
+
type: [
|
|
838
|
+
Number,
|
|
839
|
+
String,
|
|
840
|
+
null
|
|
841
|
+
],
|
|
842
|
+
required: false,
|
|
843
|
+
default: void 0
|
|
844
|
+
},
|
|
845
|
+
"aria-rowindex": {
|
|
846
|
+
type: [
|
|
847
|
+
Number,
|
|
848
|
+
String,
|
|
849
|
+
null
|
|
850
|
+
],
|
|
851
|
+
required: false,
|
|
852
|
+
default: void 0
|
|
853
|
+
},
|
|
854
|
+
"aria-rowspan": {
|
|
855
|
+
type: [
|
|
856
|
+
Number,
|
|
857
|
+
String,
|
|
858
|
+
null
|
|
859
|
+
],
|
|
860
|
+
required: false,
|
|
861
|
+
default: void 0
|
|
862
|
+
},
|
|
863
|
+
"aria-selected": {
|
|
864
|
+
type: [
|
|
865
|
+
Boolean,
|
|
866
|
+
String,
|
|
867
|
+
null
|
|
868
|
+
],
|
|
869
|
+
required: false,
|
|
870
|
+
default: void 0
|
|
871
|
+
},
|
|
872
|
+
"aria-setsize": {
|
|
873
|
+
type: [
|
|
874
|
+
Number,
|
|
875
|
+
String,
|
|
876
|
+
null
|
|
877
|
+
],
|
|
878
|
+
required: false,
|
|
879
|
+
default: void 0
|
|
880
|
+
},
|
|
881
|
+
"aria-sort": {
|
|
882
|
+
type: [String, null],
|
|
883
|
+
required: false,
|
|
884
|
+
default: void 0
|
|
885
|
+
},
|
|
886
|
+
"aria-valuemax": {
|
|
887
|
+
type: [
|
|
888
|
+
Number,
|
|
889
|
+
String,
|
|
890
|
+
null
|
|
891
|
+
],
|
|
892
|
+
required: false,
|
|
893
|
+
default: void 0
|
|
894
|
+
},
|
|
895
|
+
"aria-valuemin": {
|
|
896
|
+
type: [
|
|
897
|
+
Number,
|
|
898
|
+
String,
|
|
899
|
+
null
|
|
900
|
+
],
|
|
901
|
+
required: false,
|
|
902
|
+
default: void 0
|
|
903
|
+
},
|
|
904
|
+
"aria-valuenow": {
|
|
905
|
+
type: [
|
|
906
|
+
Number,
|
|
907
|
+
String,
|
|
908
|
+
null
|
|
909
|
+
],
|
|
910
|
+
required: false,
|
|
911
|
+
default: void 0
|
|
912
|
+
},
|
|
913
|
+
"aria-valuetext": {
|
|
914
|
+
type: [String, null],
|
|
915
|
+
required: false,
|
|
916
|
+
default: void 0
|
|
917
|
+
},
|
|
918
|
+
onCopy: {
|
|
919
|
+
type: Function,
|
|
920
|
+
required: false,
|
|
921
|
+
default: void 0
|
|
922
|
+
},
|
|
923
|
+
onCut: {
|
|
924
|
+
type: Function,
|
|
925
|
+
required: false,
|
|
926
|
+
default: void 0
|
|
927
|
+
},
|
|
928
|
+
onPaste: {
|
|
929
|
+
type: Function,
|
|
930
|
+
required: false,
|
|
931
|
+
default: void 0
|
|
932
|
+
},
|
|
933
|
+
onCompositionend: {
|
|
934
|
+
type: Function,
|
|
935
|
+
required: false,
|
|
936
|
+
default: void 0
|
|
937
|
+
},
|
|
938
|
+
onCompositionstart: {
|
|
939
|
+
type: Function,
|
|
940
|
+
required: false,
|
|
941
|
+
default: void 0
|
|
942
|
+
},
|
|
943
|
+
onCompositionupdate: {
|
|
944
|
+
type: Function,
|
|
945
|
+
required: false,
|
|
946
|
+
default: void 0
|
|
947
|
+
},
|
|
948
|
+
onDrag: {
|
|
949
|
+
type: Function,
|
|
950
|
+
required: false,
|
|
951
|
+
default: void 0
|
|
952
|
+
},
|
|
953
|
+
onDragend: {
|
|
954
|
+
type: Function,
|
|
955
|
+
required: false,
|
|
956
|
+
default: void 0
|
|
957
|
+
},
|
|
958
|
+
onDragenter: {
|
|
959
|
+
type: Function,
|
|
960
|
+
required: false,
|
|
961
|
+
default: void 0
|
|
962
|
+
},
|
|
963
|
+
onDragexit: {
|
|
964
|
+
type: Function,
|
|
965
|
+
required: false,
|
|
966
|
+
default: void 0
|
|
967
|
+
},
|
|
968
|
+
onDragleave: {
|
|
969
|
+
type: Function,
|
|
970
|
+
required: false,
|
|
971
|
+
default: void 0
|
|
972
|
+
},
|
|
973
|
+
onDragover: {
|
|
974
|
+
type: Function,
|
|
975
|
+
required: false,
|
|
976
|
+
default: void 0
|
|
977
|
+
},
|
|
978
|
+
onDragstart: {
|
|
979
|
+
type: Function,
|
|
980
|
+
required: false,
|
|
981
|
+
default: void 0
|
|
982
|
+
},
|
|
983
|
+
onDrop: {
|
|
984
|
+
type: Function,
|
|
985
|
+
required: false,
|
|
986
|
+
default: void 0
|
|
987
|
+
},
|
|
988
|
+
onFocusin: {
|
|
989
|
+
type: Function,
|
|
990
|
+
required: false,
|
|
991
|
+
default: void 0
|
|
992
|
+
},
|
|
993
|
+
onFocusout: {
|
|
994
|
+
type: Function,
|
|
995
|
+
required: false,
|
|
996
|
+
default: void 0
|
|
997
|
+
},
|
|
998
|
+
onBeforeinput: {
|
|
999
|
+
type: Function,
|
|
1000
|
+
required: false,
|
|
1001
|
+
default: void 0
|
|
1002
|
+
},
|
|
1003
|
+
onFormdata: {
|
|
1004
|
+
type: Function,
|
|
1005
|
+
required: false,
|
|
1006
|
+
default: void 0
|
|
1007
|
+
},
|
|
1008
|
+
onInput: {
|
|
1009
|
+
type: Function,
|
|
1010
|
+
required: false,
|
|
1011
|
+
default: void 0
|
|
1012
|
+
},
|
|
1013
|
+
onReset: {
|
|
1014
|
+
type: Function,
|
|
1015
|
+
required: false,
|
|
1016
|
+
default: void 0
|
|
1017
|
+
},
|
|
1018
|
+
onFullscreenchange: {
|
|
1019
|
+
type: Function,
|
|
1020
|
+
required: false,
|
|
1021
|
+
default: void 0
|
|
1022
|
+
},
|
|
1023
|
+
onFullscreenerror: {
|
|
1024
|
+
type: Function,
|
|
1025
|
+
required: false,
|
|
1026
|
+
default: void 0
|
|
1027
|
+
},
|
|
1028
|
+
onLoad: {
|
|
1029
|
+
type: Function,
|
|
1030
|
+
required: false,
|
|
1031
|
+
default: void 0
|
|
1032
|
+
},
|
|
1033
|
+
onError: {
|
|
1034
|
+
type: Function,
|
|
1035
|
+
required: false,
|
|
1036
|
+
default: void 0
|
|
1037
|
+
},
|
|
1038
|
+
onKeydown: {
|
|
1039
|
+
type: Function,
|
|
1040
|
+
required: false,
|
|
1041
|
+
default: void 0
|
|
1042
|
+
},
|
|
1043
|
+
onKeypress: {
|
|
1044
|
+
type: Function,
|
|
1045
|
+
required: false,
|
|
1046
|
+
default: void 0
|
|
1047
|
+
},
|
|
1048
|
+
onKeyup: {
|
|
1049
|
+
type: Function,
|
|
1050
|
+
required: false,
|
|
1051
|
+
default: void 0
|
|
1052
|
+
},
|
|
1053
|
+
onDblclick: {
|
|
1054
|
+
type: Function,
|
|
1055
|
+
required: false,
|
|
1056
|
+
default: void 0
|
|
1057
|
+
},
|
|
1058
|
+
onMousedown: {
|
|
1059
|
+
type: Function,
|
|
1060
|
+
required: false,
|
|
1061
|
+
default: void 0
|
|
1062
|
+
},
|
|
1063
|
+
onMouseenter: {
|
|
1064
|
+
type: Function,
|
|
1065
|
+
required: false,
|
|
1066
|
+
default: void 0
|
|
1067
|
+
},
|
|
1068
|
+
onMouseleave: {
|
|
1069
|
+
type: Function,
|
|
1070
|
+
required: false,
|
|
1071
|
+
default: void 0
|
|
1072
|
+
},
|
|
1073
|
+
onMousemove: {
|
|
1074
|
+
type: Function,
|
|
1075
|
+
required: false,
|
|
1076
|
+
default: void 0
|
|
1077
|
+
},
|
|
1078
|
+
onMouseout: {
|
|
1079
|
+
type: Function,
|
|
1080
|
+
required: false,
|
|
1081
|
+
default: void 0
|
|
1082
|
+
},
|
|
1083
|
+
onMouseover: {
|
|
1084
|
+
type: Function,
|
|
1085
|
+
required: false,
|
|
1086
|
+
default: void 0
|
|
1087
|
+
},
|
|
1088
|
+
onMouseup: {
|
|
1089
|
+
type: Function,
|
|
1090
|
+
required: false,
|
|
1091
|
+
default: void 0
|
|
1092
|
+
},
|
|
1093
|
+
onAbort: {
|
|
1094
|
+
type: Function,
|
|
1095
|
+
required: false,
|
|
1096
|
+
default: void 0
|
|
1097
|
+
},
|
|
1098
|
+
onCanplay: {
|
|
1099
|
+
type: Function,
|
|
1100
|
+
required: false,
|
|
1101
|
+
default: void 0
|
|
1102
|
+
},
|
|
1103
|
+
onCanplaythrough: {
|
|
1104
|
+
type: Function,
|
|
1105
|
+
required: false,
|
|
1106
|
+
default: void 0
|
|
1107
|
+
},
|
|
1108
|
+
onDurationchange: {
|
|
1109
|
+
type: Function,
|
|
1110
|
+
required: false,
|
|
1111
|
+
default: void 0
|
|
1112
|
+
},
|
|
1113
|
+
onEmptied: {
|
|
1114
|
+
type: Function,
|
|
1115
|
+
required: false,
|
|
1116
|
+
default: void 0
|
|
1117
|
+
},
|
|
1118
|
+
onEncrypted: {
|
|
1119
|
+
type: Function,
|
|
1120
|
+
required: false,
|
|
1121
|
+
default: void 0
|
|
1122
|
+
},
|
|
1123
|
+
onEnded: {
|
|
1124
|
+
type: Function,
|
|
1125
|
+
required: false,
|
|
1126
|
+
default: void 0
|
|
1127
|
+
},
|
|
1128
|
+
onLoadeddata: {
|
|
1129
|
+
type: Function,
|
|
1130
|
+
required: false,
|
|
1131
|
+
default: void 0
|
|
1132
|
+
},
|
|
1133
|
+
onLoadedmetadata: {
|
|
1134
|
+
type: Function,
|
|
1135
|
+
required: false,
|
|
1136
|
+
default: void 0
|
|
1137
|
+
},
|
|
1138
|
+
onLoadstart: {
|
|
1139
|
+
type: Function,
|
|
1140
|
+
required: false,
|
|
1141
|
+
default: void 0
|
|
1142
|
+
},
|
|
1143
|
+
onPause: {
|
|
1144
|
+
type: Function,
|
|
1145
|
+
required: false,
|
|
1146
|
+
default: void 0
|
|
1147
|
+
},
|
|
1148
|
+
onPlay: {
|
|
1149
|
+
type: Function,
|
|
1150
|
+
required: false,
|
|
1151
|
+
default: void 0
|
|
1152
|
+
},
|
|
1153
|
+
onPlaying: {
|
|
1154
|
+
type: Function,
|
|
1155
|
+
required: false,
|
|
1156
|
+
default: void 0
|
|
1157
|
+
},
|
|
1158
|
+
onProgress: {
|
|
1159
|
+
type: Function,
|
|
1160
|
+
required: false,
|
|
1161
|
+
default: void 0
|
|
1162
|
+
},
|
|
1163
|
+
onRatechange: {
|
|
1164
|
+
type: Function,
|
|
1165
|
+
required: false,
|
|
1166
|
+
default: void 0
|
|
1167
|
+
},
|
|
1168
|
+
onSeeked: {
|
|
1169
|
+
type: Function,
|
|
1170
|
+
required: false,
|
|
1171
|
+
default: void 0
|
|
1172
|
+
},
|
|
1173
|
+
onSeeking: {
|
|
1174
|
+
type: Function,
|
|
1175
|
+
required: false,
|
|
1176
|
+
default: void 0
|
|
1177
|
+
},
|
|
1178
|
+
onStalled: {
|
|
1179
|
+
type: Function,
|
|
1180
|
+
required: false,
|
|
1181
|
+
default: void 0
|
|
1182
|
+
},
|
|
1183
|
+
onSuspend: {
|
|
1184
|
+
type: Function,
|
|
1185
|
+
required: false,
|
|
1186
|
+
default: void 0
|
|
1187
|
+
},
|
|
1188
|
+
onTimeupdate: {
|
|
1189
|
+
type: Function,
|
|
1190
|
+
required: false,
|
|
1191
|
+
default: void 0
|
|
1192
|
+
},
|
|
1193
|
+
onVolumechange: {
|
|
1194
|
+
type: Function,
|
|
1195
|
+
required: false,
|
|
1196
|
+
default: void 0
|
|
1197
|
+
},
|
|
1198
|
+
onWaiting: {
|
|
1199
|
+
type: Function,
|
|
1200
|
+
required: false,
|
|
1201
|
+
default: void 0
|
|
1202
|
+
},
|
|
1203
|
+
onScroll: {
|
|
1204
|
+
type: Function,
|
|
1205
|
+
required: false,
|
|
1206
|
+
default: void 0
|
|
1207
|
+
},
|
|
1208
|
+
onScrollend: {
|
|
1209
|
+
type: Function,
|
|
1210
|
+
required: false,
|
|
1211
|
+
default: void 0
|
|
1212
|
+
},
|
|
1213
|
+
onTouchcancel: {
|
|
1214
|
+
type: Function,
|
|
1215
|
+
required: false,
|
|
1216
|
+
default: void 0
|
|
1217
|
+
},
|
|
1218
|
+
onTouchend: {
|
|
1219
|
+
type: Function,
|
|
1220
|
+
required: false,
|
|
1221
|
+
default: void 0
|
|
1222
|
+
},
|
|
1223
|
+
onTouchmove: {
|
|
1224
|
+
type: Function,
|
|
1225
|
+
required: false,
|
|
1226
|
+
default: void 0
|
|
1227
|
+
},
|
|
1228
|
+
onTouchstart: {
|
|
1229
|
+
type: Function,
|
|
1230
|
+
required: false,
|
|
1231
|
+
default: void 0
|
|
1232
|
+
},
|
|
1233
|
+
onAuxclick: {
|
|
1234
|
+
type: Function,
|
|
1235
|
+
required: false,
|
|
1236
|
+
default: void 0
|
|
1237
|
+
},
|
|
1238
|
+
onContextmenu: {
|
|
1239
|
+
type: Function,
|
|
1240
|
+
required: false,
|
|
1241
|
+
default: void 0
|
|
1242
|
+
},
|
|
1243
|
+
onGotpointercapture: {
|
|
1244
|
+
type: Function,
|
|
1245
|
+
required: false,
|
|
1246
|
+
default: void 0
|
|
1247
|
+
},
|
|
1248
|
+
onLostpointercapture: {
|
|
1249
|
+
type: Function,
|
|
1250
|
+
required: false,
|
|
1251
|
+
default: void 0
|
|
1252
|
+
},
|
|
1253
|
+
onPointerdown: {
|
|
1254
|
+
type: Function,
|
|
1255
|
+
required: false,
|
|
1256
|
+
default: void 0
|
|
1257
|
+
},
|
|
1258
|
+
onPointermove: {
|
|
1259
|
+
type: Function,
|
|
1260
|
+
required: false,
|
|
1261
|
+
default: void 0
|
|
1262
|
+
},
|
|
1263
|
+
onPointerup: {
|
|
1264
|
+
type: Function,
|
|
1265
|
+
required: false,
|
|
1266
|
+
default: void 0
|
|
1267
|
+
},
|
|
1268
|
+
onPointercancel: {
|
|
1269
|
+
type: Function,
|
|
1270
|
+
required: false,
|
|
1271
|
+
default: void 0
|
|
1272
|
+
},
|
|
1273
|
+
onPointerenter: {
|
|
1274
|
+
type: Function,
|
|
1275
|
+
required: false,
|
|
1276
|
+
default: void 0
|
|
1277
|
+
},
|
|
1278
|
+
onPointerleave: {
|
|
1279
|
+
type: Function,
|
|
1280
|
+
required: false,
|
|
1281
|
+
default: void 0
|
|
1282
|
+
},
|
|
1283
|
+
onPointerover: {
|
|
1284
|
+
type: Function,
|
|
1285
|
+
required: false,
|
|
1286
|
+
default: void 0
|
|
1287
|
+
},
|
|
1288
|
+
onPointerout: {
|
|
1289
|
+
type: Function,
|
|
1290
|
+
required: false,
|
|
1291
|
+
default: void 0
|
|
1292
|
+
},
|
|
1293
|
+
onBeforetoggle: {
|
|
1294
|
+
type: Function,
|
|
1295
|
+
required: false,
|
|
1296
|
+
default: void 0
|
|
1297
|
+
},
|
|
1298
|
+
onToggle: {
|
|
1299
|
+
type: Function,
|
|
1300
|
+
required: false,
|
|
1301
|
+
default: void 0
|
|
1302
|
+
},
|
|
1303
|
+
onWheel: {
|
|
1304
|
+
type: Function,
|
|
1305
|
+
required: false,
|
|
1306
|
+
default: void 0
|
|
1307
|
+
},
|
|
1308
|
+
onAnimationcancel: {
|
|
1309
|
+
type: Function,
|
|
1310
|
+
required: false,
|
|
1311
|
+
default: void 0
|
|
1312
|
+
},
|
|
1313
|
+
onAnimationstart: {
|
|
1314
|
+
type: Function,
|
|
1315
|
+
required: false,
|
|
1316
|
+
default: void 0
|
|
1317
|
+
},
|
|
1318
|
+
onAnimationend: {
|
|
1319
|
+
type: Function,
|
|
1320
|
+
required: false,
|
|
1321
|
+
default: void 0
|
|
1322
|
+
},
|
|
1323
|
+
onAnimationiteration: {
|
|
1324
|
+
type: Function,
|
|
1325
|
+
required: false,
|
|
1326
|
+
default: void 0
|
|
1327
|
+
},
|
|
1328
|
+
onSecuritypolicyviolation: {
|
|
1329
|
+
type: Function,
|
|
1330
|
+
required: false,
|
|
1331
|
+
default: void 0
|
|
1332
|
+
},
|
|
1333
|
+
onTransitioncancel: {
|
|
1334
|
+
type: Function,
|
|
1335
|
+
required: false,
|
|
1336
|
+
default: void 0
|
|
1337
|
+
},
|
|
1338
|
+
onTransitionend: {
|
|
1339
|
+
type: Function,
|
|
1340
|
+
required: false,
|
|
1341
|
+
default: void 0
|
|
1342
|
+
},
|
|
1343
|
+
onTransitionrun: {
|
|
1344
|
+
type: Function,
|
|
1345
|
+
required: false,
|
|
1346
|
+
default: void 0
|
|
1347
|
+
},
|
|
1348
|
+
onTransitionstart: {
|
|
1349
|
+
type: Function,
|
|
1350
|
+
required: false,
|
|
1351
|
+
default: void 0
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
name: "SingleSelector",
|
|
1355
|
+
inheritAttrs: false
|
|
1356
|
+
});
|
|
1357
|
+
var SingleSelector_default = SingleSelector;
|
|
1358
|
+
exports.default = SingleSelector_default;
|