Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@egjs/vue-flicking

Package Overview
Dependencies
Maintainers
8
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@egjs/vue-flicking - npm Package Compare versions

Comparing version 4.5.0 to 4.5.1

12

dist/flicking.cjs.js

@@ -7,3 +7,3 @@ /*

repository: https://github.com/naver/egjs-flicking/tree/master/packages/vue-flicking
version: 4.5.0
version: 4.5.1
*/

@@ -421,3 +421,3 @@ 'use strict';

if (node.key == null) {
node.key = "$_" + idx;
node.key = "$_".concat(idx);
}

@@ -543,3 +543,3 @@ });

if (node.key == null) {
node.key = "$_" + idx;
node.key = "$_".concat(idx);
}

@@ -574,7 +574,7 @@ });

return list[index];
}))));
})), false));
(_b = this.vanillaFlicking).removePlugins.apply(_b, __spreadArray([], __read(removed.map(function (index) {
return prevList[index];
}))));
})), false));
},

@@ -616,3 +616,3 @@ _getPanels: function (h, initialized) {

var version = "4.5.0";
var version = "4.5.1";

@@ -619,0 +619,0 @@ var install = function (Vue) {

@@ -7,3 +7,3 @@ /*

repository: https://github.com/naver/egjs-flicking/tree/master/packages/vue-flicking
version: 4.5.0
version: 4.5.1
*/

@@ -420,3 +420,3 @@ import ListDiffer from '@egjs/list-differ';

if (node.key == null) {
node.key = "$_" + idx;
node.key = "$_".concat(idx);
}

@@ -542,3 +542,3 @@ });

if (node.key == null) {
node.key = "$_" + idx;
node.key = "$_".concat(idx);
}

@@ -573,7 +573,7 @@ });

return list[index];
}))));
})), false));
(_b = this.vanillaFlicking).removePlugins.apply(_b, __spreadArray([], __read(removed.map(function (index) {
return prevList[index];
}))));
})), false));
},

@@ -615,3 +615,3 @@ _getPanels: function (h, initialized) {

var version = "4.5.0";
var version = "4.5.1";

@@ -618,0 +618,0 @@ var install = function (Vue) {

{
"name": "@egjs/vue-flicking",
"version": "4.5.0",
"version": "4.5.1",
"description": "Everyday 30 million people experience. It's reliable, flexible and extendable carousel.",

@@ -36,3 +36,3 @@ "main": "dist/flicking.cjs.js",

"dependencies": {
"@egjs/flicking": "^4.4.2",
"@egjs/flicking": "~4.5.0",
"@egjs/list-differ": "^1.0.0"

@@ -39,0 +39,0 @@ },

@@ -69,3 +69,3 @@ /*

const slots = getSlots(this);
this.slotDiffer = new ListDiffer<VNode>(slots, vnode => vnode.key!);
this.slotDiffer = new ListDiffer<VNode>(slots, vnode => (vnode.key as string));
this.pluginsDiffer = new ListDiffer<Plugin>();

@@ -178,3 +178,3 @@

: this._getSlots();
return slots.map(slot => h("Panel", { key: slot.key }, [slot]));
return slots.map(slot => h("Panel", { key: slot.key as string }, [slot]));
},

@@ -181,0 +181,0 @@ _getVirtualPanels(h: CreateElement, initialized: boolean) {

Sorry, the diff of this file is not supported yet

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