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/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']