@lrnwebcomponents/simple-tooltip
Advanced tools
Comparing version 8.0.0 to 8.0.1
@@ -19,3 +19,3 @@ { | ||
}, | ||
"version": "8.0.0", | ||
"version": "8.0.1", | ||
"description": "a simple tooltip forked from paper-tooltip with the same api", | ||
@@ -36,19 +36,20 @@ "repository": { | ||
"lighthouse": "gulp lighthouse --gulpfile=gulpfile.cjs", | ||
"test:watch": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium firefox --watch", | ||
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium firefox" | ||
"test:watch": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium --watch", | ||
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --config=../../web-test-runner.config.mjs --playwright --browsers chromium" | ||
}, | ||
"author": { | ||
"name": "btopro" | ||
"name": "haxtheweb", | ||
"url": "https://hax.psu.edu/" | ||
}, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"lit": "^3.1.0" | ||
"lit": "^3.1.2" | ||
}, | ||
"devDependencies": { | ||
"@lrnwebcomponents/deduping-fix": "^8.0.0", | ||
"@lrnwebcomponents/simple-icon": "^8.0.0", | ||
"@open-wc/testing": "3.2.0", | ||
"@web/dev-server": "0.3.1", | ||
"@lrnwebcomponents/deduping-fix": "^8.0.1", | ||
"@lrnwebcomponents/simple-icon": "^8.0.1", | ||
"@open-wc/testing": "4.0.0", | ||
"@web/dev-server": "0.4.2", | ||
"@webcomponents/webcomponentsjs": "^2.8.0", | ||
"concurrently": "8.2.0", | ||
"concurrently": "8.2.2", | ||
"wct-browser-legacy": "1.0.2" | ||
@@ -64,3 +65,3 @@ }, | ||
], | ||
"gitHead": "2791492ff7ab40c7d4c827c4b305e33c0a971230" | ||
"gitHead": "246242dfc335bb0f3baa59f801241be9d3b69180" | ||
} |
@@ -198,2 +198,4 @@ /** | ||
left: -10000px; | ||
inset-inline-start: -10000px; | ||
inset-inline-end: initial; | ||
top: auto; | ||
@@ -307,3 +309,3 @@ width: 1px; | ||
"webkitAnimationEnd", | ||
this._onAnimationEnd.bind(this) | ||
this._onAnimationEnd.bind(this), | ||
); | ||
@@ -576,3 +578,3 @@ this.addEventListener("mouseenter", this.hide.bind(this)); | ||
"--simple-tooltip-delay-in", | ||
timingDelay + "ms" | ||
timingDelay + "ms", | ||
); | ||
@@ -582,3 +584,3 @@ } else if (type === "exit") { | ||
"--simple-tooltip-delay-out", | ||
timingDelay + "ms" | ||
timingDelay + "ms", | ||
); | ||
@@ -629,3 +631,3 @@ } | ||
"--simple-tooltip-delay-in", | ||
newValue + "ms" | ||
newValue + "ms", | ||
); | ||
@@ -632,0 +634,0 @@ } |
@@ -198,2 +198,4 @@ /** | ||
left: -10000px; | ||
inset-inline-start: -10000px; | ||
inset-inline-end: initial; | ||
top: auto; | ||
@@ -307,3 +309,3 @@ width: 1px; | ||
"webkitAnimationEnd", | ||
this._onAnimationEnd.bind(this) | ||
this._onAnimationEnd.bind(this), | ||
); | ||
@@ -576,3 +578,3 @@ this.addEventListener("mouseenter", this.hide.bind(this)); | ||
"--simple-tooltip-delay-in", | ||
timingDelay + "ms" | ||
timingDelay + "ms", | ||
); | ||
@@ -582,3 +584,3 @@ } else if (type === "exit") { | ||
"--simple-tooltip-delay-out", | ||
timingDelay + "ms" | ||
timingDelay + "ms", | ||
); | ||
@@ -629,3 +631,3 @@ } | ||
"--simple-tooltip-delay-in", | ||
newValue + "ms" | ||
newValue + "ms", | ||
); | ||
@@ -632,0 +634,0 @@ } |
@@ -8,5 +8,5 @@ import { fixture, expect, html } from "@open-wc/testing"; | ||
beforeEach(async () => { | ||
element = await fixture( | ||
html` <simple-tooltip title="test-title"></simple-tooltip> ` | ||
); | ||
element = await fixture(html` | ||
<simple-tooltip title="test-title"></simple-tooltip> | ||
`); | ||
}); | ||
@@ -13,0 +13,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71988
1501
Updatedlit@^3.1.2