New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@uireact/datepicker

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uireact/datepicker

datepicker package from @uireact library

latest
Source
npmnpm
Version
0.23.0
Version published
Maintainers
1
Created
Source

@UiReact

UiReact icon

This is a React UI library, that defines a customizable but organized theme in a CSS file that organizes your colorations, texts, sizes, spaces, etc. Across your react application.

You should visit our docs page for all information @uireact docs.

@uireact/datepicker

This package exports UiDatepicker, UiTimepicker, UiInputTimepicker and UiInputDatepicker used to render a calendar for users to select dates as well as a timer picker so times can be selected.

We have a page dedicated to these components: @uireact/datepicker docs. We have a page dedicated to these components: @uireact/timepicker docs.

Usage

Get @UiReact library working

First step is to get the library working for this you can look at this doc: Getting started.

Install package

If using npm:

npm i -S @uireact/datepicker

Use it

import { UiInputDatepicker } from '@uireact/datepicker';

<UiInputDatepicker
    label="Date"
    labelOnTop
    placeholder="Select the date"
    highlightToday
    onChange={(value) => {
        console.log(value);
    }}
    icon={<UiIcon icon="CalendarLines" />}
    size="large"
    useDialogOnSmall
    closeLabel="Done"
/>

FAQs

Package last updated on 10 Mar 2026

Did you know?

Socket

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.

Install

Related posts