@lottiefiles/dotlottie-vue 0.1.5 → 0.1.7

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -69,7 +69,7 @@ import { DotLottieVue } from '@lottiefiles/dotlottie-vue'
69
69
  | `src` | string | | undefined | URL to the animation data (`.json` or `.lottie`). |
70
70
  | `speed` | number | | 1 | Animation playback speed. 1 is regular speed. |
71
71
  | `data` | string \| ArrayBuffer | | undefined | Animation data provided either as a Lottie JSON string or as an ArrayBuffer for .lottie animations. |
72
- | `mode` | string | | "forward" | Animation play mode. Accepts "forward", "reverse", "bounce", "bounce-reverse". |
72
+ | `mode` | string | | "forward" | Animation play mode. Accepts "forward", "reverse", "bounce", "reverse-bounce". |
73
73
  | `backgroundColor` | string | | undefined | Background color of the canvas. Accepts 6-digit or 8-digit hex color string (e.g., "#000000", "#000000FF"), |
74
74
  | `segments` | \[number, number] | | \[0, totalFrames - 1] | Animation segments. Accepts an array of two numbers, where the first number is the start frame and the second number is the end frame. |
75
75
  | `renderConfig` | RenderConfig | | `{}` | Configuration for rendering the animation. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lottiefiles/dotlottie-vue",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "Vue wrapper around the dotlottie-web library",
6
6
  "repository": {
@@ -38,7 +38,7 @@
38
38
  "vue": "^3.3.4"
39
39
  },
40
40
  "dependencies": {
41
- "@lottiefiles/dotlottie-web": "0.12.4"
41
+ "@lottiefiles/dotlottie-web": "0.14.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@vue/runtime-dom": "^3.4.6",