add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

34
node_modules/rc-picker/es/index.js generated vendored Normal file
View File

@@ -0,0 +1,34 @@
/**
* What's new?
* - Common
* - [Break] Support special year format, all the year will follow the locale config.
* - Blur all of field will trigger `onChange` if validate
* - Support `preserveInvalidOnBlur` to not to clean input if invalid and remove `changeOnBlur`
* - `pickerValue` is now full controlled
* - `defaultPickerValue` will take effect on every field active with popup opening.
* - [Break] clear button return the event with `onClick`
*
* - Locale
* - Remove `dateFormat` since it's never used
* - Remove `dateTimeFormat` since it's never used
*
* - Picker
* - TimePicker support `changeOnScroll`
* - TimePicker support `millisecond`
* - Support cellMeridiemFormat for AM/PM
* - Get correct `disabledHours` when set `use12Hours`
* - Support `showWeek`
*
* - RangePicker
* - [Break] RangePicker is now not limit the range of clicked field.
* - Trigger `onCalendarChange` when type correct
* - [Break] Not order `value` if given `value` is wrong order.
* - Hover `presets` will show date in input field.
* - [Break] RangePicker go to end field, `pickerValue` will follow the start field if not controlled.
*/
import RangePicker from "./PickerInput/RangePicker";
import Picker from "./PickerInput/SinglePicker";
import PickerPanel from "./PickerPanel";
export { Picker, RangePicker, PickerPanel };
export default Picker;