
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
svelte-date-range-select
Advanced tools
A svelte component with a HTML5 date picker attached to input range sliders
Something simple to play around with Svelte, a date range component with range sliders attached for fast range selection.
yarn add svelte-date-range-select
npm i svelte-date-range-select
Note: Install as a dev dependency (yarn add svelte-date-range-select --dev) if useding Sapper to avoid a SSR error.
<script>
import DateRangeSelect from 'svelte-date-range-select';
const name = 'createdDate';
const heading = 'Created Date';
// this limits the HTML5 date picker end date - e.g. today is used here
const endDateMax = new Date();
// this limits the HTML5 date picker's start date - e.g. 3 years is select here
const startDateMin = new Date(
new Date().setFullYear(endDateMax.getFullYear(), endDateMax.getMonth() - 36)
);
// option to override the defaults - change to other language, below are the default values
const labels = {
notSet: 'not set',
greaterThan: 'greater than',
lessThan: 'less than',
range: 'range',
day: 'day',
days: 'days',
apply: 'Apply'
}
// form post ids
const startDateId = 'start_date_id'
const endDateId = 'end_date_id'
<DateRangeSelect
{startDateMin}
{endDateMax}
{name}
{heading}
{labels}
{startDateId}
{endDateId}
on:onApplyDateRange={handleApplyDateRange} />
// executed when the user selects the range by clicking the apply button (with the fa-check icon)
function handleApplyDateRange(data){
console.log(data.detail)
// e.g. will return an object
// {
// startDate: 2000-12-01,
// endDate: 2020-04-06,
// name: createdDate
// }
}
You can override the following CSS variables to style the component.
--applyButtonWidth
--applyButtonHeight
--applyButtonBackgroundColor
--applyButtonColor
--applyButtonPadding
--sliderEndBackgroundColor
--sliderEndHeight
--sliderEndWidth
--sliderEndMargin
--sliderStartBackgroundColor
--sliderStartHeight
--sliderStartWidth
--sliderStartMargin
--headingColor
--headerFontSize
--headerFontWeight
--dateSelectColor
--dateSelectFontSize
--dateSelectFontWeight
--dateSelectHeight
--dateSelectWidth
--dateSelectMarginBottom
FAQs
A svelte component with a HTML5 date picker attached to input range sliders
The npm package svelte-date-range-select receives a total of 0 weekly downloads. As such, svelte-date-range-select popularity was classified as not popular.
We found that svelte-date-range-select 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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.