npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

arabic-date-input-app

v1.1.3

Published

An Arabic date input component with suggestions and autocompletion

Downloads

676

Readme

Arabic Date Input Component

Introduction

This document provides comprehensive information about the Arabic Date Input component, which allows users to input dates in Arabic format.

Overview

The Arabic Date Input component is designed to enhance user experience by providing a user-friendly interface for date input in Arabic. It utilizes React and is styled for easy integration into your projects.

Features

  • Arabic Language Support: The component is specifically designed to handle date input in Arabic.
  • Customizable Styles: Users can customize the appearance of the input field to match their application's design.
  • Icon Support: The component allows for the inclusion of icons to enhance user interaction.
  • Autocompletion and Suggestions: The component provides autocompletion features and suggestions for date input.
  • Date Picker Integration: Users can select dates from a calendar interface for easier input.

Demo of the Arabic Date Input Component

Here’s a quick demo showing how the Arabic Date Input component works:

Demo of the Arabic Date Input Component

How to Use

  1. Installation:

    • Ensure that the required libraries are installed. Use the following command to install the Arabic Date Input library:
      npm install arabic-date-input-app
  2. Setup:

    • Import the component into your React application:

      import { ArabicDateInput } from "arabic-date-input-app";
      import { FaAddressBook } from "react-icons/fa";
      import { useState } from "react";
      import "react-datepicker/dist/react-datepicker.css";
      import "arabic-date-input-app/dist/index.css";
  3. Usage:

    • Here’s an example of how to use the Arabic Date Input component in your application:

      function App() {
        const [value, setValue] = useState("2024-01-01");
        return (
          <>
            <div>
              <div>{value}</div>
      
              <div
                style={{
                  display: "flex",
                  justifyContent: "center",
                  alignItems: "center",
                  height: "10vh",
                }}
              >
                <ArabicDateInput
                  containerStyle={{
                    display: "flex",
                    justifyContent: "center",
                    alignItems: "center",
                  }}
                  placeholder="Year - Month - Day"
                  inputStyle={{
                    paddingRight: "50px",
                    paddingTop: "10px",
                    paddingBottom: "10px",
                    width: "150px",
                    border: "3px solid #000",
                    borderRadius: "30px",
                    fontWeight: "bold",
                    fontSize: "16px",
                  }}
                  icon={<FaAddressBook size={20} />}
                  field={{
                    value: value,
                    onChange: (value) => {
                      setValue(value);
                    },
                  }}
                  form={{}}
                  enableSuggestions={true} // Enable autocompletion and suggestions
                  showCalendar={true} // Show date picker calendar
                />
              </div>
            </div>
          </>
        );
      }
      
      export default App;

Contribution

If you would like to contribute to improving the component, please open pull requests or report issues.

Conclusion

We hope this document helps you understand how to use the Arabic Date Input component. If you have any inquiries, feel free to reach out to us.