yc-design-vue 2.2.9 → 2.3.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.
Files changed (63) hide show
  1. package/dist/index.umd.js +1 -1
  2. package/dist/style.css +1 -1
  3. package/es/DatePicker/DatePicker.vue.d.ts +408 -3
  4. package/es/DatePicker/DatePicker.vue.js +29 -5
  5. package/es/DatePicker/MonthPicker.vue.d.ts +1 -1
  6. package/es/DatePicker/MonthPicker.vue.js +7 -5
  7. package/es/DatePicker/WeekPicker.vue.d.ts +1 -1
  8. package/es/DatePicker/WeekPicker.vue.js +7 -5
  9. package/es/DatePicker/YearPicker.vue.js +7 -5
  10. package/es/DatePicker/component/{PickerInput.vue.d.ts → Picker.vue.d.ts} +5 -1
  11. package/es/DatePicker/component/{PickerInput.vue.js → Picker.vue.js} +7 -3
  12. package/es/DatePicker/component/Picker.vue3.js +5 -0
  13. package/es/DatePicker/hooks/userPicker.d.ts +2 -0
  14. package/es/DatePicker/hooks/userPicker.js +18 -22
  15. package/es/DatePicker/index.css +1 -1
  16. package/es/DatePicker/index.d.ts +206 -4
  17. package/es/TimePicker/TimePicker.vue.d.ts +104 -3
  18. package/es/TimePicker/TimePicker.vue.js +22 -7
  19. package/es/TimePicker/TimePickerPanel.vue.d.ts +4 -1
  20. package/es/TimePicker/TimePickerPanel.vue.js +37 -41
  21. package/es/TimePicker/hooks/useContext.d.ts +2 -0
  22. package/es/TimePicker/hooks/useContext.js +3 -0
  23. package/es/TimePicker/index.d.ts +61 -4
  24. package/es/TimePicker/type.d.ts +1 -0
  25. package/es/Typography/TypographyBase.vue.js +2 -2
  26. package/es/_shared/icons/IconCopy.vue.js +1 -24
  27. package/es/_shared/icons/IconCopy.vue2.js +24 -1
  28. package/es/_shared/icons/IconEdit.vue.js +1 -24
  29. package/es/_shared/icons/IconEdit.vue2.js +24 -1
  30. package/es/index.d.ts +3 -3
  31. package/es/style.css +1 -1
  32. package/lib/DatePicker/DatePicker.vue.d.ts +408 -3
  33. package/lib/DatePicker/DatePicker.vue.js +1 -1
  34. package/lib/DatePicker/MonthPicker.vue.d.ts +1 -1
  35. package/lib/DatePicker/MonthPicker.vue.js +1 -1
  36. package/lib/DatePicker/WeekPicker.vue.d.ts +1 -1
  37. package/lib/DatePicker/WeekPicker.vue.js +1 -1
  38. package/lib/DatePicker/YearPicker.vue.js +1 -1
  39. package/lib/DatePicker/component/{PickerInput.vue.d.ts → Picker.vue.d.ts} +5 -1
  40. package/lib/DatePicker/component/Picker.vue.js +1 -0
  41. package/lib/DatePicker/component/{PickerInput.vue3.js → Picker.vue3.js} +1 -1
  42. package/lib/DatePicker/hooks/userPicker.d.ts +2 -0
  43. package/lib/DatePicker/hooks/userPicker.js +1 -1
  44. package/lib/DatePicker/index.css +1 -1
  45. package/lib/DatePicker/index.d.ts +206 -4
  46. package/lib/TimePicker/TimePicker.vue.d.ts +104 -3
  47. package/lib/TimePicker/TimePicker.vue.js +1 -1
  48. package/lib/TimePicker/TimePickerPanel.vue.d.ts +4 -1
  49. package/lib/TimePicker/TimePickerPanel.vue.js +1 -1
  50. package/lib/TimePicker/hooks/useContext.d.ts +2 -0
  51. package/lib/TimePicker/hooks/useContext.js +1 -1
  52. package/lib/TimePicker/index.d.ts +61 -4
  53. package/lib/TimePicker/type.d.ts +1 -0
  54. package/lib/Typography/TypographyBase.vue.js +1 -1
  55. package/lib/_shared/icons/IconCopy.vue.js +1 -1
  56. package/lib/_shared/icons/IconCopy.vue2.js +1 -1
  57. package/lib/_shared/icons/IconEdit.vue.js +1 -1
  58. package/lib/_shared/icons/IconEdit.vue2.js +1 -1
  59. package/lib/index.d.ts +3 -3
  60. package/lib/style.css +1 -1
  61. package/package.json +1 -1
  62. package/es/DatePicker/component/PickerInput.vue3.js +0 -5
  63. package/lib/DatePicker/component/PickerInput.vue.js +0 -1
package/es/index.d.ts CHANGED
@@ -683,8 +683,8 @@ declare const YcDesignVue: {
683
683
  pickerValue: import('./DatePicker').DatePickerValue;
684
684
  defaultPickerValue: import('./DatePicker').DatePickerValue;
685
685
  valueFormat: import('./DatePicker').ValueFormat;
686
- showConfirmBtn: boolean;
687
686
  abbreviation: boolean;
687
+ showConfirmBtn: boolean;
688
688
  disabledDate: import('./DatePicker').DisabledDate;
689
689
  shortcutsPosition: import('./DatePicker').ShortcutsPosition;
690
690
  shortcuts: import('./DatePicker').ShortcutType[];
@@ -729,8 +729,8 @@ declare const YcDesignVue: {
729
729
  pickerValue: import('./DatePicker').DatePickerValue;
730
730
  defaultPickerValue: import('./DatePicker').DatePickerValue;
731
731
  valueFormat: import('./DatePicker').ValueFormat;
732
- showConfirmBtn: boolean;
733
732
  abbreviation: boolean;
733
+ showConfirmBtn: boolean;
734
734
  disabledDate: import('./DatePicker').DisabledDate;
735
735
  shortcutsPosition: import('./DatePicker').ShortcutsPosition;
736
736
  shortcuts: import('./DatePicker').ShortcutType[];
@@ -783,8 +783,8 @@ declare const YcDesignVue: {
783
783
  pickerValue: import('./DatePicker').DatePickerValue;
784
784
  defaultPickerValue: import('./DatePicker').DatePickerValue;
785
785
  valueFormat: import('./DatePicker').ValueFormat;
786
- showConfirmBtn: boolean;
787
786
  abbreviation: boolean;
787
+ showConfirmBtn: boolean;
788
788
  disabledDate: import('./DatePicker').DisabledDate;
789
789
  shortcutsPosition: import('./DatePicker').ShortcutsPosition;
790
790
  shortcuts: import('./DatePicker').ShortcutType[];