![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@12core/date-input-polyfill
Advanced tools
Automatically adds datepickers to input[type=date] on IE, Firefox, and OS X Safari.
Just include this simple script and OS X Safari will support <input type="date">
, without any dependencies, not even jQuery!
Support dynamically created inputs, so can be used in single page applications.
Forked from date-input-polyfill. Continuing as a separate project.
Changes include:
YYYY-MM-DD
format. This is unfortunate and may be addressed at some point.npm install --save @12core/date-input-polyfill
Add to your project:
Webpack/Browserify: require('@12core/date-input-polyfill');
or alongside Babel: import '@12core/date-input-polyfill';
Script Tag: Copy @12core/date-input-polyfill/dist/date-input-polyfill.umd.js
from node_modules
and
include it anywhere in your HTML.
This package also supports ESM: date-input-polyfill.esm.js
.
Easily Stylable: These are the default styles, which you may override with your own.
Polyfills valueAsDate
and valueAsNumber
:
Learn more about these properties.
They behave as getters and setters.
Keyboard Shortcuts: Esc
will hide the datepicker. Up/Down
will
increment/decrement the date by one day.
Localization: Specify the datepicker's locale by setting the
lang
attribute of the input
element. The default locale is en
.
<input type="date" lang="en" />
Formatting: Specify the display format by setting either the
date-format
or data-date-format
attribute of the input
element. The default format is yyyy-mm-dd
.
Available options list.
<input type="date" date-format="mm/dd/yyyy" />
<input type="date" data-date-format="mm/dd/yyyy" />
Run npm start
.
Run npm run build
FAQs
Automatically adds datepickers to input[type=date] on IE, Firefox, and OS X Safari.
We found that @12core/date-input-polyfill demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.