@aarsteinmedia/dotlottie-player 5.0.2 → 5.0.3

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/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  Changelog was only added since [3.2.3], so it's not exhaustive. [Please report any missing noteable changes to us](https://github.com/aarsteinmedia/dotlottie-player/issues), and we'll add them promptly.
9
9
 
10
- ## [5.0.2] - 23-05-2025
10
+ ## [5.0.3] - 28-05-2025
11
11
 
12
12
  ### Changed
13
13
 
@@ -217,6 +217,7 @@ Changelog was only added since [3.2.3], so it's not exhaustive. [Please report a
217
217
  - Removed dependencies
218
218
  - `@lit`
219
219
 
220
+ [5.0.3]: https://www.npmjs.com/package/@aarsteinmedia/dotlottie-player/v/5.0.3
220
221
  [5.0.1]: https://www.npmjs.com/package/@aarsteinmedia/dotlottie-player/v/5.0.1
221
222
  [5.0.0]: https://www.npmjs.com/package/@aarsteinmedia/dotlottie-player/v/5.0.0
222
223
  [4.0.14]: https://www.npmjs.com/package/@aarsteinmedia/dotlottie-player/v/4.0.14
package/dist/index.js CHANGED
@@ -632,6 +632,7 @@ const unzip = async (resp)=>{
632
632
  }
633
633
  };
634
634
 
635
+ const generator = '@aarsteinmedia/dotlottie-player';
635
636
  /**
636
637
  * DotLottie Player Web Component.
637
638
  */ class DotLottiePlayer extends PropertyCallbackElement {
@@ -934,7 +935,7 @@ const unzip = async (resp)=>{
934
935
  if (!manifest) {
935
936
  throw new Error('Manifest is not set');
936
937
  }
937
- manifest.generator = '@aarsteinmedia/dotlottie-player';
938
+ manifest.generator = generator;
938
939
  const { length } = configs;
939
940
  for(let i = 0; i < length; i++){
940
941
  const { url } = configs[i], { animations: animationsToAdd } = await getAnimationData(url);
@@ -1085,7 +1086,7 @@ const unzip = async (resp)=>{
1085
1086
  fileName: `${getFilename(fileName || src || 'converted')}.lottie`,
1086
1087
  manifest: {
1087
1088
  ...manifest ?? this._manifest,
1088
- generator: '[[GENERATOR]]'
1089
+ generator
1089
1090
  },
1090
1091
  shouldDownload
1091
1092
  });