uview-plus 3.8.39 → 3.8.49
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/changelog.md +62 -0
- package/components/u-calendar/calendar.js +4 -3
- package/components/u-calendar/props.js +5 -0
- package/components/u-calendar/u-calendar.vue +14 -2
- package/components/u-calendar-strip/calendarStrip.js +36 -0
- package/components/u-calendar-strip/props.js +68 -0
- package/components/u-calendar-strip/u-calendar-strip.vue +507 -0
- package/components/u-datetime-picker/datetimePicker.js +2 -0
- package/components/u-datetime-picker/props.js +15 -5
- package/components/u-datetime-picker/u-datetime-picker.vue +117 -42
- package/components/u-guide/guide.js +16 -0
- package/components/u-guide/props.js +51 -0
- package/components/u-guide/u-guide.vue +259 -0
- package/components/u-number-box/u-number-box.vue +8 -5
- package/components/u-signature/u-signature.vue +11 -0
- package/components/u-tabbar-item/u-tabbar-item.vue +2 -2
- package/components/u-tabs/props.js +11 -6
- package/components/u-tabs/tabs.js +7 -6
- package/components/u-tabs/u-tabs.vue +145 -5
- package/components/u-tooltip/props.js +5 -0
- package/components/u-tooltip/tooltip.js +2 -1
- package/components/u-tooltip/u-tooltip.vue +26 -13
- package/libs/config/props.js +4 -0
- package/package.json +1 -1
- package/types/comps/calendar.d.ts +5 -0
- package/types/comps/calendarStrip.d.ts +116 -0
- package/types/comps/datetimePicker.d.ts +15 -5
- package/types/comps/guide.d.ts +45 -0
- package/types/comps/tabs.d.ts +5 -0
- package/types/comps.d.ts +2 -0
- package/types/index.d.ts +2 -0
package/types/comps.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ declare module 'vue' {
|
|
|
18
18
|
['up-form']: typeof import('./comps/form')['Form']
|
|
19
19
|
['up-form-item']: typeof import('./comps/formItem')['FormItem']
|
|
20
20
|
['up-calendar']: typeof import('./comps/calendar')['Calendar']
|
|
21
|
+
['up-calendar-strip']: typeof import('./comps/calendarStrip')['CalendarStrip']
|
|
21
22
|
['up-keyboard']: typeof import('./comps/keyboard')['Keyboard']
|
|
22
23
|
['up-picker']: typeof import('./comps/picker')['Picker']
|
|
23
24
|
['up-datetime-picker']: typeof import('./comps/datetimePicker')['DatetimePicker']
|
|
@@ -45,6 +46,7 @@ declare module 'vue' {
|
|
|
45
46
|
|
|
46
47
|
// 反馈组件
|
|
47
48
|
['up-tooltip']: typeof import('./comps/tooltip')['Tooltip']
|
|
49
|
+
['up-guide']: typeof import('./comps/guide')['Guide']
|
|
48
50
|
['up-action-sheet']: typeof import('./comps/actionSheet')['ActionSheet']
|
|
49
51
|
['up-alert']: typeof import('./comps/alert')['Alert']
|
|
50
52
|
['up-toast']: typeof import('./comps/toast')['Toast']
|
package/types/index.d.ts
CHANGED
|
@@ -181,5 +181,7 @@ declare type UniUploadRef = typeof import('./comps/upload')['UploadRef']
|
|
|
181
181
|
declare type UniDatetimePickerRef = typeof import('./comps/datetimePicker')['DatetimePickerRef']
|
|
182
182
|
declare type UniPickerRef = typeof import('./comps/picker')['PickerRef']
|
|
183
183
|
declare type UniCalendarRef = typeof import('./comps/calendar')['CalendarRef']
|
|
184
|
+
declare type UniCalendarStripRef = typeof import('./comps/calendarStrip')['CalendarStripRef']
|
|
184
185
|
declare type UniTextareaRef = typeof import('./comps/textarea')['TextareaRef']
|
|
185
186
|
declare type UniFormRef = typeof import('./comps/form')['FormRef']
|
|
187
|
+
declare type UniGuideRef = typeof import('./comps/guide')['GuideRef']
|