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

@dreamonkey/quasar-app-extension-animate

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dreamonkey/quasar-app-extension-animate - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

2

dist/types/composables/animate.d.ts

@@ -16,3 +16,3 @@ import { Ref } from "@vue/composition-api";

declare function animateOut(animationClass: string, options?: AnimateOptions): (el: HTMLElement) => void;
declare type IntersectionHandler = (el: Element) => void;
declare type IntersectionHandler = (el: HTMLElement) => void;
declare function whenPastPercentage(percentage: number, intersectionHandler: IntersectionHandler): {

@@ -19,0 +19,0 @@ handler: (entry: IntersectionObserverEntry) => void;

@@ -6,3 +6,3 @@ declare const _default: {

methods: {
whenPastPercentage: (percentage: number, intersectionHandler: (el: Element) => void) => {
whenPastPercentage: (percentage: number, intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -13,3 +13,3 @@ cfg: {

};
whenPastEnd: (intersectionHandler: (el: Element) => void) => {
whenPastEnd: (intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -20,3 +20,3 @@ cfg: {

};
whenPastHalf: (intersectionHandler: (el: Element) => void) => {
whenPastHalf: (intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -27,3 +27,3 @@ cfg: {

};
whenPastQuarter: (intersectionHandler: (el: Element) => void) => {
whenPastQuarter: (intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -34,3 +34,3 @@ cfg: {

};
whenPastStart: (intersectionHandler: (el: Element) => void) => {
whenPastStart: (intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -41,3 +41,3 @@ cfg: {

};
whenPast: (percentageOrKeyword: number | "end" | "start" | "half" | "quarter", intersectionHandler: (el: Element) => void) => {
whenPast: (percentageOrKeyword: number | "end" | "start" | "half" | "quarter", intersectionHandler: (el: HTMLElement) => void) => {
handler: (entry: IntersectionObserverEntry) => void;

@@ -44,0 +44,0 @@ cfg: {

{
"name": "@dreamonkey/quasar-app-extension-animate",
"version": "0.0.6",
"version": "0.0.7",
"description": "Extend Quasar animation system",

@@ -5,0 +5,0 @@ "keywords": [

@@ -38,3 +38,3 @@ import { onMounted, Ref } from "@vue/composition-api";

type IntersectionHandler = (el: Element) => void;
type IntersectionHandler = (el: HTMLElement) => void;

@@ -48,3 +48,3 @@ // v-intersection helpers

handler: function (entry: IntersectionObserverEntry) {
entry.isIntersecting && intersectionHandler(entry.target);
entry.isIntersecting && intersectionHandler(entry.target as HTMLElement);
},

@@ -51,0 +51,0 @@ cfg: { threshold: percentage },

Sorry, the diff of this file is not supported yet

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