
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@qonto/ember-lottie
Advanced tools
Render lottie after effects animations in Ember.js.
ember install @qonto/ember-lottie
<Lottie
@name="empty state"
@animationData={{this.animationData}}
@path="/data.json"
@loop={{false}}
@autoplay={{false}}
@speed={{500}}
@containerId={{this.id}}
@onDataReady={{this.args.onDataReady}}
@fetchOptions={{this.fetchOptions}}
/>
Argument | Type | Description |
---|---|---|
name | string | animation name for future reference |
animationData | object | an object with the exported animation data (mandatory at least one: animationData or path ) |
path | string | the relative path to the animation object (mandatory at least one: animationData or path ) |
loop | boolean | by default at true , the animation runs forever, at false , the animation is played only once |
autoplay | boolean | by default to true , it will play as soon as it's loaded |
speed | number | 1 is normal speed |
containerId | string | the dom element id on which to render the animation (mandatory) |
onDataReady | function | a function that triggers the Lottie when you want it |
onError | function | a function that can be used as a callback when fetching the lottie file throws |
fetchOptions | object | any additional params to pass to fetch function (eg: {credentials: "include"} ) |
The Lottie
component has proper Glint types, which allow you to get strict type checking in your templates when using TypeScript.
Unless you are using strict mode templates (via first class component templates), you need to import the addon's Glint template registry entries as described in the Using Addons documentation:
// e.g. types/glint.d.ts
import "@glint/environment-ember-loose";
import type LottieRegistry from "@qonto/ember-lottie/template-registry";
declare module "@glint/environment-ember-loose/registry" {
export default interface Registry
extends LottieRegistry /* other addon registries */ {
// local entries
}
}
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
Render lottie after effects animations in Ember.js
The npm package @qonto/ember-lottie receives a total of 795 weekly downloads. As such, @qonto/ember-lottie popularity was classified as not popular.
We found that @qonto/ember-lottie demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.