
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
@itheum/react-schedule-it
Advanced tools
The react scheduling ui component of the Itheum platform
is the react scheduling ui component of the Itheum platform
npm install
npm run build
to transpile the jsx into dist
npm run build-example
builds and packs the example app into the 'docs' folder so it can be accessed via ghpagesthe implement
in the data model can use ISO day of week
to describe days . e.g. 1-2-3-4-5-6-7 (ISO Day of Week - where 1 is Monday)] e.g for thursday and sunday it will be 4-7
this works well with libraries like moment.js
implement: Type - String
daily
: happens everyday1-2-3-4-5-6-7
: ISO Day of Week - 1 is Monday, can be a subset of this string (e.g thursday and sunday it will be 4-7)am / pm : Type - Array of Strings
12 hour format time strings
- e.g. "7:00" or "9:15"minAm / minPm: Type - Int
minimum number of responses
- e.g. 1 for minAm means that that at least 1 reading should be given in the AM{
"implement": "daily",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: daily is like an alias for 1-2-3-4-5-6-7 so we will support these both
{
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"implement": "daily",
"am": ["8:00"],
"pm": ["7:00", "8:00"],
"minAm": 1,
"minPm": 1
}
{
"implement": "1-2-3-4-5-6-7",
"am": ["7:00"],
"pm": ["8:00"],
"minAm": 1,
"minPm": 1
}
Note: same as using alias daily for implement (see example 1)
{
"via": "forthnightly",
"implement": "4-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "1-2-3-4-5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "forthnightly",
"implement": "6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "first:1",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:5",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
{
"via": "monthly",
"implement": "last:1-2-3-4-5-6-7",
"am": [],
"pm": ["9:00"],
"minAm": 0,
"minPm": 1
}
npm install --save react-schedule-it
import ScheduleIt from "react-schedule-it";
name
indicates the title of the UI step and component is what loads.FAQs
The react scheduling ui component of the Itheum platform
The npm package @itheum/react-schedule-it receives a total of 0 weekly downloads. As such, @itheum/react-schedule-it popularity was classified as not popular.
We found that @itheum/react-schedule-it 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.