@canvas3/nuxt 0.1.16 → 0.1.18

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.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "canvas-nuxt-layout",
3
3
  "configKey": "canvas3Layout",
4
- "version": "0.1.16",
4
+ "version": "0.1.18",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.0"
@@ -200,7 +200,6 @@ class Canvas3Class {
200
200
  addOnScrollActivateElement(binding) {
201
201
  const newBinding = generateBindingLogic(binding);
202
202
  this.scroll?.DOM.onScrollActivateElements.push(newBinding);
203
- console.log("this.scroll?.DOM.onScrollActivateElements", this.scroll?.DOM.onScrollActivateElements.length);
204
203
  }
205
204
  updateOnScrollActiveElement(updatedBinding) {
206
205
  if (!this.scroll) return;
@@ -256,7 +255,6 @@ class Canvas3Class {
256
255
  addAnimationToRender(callBackName, callBackFunction) {
257
256
  if (this.animations.has(callBackName)) return;
258
257
  this.animations.set(callBackName, callBackFunction);
259
- console.log("addAnimationToRender", this.animations);
260
258
  }
261
259
  removeAnimationFromRender(callBackName) {
262
260
  this.animations.delete(callBackName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canvas3/nuxt",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },