Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🤖 update versions #279

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions .changeset/wild-meals-glow.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @lottiefiles/dotlottie-react

## 0.7.2

### Patch Changes

- Updated dependencies [1d26a93]
- @lottiefiles/[email protected]

## 0.7.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-react",
"version": "0.7.1",
"version": "0.7.2",
"type": "module",
"description": "React wrapper around the dotlottie-web library",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @lottiefiles/dotlottie-solid

## 0.0.5

### Patch Changes

- Updated dependencies [1d26a93]
- @lottiefiles/[email protected]

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-solid",
"version": "0.0.4",
"version": "0.0.5",
"type": "module",
"description": "Solid wrapper around the dotlottie-web library",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @lottiefiles/dotlottie-svelte

## 0.3.7

### Patch Changes

- Updated dependencies [1d26a93]
- @lottiefiles/[email protected]

## 0.3.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-svelte",
"version": "0.3.6",
"version": "0.3.7",
"type": "module",
"description": "Svelte component wrapper around the dotlottie-web library to render Lottie and dotLottie animations",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @lottiefiles/dotlottie-vue

## 0.4.2

### Patch Changes

- Updated dependencies [1d26a93]
- @lottiefiles/[email protected]

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-vue",
"version": "0.4.1",
"version": "0.4.2",
"type": "module",
"description": "Vue wrapper around the dotlottie-web library",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/wc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @lottiefiles/dotlottie-wc

## 0.2.8

### Patch Changes

- Updated dependencies [1d26a93]
- @lottiefiles/[email protected]

## 0.2.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-wc",
"version": "0.2.7",
"version": "0.2.8",
"type": "module",
"description": "Web component wrapper around the dotlottie-web library",
"repository": {
Expand Down
49 changes: 49 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# @lottiefiles/dotlottie-web

## 0.28.0

### Minor Changes

- 1d26a93: feat(web): 🎸 DotLottieWorker

Introducing `DotLottieWorker`, a new class for offloading animation rendering to a Web Worker, enhancing application
performance by freeing the main thread from expensive animations rendering. The API remains similar to `DotLottie`,
with most methods being asynchronous.

# Basic Usage

```js
import { DotLottieWorker } from '@lottiefiles/dotlottie-web';

new DotLottieWorker({
canvas: document.getElementById('canvas'),
src: 'url/to/animation.json',
autoplay: true,
loop: true,
});
```

#### Worker Grouping

By default, all animations using `DotLottieWorker` are rendered in the same worker. To group animations into different
workers, use the `workerId` property in the configuration object, as shown below:

```js
new DotLottieWorker({
canvas: document.getElementById('canvas'),
src: 'url/to/animation.json',
autoplay: true,
loop: true,
workerId: 'worker-1',
});

new DotLottieWorker({
canvas: document.getElementById('canvas-2'),
src: 'url/to/animation2.json',
autoplay: true,
loop: true,
workerId: 'worker-2',
});
```

This feature is particularly useful when rendering a large number of animations simultaneously, as it allows you to
distribute the rendering animations workload across multiple workers, improving performance.

## 0.27.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/dotlottie-web",
"version": "0.27.0",
"version": "0.28.0",
"type": "module",
"description": "Lottie and DotLottie player for the web",
"repository": {
Expand Down
Loading