yc-design-vue 2.2.4 → 2.2.6

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 (131) hide show
  1. package/dist/index.umd.js +1 -1
  2. package/dist/style.css +1 -1
  3. package/es/Breadcrumb/BreadcrumbSeparator.vue.js +1 -1
  4. package/es/Calendar/CalendarMonth.vue.js +2 -4
  5. package/es/ColorPicker/ColorPicker.vue.d.ts +1 -1
  6. package/es/ColorPicker/index.d.ts +3 -3
  7. package/es/DatePicker/YcDatePicker.vue.d.ts +69 -1
  8. package/es/DatePicker/YcDatePicker.vue.js +287 -4
  9. package/es/DatePicker/{YcDatePicker.vue2.js → YcDatePicker.vue3.js} +1 -0
  10. package/es/DatePicker/YcMonthPicker.vue.d.ts +2 -2
  11. package/es/DatePicker/YcMonthPicker.vue.js +65 -59
  12. package/es/DatePicker/YcWeekPicker.vue.d.ts +2 -2
  13. package/es/DatePicker/YcWeekPicker.vue.js +292 -4
  14. package/es/DatePicker/YcWeekPicker.vue3.js +5 -0
  15. package/es/DatePicker/YcYearPicker.vue.d.ts +2 -2
  16. package/es/DatePicker/YcYearPicker.vue.js +69 -52
  17. package/es/DatePicker/component/PickerCell.vue.d.ts +2 -2
  18. package/es/DatePicker/component/PickerCell.vue.js +39 -5
  19. package/es/DatePicker/component/PickerCell.vue3.js +5 -0
  20. package/es/DatePicker/component/PickerHeader.vue.d.ts +40 -0
  21. package/es/DatePicker/component/PickerHeader.vue.js +83 -0
  22. package/es/DatePicker/component/PickerHeader.vue3.js +5 -0
  23. package/es/DatePicker/component/PickerInput.vue.d.ts +1 -0
  24. package/es/DatePicker/component/PickerInput.vue.js +121 -5
  25. package/es/DatePicker/component/PickerInput.vue3.js +5 -0
  26. package/es/DatePicker/component/PickerPanel.vue.d.ts +6 -1
  27. package/es/DatePicker/component/PickerPanel.vue.js +47 -6
  28. package/es/DatePicker/component/PickerWeekHeader.vue.d.ts +8 -0
  29. package/es/DatePicker/component/PickerWeekHeader.vue.js +58 -0
  30. package/es/DatePicker/component/PickerWeekHeader.vue3.js +5 -0
  31. package/es/DatePicker/hooks/userPicker.d.ts +7 -15
  32. package/es/DatePicker/hooks/userPicker.js +45 -49
  33. package/es/DatePicker/index.css +2 -2
  34. package/es/DatePicker/index.d.ts +156 -3
  35. package/es/DatePicker/index.js +5 -3
  36. package/es/DatePicker/type.d.ts +1 -0
  37. package/es/InputNumber/InputNumber.vue.d.ts +1 -1
  38. package/es/InputNumber/index.d.ts +3 -3
  39. package/es/Layout/LayoutSider.vue.d.ts +1 -1
  40. package/es/Layout/index.d.ts +3 -3
  41. package/es/Slider/Slider.vue.d.ts +1 -1
  42. package/es/Slider/index.d.ts +3 -3
  43. package/es/Statistic/Countdown.vue.d.ts +1 -1
  44. package/es/Statistic/Statistic.vue.d.ts +1 -1
  45. package/es/Statistic/index.d.ts +6 -6
  46. package/es/Transfer/TransferPanel.vue.js +1 -1
  47. package/es/Upload/UploadFileList.vue.js +1 -1
  48. package/es/Upload/UploadPictureCard.vue.js +1 -1
  49. package/es/_shared/icons/IconDelete.vue.js +24 -1
  50. package/es/_shared/icons/IconDelete.vue2.js +1 -24
  51. package/es/_shared/icons/IconDoubleLeft.vue.js +1 -24
  52. package/es/_shared/icons/IconDoubleLeft.vue2.js +24 -1
  53. package/es/_shared/icons/IconDoubleRight.vue.js +1 -24
  54. package/es/_shared/icons/IconDoubleRight.vue2.js +24 -1
  55. package/es/_shared/icons/IconSeparator.vue.js +24 -1
  56. package/es/_shared/icons/IconSeparator.vue2.js +1 -24
  57. package/es/_shared/utils/time.d.ts +20 -0
  58. package/es/_shared/utils/time.js +74 -0
  59. package/es/index.d.ts +18 -18
  60. package/es/style.css +1 -1
  61. package/lib/Breadcrumb/BreadcrumbSeparator.vue.js +1 -1
  62. package/lib/Calendar/CalendarMonth.vue.js +1 -1
  63. package/lib/ColorPicker/ColorPicker.vue.d.ts +1 -1
  64. package/lib/ColorPicker/index.d.ts +3 -3
  65. package/lib/DatePicker/YcDatePicker.vue.d.ts +69 -1
  66. package/lib/DatePicker/YcDatePicker.vue.js +1 -1
  67. package/lib/DatePicker/{YcDatePicker.vue2.js → YcDatePicker.vue3.js} +1 -1
  68. package/lib/DatePicker/YcMonthPicker.vue.d.ts +2 -2
  69. package/lib/DatePicker/YcMonthPicker.vue.js +1 -1
  70. package/lib/DatePicker/YcWeekPicker.vue.d.ts +2 -2
  71. package/lib/DatePicker/YcWeekPicker.vue.js +1 -1
  72. package/lib/DatePicker/YcWeekPicker.vue3.js +1 -0
  73. package/lib/DatePicker/YcYearPicker.vue.d.ts +2 -2
  74. package/lib/DatePicker/YcYearPicker.vue.js +1 -1
  75. package/lib/DatePicker/component/PickerCell.vue.d.ts +2 -2
  76. package/lib/DatePicker/component/PickerCell.vue.js +1 -1
  77. package/lib/DatePicker/component/PickerCell.vue3.js +1 -0
  78. package/lib/DatePicker/component/PickerHeader.vue.d.ts +40 -0
  79. package/lib/DatePicker/component/PickerHeader.vue.js +1 -0
  80. package/lib/DatePicker/component/PickerHeader.vue3.js +1 -0
  81. package/lib/DatePicker/component/PickerInput.vue.d.ts +1 -0
  82. package/lib/DatePicker/component/PickerInput.vue.js +1 -1
  83. package/lib/DatePicker/component/PickerInput.vue3.js +1 -0
  84. package/lib/DatePicker/component/PickerPanel.vue.d.ts +6 -1
  85. package/lib/DatePicker/component/PickerPanel.vue.js +1 -1
  86. package/lib/DatePicker/component/PickerWeekHeader.vue.d.ts +8 -0
  87. package/lib/DatePicker/component/PickerWeekHeader.vue.js +1 -0
  88. package/lib/DatePicker/component/PickerWeekHeader.vue3.js +1 -0
  89. package/lib/DatePicker/hooks/userPicker.d.ts +7 -15
  90. package/lib/DatePicker/hooks/userPicker.js +1 -1
  91. package/lib/DatePicker/index.css +2 -2
  92. package/lib/DatePicker/index.d.ts +156 -3
  93. package/lib/DatePicker/index.js +1 -1
  94. package/lib/DatePicker/type.d.ts +1 -0
  95. package/lib/InputNumber/InputNumber.vue.d.ts +1 -1
  96. package/lib/InputNumber/index.d.ts +3 -3
  97. package/lib/Layout/LayoutSider.vue.d.ts +1 -1
  98. package/lib/Layout/index.d.ts +3 -3
  99. package/lib/Slider/Slider.vue.d.ts +1 -1
  100. package/lib/Slider/index.d.ts +3 -3
  101. package/lib/Statistic/Countdown.vue.d.ts +1 -1
  102. package/lib/Statistic/Statistic.vue.d.ts +1 -1
  103. package/lib/Statistic/index.d.ts +6 -6
  104. package/lib/Transfer/TransferPanel.vue.js +1 -1
  105. package/lib/Upload/UploadFileList.vue.js +1 -1
  106. package/lib/Upload/UploadPictureCard.vue.js +1 -1
  107. package/lib/_shared/icons/IconDelete.vue.js +1 -1
  108. package/lib/_shared/icons/IconDelete.vue2.js +1 -1
  109. package/lib/_shared/icons/IconDoubleLeft.vue.js +1 -1
  110. package/lib/_shared/icons/IconDoubleLeft.vue2.js +1 -1
  111. package/lib/_shared/icons/IconDoubleRight.vue.js +1 -1
  112. package/lib/_shared/icons/IconDoubleRight.vue2.js +1 -1
  113. package/lib/_shared/icons/IconSeparator.vue.js +1 -1
  114. package/lib/_shared/icons/IconSeparator.vue2.js +1 -1
  115. package/lib/_shared/utils/time.d.ts +20 -0
  116. package/lib/_shared/utils/time.js +1 -1
  117. package/lib/index.d.ts +18 -18
  118. package/lib/style.css +1 -1
  119. package/package.json +1 -1
  120. package/es/Calendar/hooks/useCalendar.d.ts +0 -7
  121. package/es/Calendar/hooks/useCalendar.js +0 -36
  122. package/es/DatePicker/YcWeekPicker.vue2.js +0 -315
  123. package/es/DatePicker/component/PickerCell.vue2.js +0 -41
  124. package/es/DatePicker/component/PickerInput.vue2.js +0 -121
  125. package/es/_virtual/_plugin-vue_export-helper.js +0 -10
  126. package/lib/Calendar/hooks/useCalendar.d.ts +0 -7
  127. package/lib/Calendar/hooks/useCalendar.js +0 -1
  128. package/lib/DatePicker/YcWeekPicker.vue2.js +0 -1
  129. package/lib/DatePicker/component/PickerCell.vue2.js +0 -1
  130. package/lib/DatePicker/component/PickerInput.vue2.js +0 -1
  131. package/lib/_virtual/_plugin-vue_export-helper.js +0 -1
@@ -11,18 +11,171 @@ export type MonthPickerInstance = InstanceType<typeof _MonthPicker>;
11
11
  export type WeekPickerInstance = InstanceType<typeof _WeekPicker>;
12
12
  export * from './type';
13
13
  declare const DatePicker: {
14
- new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
14
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./type').DatePickerProps> & Readonly<{
15
+ onChange?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
16
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
17
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
18
+ onClear?: (() => any) | undefined;
19
+ onSelect?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
20
+ "onUpdate:modelValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
21
+ "onUpdate:pickerValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
22
+ onOk?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
23
+ "onPicker-value-change"?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
24
+ "onSelect-shortcut"?: ((shortcut: import('./type').ShortcutType) => any) | undefined;
25
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
26
+ change: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
27
+ "update:popupVisible": (value: boolean) => any;
28
+ "popup-visible-change": (visible: boolean) => any;
29
+ clear: () => any;
30
+ select: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
31
+ "update:modelValue": (value: import('./type').DatePickerValue) => any;
32
+ "update:pickerValue": (value: import('./type').DatePickerValue) => any;
33
+ ok: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
34
+ "picker-value-change": (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
35
+ "select-shortcut": (shortcut: import('./type').ShortcutType) => any;
36
+ }, import('vue').PublicProps, {
37
+ error: boolean;
38
+ size: import('..').Size;
39
+ popupVisible: boolean;
40
+ defaultPopupVisible: boolean;
41
+ disabled: boolean;
42
+ position: import('./type').DatePickerPosition;
43
+ unmountOnClose: boolean;
44
+ popupContainer: import('..').PopupContainer;
45
+ placeholder: string;
46
+ locale: Record<string, any>;
47
+ modelValue: import('./type').DatePickerValue;
48
+ defaultValue: import('./type').DatePickerValue;
49
+ allowClear: boolean;
50
+ readonly: boolean;
51
+ triggerProps: import('..').TriggerProps;
52
+ format: string;
53
+ dayStartOfWeek: import('./type').DayStartOfWeek;
54
+ showTime: boolean;
55
+ timePickerProps: import('..').TimePickerProps;
56
+ showNowBtn: boolean;
57
+ pickerValue: import('./type').DatePickerValue;
58
+ defaultPickerValue: import('./type').DatePickerValue;
59
+ valueFormat: import('./type').ValueFormat;
60
+ showConfirmBtn: boolean;
61
+ abbreviation: boolean;
62
+ disabledDate: import('./type').DisabledDate;
63
+ shortcutsPosition: import('./type').ShortcutsPosition;
64
+ shortcuts: import('./type').ShortcutType[];
65
+ previewShortcut: boolean;
66
+ disabledInput: boolean;
67
+ hideTrigger: boolean;
68
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
15
69
  P: {};
16
70
  B: {};
17
71
  D: {};
18
72
  C: {};
19
73
  M: {};
20
74
  Defaults: {};
21
- }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
75
+ }, Readonly<import('./type').DatePickerProps> & Readonly<{
76
+ onChange?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
77
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
78
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
79
+ onClear?: (() => any) | undefined;
80
+ onSelect?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
81
+ "onUpdate:modelValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
82
+ "onUpdate:pickerValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
83
+ onOk?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
84
+ "onPicker-value-change"?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
85
+ "onSelect-shortcut"?: ((shortcut: import('./type').ShortcutType) => any) | undefined;
86
+ }>, {}, {}, {}, {}, {
87
+ error: boolean;
88
+ size: import('..').Size;
89
+ popupVisible: boolean;
90
+ defaultPopupVisible: boolean;
91
+ disabled: boolean;
92
+ position: import('./type').DatePickerPosition;
93
+ unmountOnClose: boolean;
94
+ popupContainer: import('..').PopupContainer;
95
+ placeholder: string;
96
+ locale: Record<string, any>;
97
+ modelValue: import('./type').DatePickerValue;
98
+ defaultValue: import('./type').DatePickerValue;
99
+ allowClear: boolean;
100
+ readonly: boolean;
101
+ triggerProps: import('..').TriggerProps;
102
+ format: string;
103
+ dayStartOfWeek: import('./type').DayStartOfWeek;
104
+ showTime: boolean;
105
+ timePickerProps: import('..').TimePickerProps;
106
+ showNowBtn: boolean;
107
+ pickerValue: import('./type').DatePickerValue;
108
+ defaultPickerValue: import('./type').DatePickerValue;
109
+ valueFormat: import('./type').ValueFormat;
110
+ showConfirmBtn: boolean;
111
+ abbreviation: boolean;
112
+ disabledDate: import('./type').DisabledDate;
113
+ shortcutsPosition: import('./type').ShortcutsPosition;
114
+ shortcuts: import('./type').ShortcutType[];
115
+ previewShortcut: boolean;
116
+ disabledInput: boolean;
117
+ hideTrigger: boolean;
118
+ }>;
22
119
  __isFragment?: never;
23
120
  __isTeleport?: never;
24
121
  __isSuspense?: never;
25
- } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
122
+ } & import('vue').ComponentOptionsBase<Readonly<import('./type').DatePickerProps> & Readonly<{
123
+ onChange?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
124
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
125
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
126
+ onClear?: (() => any) | undefined;
127
+ onSelect?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
128
+ "onUpdate:modelValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
129
+ "onUpdate:pickerValue"?: ((value: import('./type').DatePickerValue) => any) | undefined;
130
+ onOk?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
131
+ "onPicker-value-change"?: ((value: import('./type').DatePickerValue, date: Date, dateString: string) => any) | undefined;
132
+ "onSelect-shortcut"?: ((shortcut: import('./type').ShortcutType) => any) | undefined;
133
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
134
+ change: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
135
+ "update:popupVisible": (value: boolean) => any;
136
+ "popup-visible-change": (visible: boolean) => any;
137
+ clear: () => any;
138
+ select: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
139
+ "update:modelValue": (value: import('./type').DatePickerValue) => any;
140
+ "update:pickerValue": (value: import('./type').DatePickerValue) => any;
141
+ ok: (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
142
+ "picker-value-change": (value: import('./type').DatePickerValue, date: Date, dateString: string) => any;
143
+ "select-shortcut": (shortcut: import('./type').ShortcutType) => any;
144
+ }, string, {
145
+ error: boolean;
146
+ size: import('..').Size;
147
+ popupVisible: boolean;
148
+ defaultPopupVisible: boolean;
149
+ disabled: boolean;
150
+ position: import('./type').DatePickerPosition;
151
+ unmountOnClose: boolean;
152
+ popupContainer: import('..').PopupContainer;
153
+ placeholder: string;
154
+ locale: Record<string, any>;
155
+ modelValue: import('./type').DatePickerValue;
156
+ defaultValue: import('./type').DatePickerValue;
157
+ allowClear: boolean;
158
+ readonly: boolean;
159
+ triggerProps: import('..').TriggerProps;
160
+ format: string;
161
+ dayStartOfWeek: import('./type').DayStartOfWeek;
162
+ showTime: boolean;
163
+ timePickerProps: import('..').TimePickerProps;
164
+ showNowBtn: boolean;
165
+ pickerValue: import('./type').DatePickerValue;
166
+ defaultPickerValue: import('./type').DatePickerValue;
167
+ valueFormat: import('./type').ValueFormat;
168
+ showConfirmBtn: boolean;
169
+ abbreviation: boolean;
170
+ disabledDate: import('./type').DisabledDate;
171
+ shortcutsPosition: import('./type').ShortcutsPosition;
172
+ shortcuts: import('./type').ShortcutType[];
173
+ previewShortcut: boolean;
174
+ disabledInput: boolean;
175
+ hideTrigger: boolean;
176
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
177
+ $slots: any;
178
+ }) & {
26
179
  install: (app: App) => void;
27
180
  };
28
181
  export { _RangePicker as RangePicker, _YearPicker as YearPicker, _MonthPicker as MonthPicker, _WeekPicker as WeekPicker, };
@@ -1,23 +1,25 @@
1
1
  import _sfc_main from "./YcDatePicker.vue.js";
2
+ /* empty css */
2
3
  import _sfc_main$1 from "./PickerRange.vue.js";
3
4
  import _sfc_main$2 from "./YcYearPicker.vue.js";
4
5
  /* empty css */
5
6
  import _sfc_main$3 from "./YcMonthPicker.vue.js";
6
7
  /* empty css */
7
- import _WeekPicker from "./YcWeekPicker.vue.js";
8
+ import _sfc_main$4 from "./YcWeekPicker.vue.js";
9
+ /* empty css */
8
10
  const DatePicker = Object.assign(_sfc_main, {
9
11
  install: (app) => {
10
12
  app.component("Yc" + _sfc_main.name, _sfc_main);
11
13
  app.component("Yc" + _sfc_main$1.name, _sfc_main$1);
12
14
  app.component("Yc" + _sfc_main$2.name, _sfc_main$2);
13
15
  app.component("Yc" + _sfc_main$3.name, _sfc_main$3);
14
- app.component("Yc" + _WeekPicker.name, _WeekPicker);
16
+ app.component("Yc" + _sfc_main$4.name, _sfc_main$4);
15
17
  }
16
18
  });
17
19
  export {
18
20
  _sfc_main$3 as MonthPicker,
19
21
  _sfc_main$1 as RangePicker,
20
- _WeekPicker as WeekPicker,
22
+ _sfc_main$4 as WeekPicker,
21
23
  _sfc_main$2 as YearPicker,
22
24
  DatePicker as default
23
25
  };
@@ -52,6 +52,7 @@ export interface BasePickerSlots {
52
52
  date: Date;
53
53
  }) => VNode[];
54
54
  extra?: () => VNode[];
55
+ default?: () => VNode[];
55
56
  }
56
57
  export interface YearPickerProps extends BasePickerProps {
57
58
  modelValue?: DatePickerValue;
@@ -175,9 +175,9 @@ declare const __VLS_component: import('vue').DefineComponent<InputNumberProps, {
175
175
  readonly: boolean;
176
176
  inputAttrs: import('..').RecordType;
177
177
  max: number;
178
+ step: number;
178
179
  min: number;
179
180
  precision: number;
180
- step: number;
181
181
  hideButton: boolean;
182
182
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
183
183
  inputRef: ({
@@ -36,9 +36,9 @@ declare const InputNumber: {
36
36
  readonly: boolean;
37
37
  inputAttrs: import('..').RecordType;
38
38
  max: number;
39
+ step: number;
39
40
  min: number;
40
41
  precision: number;
41
- step: number;
42
42
  hideButton: boolean;
43
43
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
44
44
  inputRef: ({
@@ -207,9 +207,9 @@ declare const InputNumber: {
207
207
  readonly: boolean;
208
208
  inputAttrs: import('..').RecordType;
209
209
  max: number;
210
+ step: number;
210
211
  min: number;
211
212
  precision: number;
212
- step: number;
213
213
  hideButton: boolean;
214
214
  }>;
215
215
  __isFragment?: never;
@@ -248,9 +248,9 @@ declare const InputNumber: {
248
248
  readonly: boolean;
249
249
  inputAttrs: import('..').RecordType;
250
250
  max: number;
251
+ step: number;
251
252
  min: number;
252
253
  precision: number;
253
- step: number;
254
254
  hideButton: boolean;
255
255
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
256
256
  $slots: any;
@@ -16,6 +16,7 @@ declare const __VLS_component: import('vue').DefineComponent<LayoutSiderProps, {
16
16
  onBreakpoint?: ((collapsed: boolean) => any) | undefined;
17
17
  }>, {
18
18
  width: number;
19
+ hideTrigger: boolean;
19
20
  breakpoint: import('..').BreakpointName;
20
21
  collapsed: boolean;
21
22
  defaultCollapsed: boolean;
@@ -23,7 +24,6 @@ declare const __VLS_component: import('vue').DefineComponent<LayoutSiderProps, {
23
24
  collapsible: boolean;
24
25
  collapsedWidth: number;
25
26
  reverseArrow: boolean;
26
- hideTrigger: boolean;
27
27
  resizeDirections: import('..').Position[];
28
28
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
29
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -87,6 +87,7 @@ declare const Layout: {
87
87
  breakpoint: (collapsed: boolean) => any;
88
88
  }, import('vue').PublicProps, {
89
89
  width: number;
90
+ hideTrigger: boolean;
90
91
  breakpoint: import('..').BreakpointName;
91
92
  collapsed: boolean;
92
93
  defaultCollapsed: boolean;
@@ -94,7 +95,6 @@ declare const Layout: {
94
95
  collapsible: boolean;
95
96
  collapsedWidth: number;
96
97
  reverseArrow: boolean;
97
- hideTrigger: boolean;
98
98
  resizeDirections: import('..').Position[];
99
99
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
100
100
  P: {};
@@ -109,6 +109,7 @@ declare const Layout: {
109
109
  onBreakpoint?: ((collapsed: boolean) => any) | undefined;
110
110
  }>, {}, {}, {}, {}, {
111
111
  width: number;
112
+ hideTrigger: boolean;
112
113
  breakpoint: import('..').BreakpointName;
113
114
  collapsed: boolean;
114
115
  defaultCollapsed: boolean;
@@ -116,7 +117,6 @@ declare const Layout: {
116
117
  collapsible: boolean;
117
118
  collapsedWidth: number;
118
119
  reverseArrow: boolean;
119
- hideTrigger: boolean;
120
120
  resizeDirections: import('..').Position[];
121
121
  }>;
122
122
  __isFragment?: never;
@@ -132,6 +132,7 @@ declare const Layout: {
132
132
  breakpoint: (collapsed: boolean) => any;
133
133
  }, string, {
134
134
  width: number;
135
+ hideTrigger: boolean;
135
136
  breakpoint: import('..').BreakpointName;
136
137
  collapsed: boolean;
137
138
  defaultCollapsed: boolean;
@@ -139,7 +140,6 @@ declare const Layout: {
139
140
  collapsible: boolean;
140
141
  collapsedWidth: number;
141
142
  reverseArrow: boolean;
142
- hideTrigger: boolean;
143
143
  resizeDirections: import('..').Position[];
144
144
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
145
145
  $slots: Readonly<import('./type').LayoutSiderSlots> & import('./type').LayoutSiderSlots;
@@ -13,8 +13,8 @@ declare const _default: import('vue').DefineComponent<SliderProps, {}, {}, {}, {
13
13
  showInput: boolean;
14
14
  max: number;
15
15
  direction: import('..').Direction;
16
- min: number;
17
16
  step: number;
17
+ min: number;
18
18
  formatTooltip: import('..').Format<number>;
19
19
  showTooltip: boolean;
20
20
  marks: Record<number, string>;
@@ -17,8 +17,8 @@ declare const Slider: {
17
17
  showInput: boolean;
18
18
  max: number;
19
19
  direction: import('..').Direction;
20
- min: number;
21
20
  step: number;
21
+ min: number;
22
22
  formatTooltip: import('..').Format<number>;
23
23
  showTooltip: boolean;
24
24
  marks: Record<number, string>;
@@ -43,8 +43,8 @@ declare const Slider: {
43
43
  showInput: boolean;
44
44
  max: number;
45
45
  direction: import('..').Direction;
46
- min: number;
47
46
  step: number;
47
+ min: number;
48
48
  formatTooltip: import('..').Format<number>;
49
49
  showTooltip: boolean;
50
50
  marks: Record<number, string>;
@@ -67,8 +67,8 @@ declare const Slider: {
67
67
  showInput: boolean;
68
68
  max: number;
69
69
  direction: import('..').Direction;
70
- min: number;
71
70
  step: number;
71
+ min: number;
72
72
  formatTooltip: import('..').Format<number>;
73
73
  showTooltip: boolean;
74
74
  marks: Record<number, string>;
@@ -14,8 +14,8 @@ declare const __VLS_component: import('vue').DefineComponent<CountdownProps, {},
14
14
  value: number;
15
15
  start: boolean;
16
16
  title: string;
17
- easeing: string;
18
17
  format: string;
18
+ easeing: string;
19
19
  valueStyle: import('vue').CSSProperties;
20
20
  now: number;
21
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -20,9 +20,9 @@ declare const __VLS_component: import('vue').DefineComponent<StatisticProps, {},
20
20
  title: string;
21
21
  animation: boolean;
22
22
  extra: string;
23
+ format: string;
23
24
  animationDuration: number;
24
25
  easeing: string;
25
- format: string;
26
26
  precision: number;
27
27
  valueStyle: import('vue').CSSProperties;
28
28
  showGroupSeparator: boolean;
@@ -17,9 +17,9 @@ declare const Statistic: {
17
17
  title: string;
18
18
  animation: boolean;
19
19
  extra: string;
20
+ format: string;
20
21
  animationDuration: number;
21
22
  easeing: string;
22
- format: string;
23
23
  precision: number;
24
24
  valueStyle: import('vue').CSSProperties;
25
25
  showGroupSeparator: boolean;
@@ -44,9 +44,9 @@ declare const Statistic: {
44
44
  title: string;
45
45
  animation: boolean;
46
46
  extra: string;
47
+ format: string;
47
48
  animationDuration: number;
48
49
  easeing: string;
49
- format: string;
50
50
  precision: number;
51
51
  valueStyle: import('vue').CSSProperties;
52
52
  showGroupSeparator: boolean;
@@ -68,9 +68,9 @@ declare const Statistic: {
68
68
  title: string;
69
69
  animation: boolean;
70
70
  extra: string;
71
+ format: string;
71
72
  animationDuration: number;
72
73
  easeing: string;
73
- format: string;
74
74
  precision: number;
75
75
  valueStyle: import('vue').CSSProperties;
76
76
  showGroupSeparator: boolean;
@@ -88,8 +88,8 @@ declare const Statistic: {
88
88
  value: number;
89
89
  start: boolean;
90
90
  title: string;
91
- easeing: string;
92
91
  format: string;
92
+ easeing: string;
93
93
  valueStyle: import('vue').CSSProperties;
94
94
  now: number;
95
95
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -105,8 +105,8 @@ declare const Statistic: {
105
105
  value: number;
106
106
  start: boolean;
107
107
  title: string;
108
- easeing: string;
109
108
  format: string;
109
+ easeing: string;
110
110
  valueStyle: import('vue').CSSProperties;
111
111
  now: number;
112
112
  }>;
@@ -121,8 +121,8 @@ declare const Statistic: {
121
121
  value: number;
122
122
  start: boolean;
123
123
  title: string;
124
- easeing: string;
125
124
  format: string;
125
+ easeing: string;
126
126
  valueStyle: import('vue').CSSProperties;
127
127
  now: number;
128
128
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -10,7 +10,7 @@ import "../_shared/utils/time.js";
10
10
  /* empty css */
11
11
  /* empty css */
12
12
  import _sfc_main$4 from "../_shared/icons/IconClose.vue.js";
13
- import _sfc_main$2 from "../_shared/icons/IconDelete.vue2.js";
13
+ import _sfc_main$2 from "../_shared/icons/IconDelete.vue.js";
14
14
  import _sfc_main$3 from "../_shared/icons/IconSearch.vue.js";
15
15
  import useTransferContext from "./hooks/useContext.js";
16
16
  import Checkbox from "../Checkbox/index.js";
@@ -10,7 +10,7 @@ import "../_shared/utils/locale.js";
10
10
  import "../_shared/utils/time.js";
11
11
  /* empty css */
12
12
  /* empty css */
13
- import _sfc_main$3 from "../_shared/icons/IconDelete.vue2.js";
13
+ import _sfc_main$3 from "../_shared/icons/IconDelete.vue.js";
14
14
  import _sfc_main$2 from "../_shared/icons/IconFile.vue2.js";
15
15
  const _hoisted_1 = { class: "yc-upload-list-item-content" };
16
16
  const _hoisted_2 = {
@@ -9,7 +9,7 @@ import "../_shared/utils/time.js";
9
9
  /* empty css */
10
10
  /* empty css */
11
11
  /* empty css */
12
- import _sfc_main$3 from "../_shared/icons/IconDelete.vue2.js";
12
+ import _sfc_main$3 from "../_shared/icons/IconDelete.vue.js";
13
13
  import _sfc_main$4 from "../_shared/icons/IconEyeClose.vue.js";
14
14
  import _sfc_main$2 from "../_shared/icons/IconPlus.vue.js";
15
15
  import "../Image/index.js";
@@ -1,4 +1,27 @@
1
- import _sfc_main from "./IconDelete.vue2.js";
1
+ import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
+ import "../../node_modules/b-tween/dist/b-tween.es.js";
3
+ import "../../node_modules/dayjs/dayjs.min.js";
4
+ import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
+ import "../utils/dom.js";
6
+ import "../utils/locale.js";
7
+ import "../utils/time.js";
8
+ /* empty css */
9
+ /* empty css */
10
+ import _sfc_main$1 from "../components/Icon/index.vue3.js";
11
+ /* empty css */
12
+ const _sfc_main = /* @__PURE__ */ defineComponent({
13
+ __name: "IconDelete",
14
+ setup(__props) {
15
+ return (_ctx, _cache) => {
16
+ return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
17
+ default: withCtx(() => [..._cache[0] || (_cache[0] = [
18
+ createElementVNode("path", { d: "M5 11h5.5m0 0v29a1 1 0 0 0 1 1h25a1 1 0 0 0 1-1V11m-27 0H16m21.5 0H43m-5.5 0H32m-16 0V7h16v4m-16 0h16M20 18v15m8-15v15" }, null, -1)
19
+ ])]),
20
+ _: 1
21
+ }, 16);
22
+ };
23
+ }
24
+ });
2
25
  export {
3
26
  _sfc_main as default
4
27
  };
@@ -1,27 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../utils/dom.js";
6
- import "../utils/locale.js";
7
- import "../utils/time.js";
8
- /* empty css */
9
- /* empty css */
10
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
11
- /* empty css */
12
- const _sfc_main = /* @__PURE__ */ defineComponent({
13
- __name: "IconDelete",
14
- setup(__props) {
15
- return (_ctx, _cache) => {
16
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
17
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
18
- createElementVNode("path", { d: "M5 11h5.5m0 0v29a1 1 0 0 0 1 1h25a1 1 0 0 0 1-1V11m-27 0H16m21.5 0H43m-5.5 0H32m-16 0V7h16v4m-16 0h16M20 18v15m8-15v15" }, null, -1)
19
- ])]),
20
- _: 1
21
- }, 16);
22
- };
23
- }
24
- });
1
+ import _sfc_main from "./IconDelete.vue.js";
25
2
  export {
26
3
  _sfc_main as default
27
4
  };
@@ -1,27 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../utils/dom.js";
6
- import "../utils/locale.js";
7
- import "../utils/time.js";
8
- /* empty css */
9
- /* empty css */
10
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
11
- /* empty css */
12
- const _sfc_main = /* @__PURE__ */ defineComponent({
13
- __name: "IconDoubleLeft",
14
- setup(__props) {
15
- return (_ctx, _cache) => {
16
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
17
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
18
- createElementVNode("path", { d: "M36.857 9.9 22.715 24.042l14.142 14.142M25.544 9.9 11.402 24.042l14.142 14.142" }, null, -1)
19
- ])]),
20
- _: 1
21
- }, 16);
22
- };
23
- }
24
- });
1
+ import _sfc_main from "./IconDoubleLeft.vue2.js";
25
2
  export {
26
3
  _sfc_main as default
27
4
  };
@@ -1,4 +1,27 @@
1
- import _sfc_main from "./IconDoubleLeft.vue.js";
1
+ import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
+ import "../../node_modules/b-tween/dist/b-tween.es.js";
3
+ import "../../node_modules/dayjs/dayjs.min.js";
4
+ import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
+ import "../utils/dom.js";
6
+ import "../utils/locale.js";
7
+ import "../utils/time.js";
8
+ /* empty css */
9
+ /* empty css */
10
+ import _sfc_main$1 from "../components/Icon/index.vue3.js";
11
+ /* empty css */
12
+ const _sfc_main = /* @__PURE__ */ defineComponent({
13
+ __name: "IconDoubleLeft",
14
+ setup(__props) {
15
+ return (_ctx, _cache) => {
16
+ return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
17
+ default: withCtx(() => [..._cache[0] || (_cache[0] = [
18
+ createElementVNode("path", { d: "M36.857 9.9 22.715 24.042l14.142 14.142M25.544 9.9 11.402 24.042l14.142 14.142" }, null, -1)
19
+ ])]),
20
+ _: 1
21
+ }, 16);
22
+ };
23
+ }
24
+ });
2
25
  export {
3
26
  _sfc_main as default
4
27
  };
@@ -1,27 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../utils/dom.js";
6
- import "../utils/locale.js";
7
- import "../utils/time.js";
8
- /* empty css */
9
- /* empty css */
10
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
11
- /* empty css */
12
- const _sfc_main = /* @__PURE__ */ defineComponent({
13
- __name: "IconDoubleRight",
14
- setup(__props) {
15
- return (_ctx, _cache) => {
16
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
17
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
18
- createElementVNode("path", { d: "m11.143 38.1 14.142-14.142L11.143 9.816M22.456 38.1l14.142-14.142L22.456 9.816" }, null, -1)
19
- ])]),
20
- _: 1
21
- }, 16);
22
- };
23
- }
24
- });
1
+ import _sfc_main from "./IconDoubleRight.vue2.js";
25
2
  export {
26
3
  _sfc_main as default
27
4
  };