vue-tippy 6.0.0-alpha.60 → 6.0.0-alpha.63

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.60
2
+ * vue-tippy v6.0.0-alpha.63
3
3
  * (c) 2022
4
4
  * @license MIT
5
5
  */
@@ -4526,9 +4526,9 @@ const TippyComponent = vue.defineComponent({
4526
4526
  delay: { default: () => tippy.defaultProps['delay'] },
4527
4527
  duration: { default: () => tippy.defaultProps['duration'] },
4528
4528
  getReferenceClientRect: { default: () => tippy.defaultProps['getReferenceClientRect'] },
4529
- hideOnClick: { default: () => tippy.defaultProps['hideOnClick'] },
4530
- ignoreAttributes: { default: () => tippy.defaultProps['ignoreAttributes'] },
4531
- interactive: { default: () => tippy.defaultProps['interactive'] },
4529
+ hideOnClick: { type: [Boolean, String], default: () => tippy.defaultProps['hideOnClick'] },
4530
+ ignoreAttributes: { type: Boolean, default: () => tippy.defaultProps['ignoreAttributes'] },
4531
+ interactive: { type: Boolean, default: () => tippy.defaultProps['interactive'] },
4532
4532
  interactiveBorder: { default: () => tippy.defaultProps['interactiveBorder'] },
4533
4533
  interactiveDebounce: { default: () => tippy.defaultProps['interactiveDebounce'] },
4534
4534
  moveTransition: { default: () => tippy.defaultProps['moveTransition'] },
@@ -4549,15 +4549,15 @@ const TippyComponent = vue.defineComponent({
4549
4549
  plugins: { default: () => tippy.defaultProps['plugins'] },
4550
4550
  popperOptions: { default: () => tippy.defaultProps['popperOptions'] },
4551
4551
  render: { default: () => tippy.defaultProps['render'] },
4552
- showOnCreate: { default: () => tippy.defaultProps['showOnCreate'] },
4553
- touch: { default: () => tippy.defaultProps['touch'] },
4552
+ showOnCreate: { type: Boolean, default: () => tippy.defaultProps['showOnCreate'] },
4553
+ touch: { type: [Boolean, String, Array], default: () => tippy.defaultProps['touch'] },
4554
4554
  trigger: { default: () => tippy.defaultProps['trigger'] },
4555
4555
  triggerTarget: { default: () => tippy.defaultProps['triggerTarget'] },
4556
- animateFill: { default: () => tippy.defaultProps['animateFill'] },
4557
- followCursor: { default: () => tippy.defaultProps['followCursor'] },
4558
- inlinePositioning: { default: () => tippy.defaultProps['inlinePositioning'] },
4559
- sticky: { default: () => tippy.defaultProps['sticky'] },
4560
- allowHTML: { default: () => tippy.defaultProps['allowHTML'] },
4556
+ animateFill: { type: Boolean, default: () => tippy.defaultProps['animateFill'] },
4557
+ followCursor: { type: [Boolean, String], default: () => tippy.defaultProps['followCursor'] },
4558
+ inlinePositioning: { type: Boolean, default: () => tippy.defaultProps['inlinePositioning'] },
4559
+ sticky: { type: [Boolean, String], default: () => tippy.defaultProps['sticky'] },
4560
+ allowHTML: { type: Boolean, default: () => tippy.defaultProps['allowHTML'] },
4561
4561
  animation: { default: () => tippy.defaultProps['animation'] },
4562
4562
  arrow: { default: () => tippy.defaultProps['arrow'] },
4563
4563
  content: { default: () => tippy.defaultProps['content'] },