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.
material-date-picker
Advanced tools
This small component is still in currently in BETA. It's a simple date picker based on the angular-material port of polymer by the people behind ionic.
The master branch will always contain the most recent version of the datepicker, so if you want to be up to date, don't pull from bower of npm. These are the stable versions.
https://material.angularjs.org/
##Install This component is bower and npm registered
bower install material-date-picker (installs moment as dependency)
npm install material-date-picker
npm install moment
All the necessary files will be automatically included in your index.html if not add
<link rel="stylesheet" href="bower_components/material-date-picker/build/styles/mbdatepicker.css"/>
<script src="bower_components/material-date-picker/build/mbdatepicker.js"></script>
You have to add a dependency to material-date-picker module which is called materialDatePicker
.
angular.module('your-app', ['materialDatePicker']);
##Usage ###Attributes
<mb-datepicker element-id='date1'
input-class="testClass"
input-name="testName"
arrows="arrows"
calendar-header="header"
date="date"
date-format="YYYY-MM-DD"></mb-datepicker>
With the following attributes you can bind an element id, bind a class for extra styling to the input and all internal fields, etc. The calendar-header attribute has a two-way databinding to a scope variable, so you can add dynamic translations, that has the following setup:
$scope.header = {
monday: 'Mon',
tuesday: 'Tue',
wednesday: 'Wed',
thursday: 'Thu',
friday: 'Fri',
saturday: 'Sat',
sunday: 'Sun',
}
The arrows attribute has a two-way databinding to a scope variable that has the following setup:
$scope.arrows = {
year: {
left: 'images/white_arrow_left.svg',
right: 'images/white_arrow_right.svg'
},
month: {
left: 'images/grey_arrow_left.svg',
right: 'images/grey_arrow_right.svg'
}
}
The input-class attribute can be overridden in the following way:
<style type="text/css">
.testClass > input {
border-bottom: 3px solid #1A4987;
border-left: transparent;
border-right: transparent;
border-top: transparent;
}
</style>
An example is provided.
##Known issues If you can't find the SVG images, look in the images map of the bower component and copy these to your own images map. I left this as an open option.
If you have an improvement or request please let me know or post a pull request
FAQs
![Alt text](http://i.imgur.com/zAlNOIe.png)
The npm package material-date-picker receives a total of 121 weekly downloads. As such, material-date-picker popularity was classified as not popular.
We found that material-date-picker 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.