Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
reacthub-timeline-editor
Advanced tools
This repo is forked from the original author repo `@xzdarcy/react-timeline-editor` and modified with custom requirements.
This repo is forked from the original author repo @xzdarcy/react-timeline-editor
and modified with custom requirements.
React Timeline Editor is a react component used to quickly build a timeline animation editor.
npm install @xzdarcy/react-timeline-editor
import { Timeline, TimelineEffect, TimelineRow } from '@xzdarcy/react-timeline-editor';
import React from 'react';
const mockData: TimelineRow[] = [
{
id: '0',
actions: [
{
id: 'action00',
start: 0,
end: 2,
effectId: 'effect0',
},
],
},
{
id: '1',
actions: [
{
id: 'action10',
start: 1.5,
end: 5,
effectId: 'effect1',
},
],
},
];
const mockEffect: Record<string, TimelineEffect> = {
effect0: {
id: 'effect0',
name: '效果0',
},
effect1: {
id: 'effect1',
name: '效果1',
},
};
const TimelineEditor = () => {
return <Timeline editorData={mockData} effects={mockEffect} />;
};
Checkout the Docs for a demonstration of some basic and advanced features.
FAQs
This repo is forked from the original author repo `@xzdarcy/react-timeline-editor` and modified with custom requirements.
The npm package reacthub-timeline-editor receives a total of 30 weekly downloads. As such, reacthub-timeline-editor popularity was classified as not popular.
We found that reacthub-timeline-editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.