hy-app 0.6.5 → 0.6.7

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.
@@ -42,4 +42,6 @@ export interface ICalendarEmits {
42
42
  (e: 'confirm', selected: string[]): void
43
43
  /** 日历关闭时触发 */
44
44
  (e: 'close'): void
45
+ /** 触发关闭属性 */
46
+ (e: 'update:show', value: boolean): void
45
47
  }
@@ -12,7 +12,7 @@ const cellItemProps = {
12
12
  default: false
13
13
  },
14
14
  /** 右侧的内容 */
15
- value: String,
15
+ value: [String, Number],
16
16
  /** 图标,接收icon对象 */
17
17
  icon: {
18
18
  type: Object as PropType<HyIconProps>