New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@3yourmind/vue-use-tippy

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@3yourmind/vue-use-tippy - npm Package Compare versions

Comparing version 2.0.0 to 3.0.0

dist/cjs/index.cjs

43

package.json

@@ -6,4 +6,3 @@ {

"dependencies": {
"@vue/composition-api": "1.7.1",
"lodash.castarray": "^4.4.0",
"lodash.castarray": "4.x",
"tippy.js": "6.x"

@@ -13,7 +12,19 @@ },

"devDependencies": {
"@types/lodash.castarray": "^4.4.6"
"@types/lodash.castarray": "4.x"
},
"directories": {
"dist": "dist"
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist/**/!(*.tsbuildinfo)"
],
"homepage": "https://github.com/3YOURMIND/kotti/tree/master/packages/vue-use-tippy",

@@ -27,7 +38,11 @@ "keywords": [

"vue",
"composition-api"
"vue-composition-api"
],
"license": "MIT",
"main": "dist/index.js",
"main": "./dist/cjs/index.cjs",
"module": "./dist/mjs/index.js",
"name": "@3yourmind/vue-use-tippy",
"peerDependencies": {
"vue": "^2.7"
},
"publishConfig": {

@@ -41,6 +56,14 @@ "access": "public"

"scripts": {
"build": "rm -rf dist && tsc"
"build": "./scripts/build.sh",
"check:eslint": "eslint --max-warnings=0 .",
"check:prettier": "yarn --cwd ../.. run prettier --check --ignore-path=.gitignore ./packages/vue-use-tippy",
"check:publint": "publint",
"fix:eslint": "yarn run check:eslint --fix",
"fix:prettier": "yarn run check:prettier --write",
"publish-package": "yarn publish --no-git-tag-version --verbose --non-interactive --access public",
"tarball": "npm pack && mkdir -p ../../tarballs && mv *.tgz ../../tarballs/vue-use-tippy.tar.gz"
},
"version": "2.0.0",
"gitHead": "022d03d65ba3fbf0a210853843953ceaba4bb92c"
"type": "module",
"types": "./dist/mjs/index.d.ts",
"version": "3.0.0"
}

@@ -9,7 +9,7 @@ # `@3yourmind/vue-use-tippy`

import { useTippy } from '@3yourmind/vue-use-tippy'
import { computed, defineComponent, ref } from '@vue/composition-api'
import { computed, defineComponent, ref } from 'vue'
export default defineComponent({
setup() {
const contentRef = ref(null)
const contentRef = ref<Element | null>(null)

@@ -20,3 +20,3 @@ useTippy(

appendTo: () => document.body,
content: contentRef,
content: contentRef.value ?? undefined,
interactive: true,

@@ -34,6 +34,4 @@ theme: 'light-border',

Right now, `@vue/composition-api@0.6.1` is recommended.
## Options
See <https://atomiks.github.io/tippyjs/v6/all-props/> for supported options
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc