Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
1.0.3
FAQs
A svelte component with a HTML5 date picker attached to input range sliders
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.