From 265d3e729b37cc732a64a0fb804175cf514adb74 Mon Sep 17 00:00:00 2001 From: Farhoud Shapouran Date: Thu, 20 Feb 2025 18:13:37 +0300 Subject: [PATCH] Update README.md --- README.md | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 944f643..c247e58 100644 --- a/README.md +++ b/README.md @@ -268,31 +268,14 @@ export function Calendar() { ## List of Custom Components -| Name | Type | Description | -| ---------- | -------------------------------------------- | ------------------------------------------------------ | -| `Day` | `(day: CalendarDay) => React.ReactNode` | The component containing the day in the days grid. | -| `Month` | `(month: CalendarMonth) => React.ReactNode` | The component containing the month in the months grid. | -| `Year` | `(year: CalendarYear) => React.ReactNode` | The component containing the year in the years grid. | -| `Weekday` | `(weekday: CalendarWeek) => React.ReactNode` | The component containing the weekday in the header. | -| `IconPrev` | `React.ReactNode` | The previous month/year button icon in the header. | -| `IconNext` | `React.ReactNode` | The next month button/year icon in the header. | - -## List of Numeral Systems - -| Name | Description | -| ---------- | --------------------------------------------- | -| `latn` | Western Latin. | -| `arab` | Standard Arabic. | -| `arabext` | Eastern Arabic-Indic (Persian). | -| `deva` | Devanagari, used in Indian languages. | -| `beng` | Bengali, used in Bengali and Assamese. | -| `guru` | Gurmukhi, used in Punjab, India. | -| `gujr` | Gujarati, used in Gujarat, India. | -| `orya` | Odia, used in Odisha, India. | -| `tamldec` | Tamil, used in Tamil-speaking regions. | -| `telu` | Telugu, used in Andhra Pradesh and Telangana. | -| `knda` | Kannada, used in Karnataka, India. | -| `mlym` | Malayalam, used in Kerala, India. | +| Name | Type | Description | +| ---------- | -------------------------------------- | ------------------------------------------------------ | +| `Day` | `(day: CalendarDay) => ReactNode` | The component containing the day in the days grid. | +| `Month` | `(month: CalendarMonth) => ReactNode` | The component containing the month in the months grid. | +| `Year` | `(year: CalendarYear) => ReactNode` | The component containing the year in the years grid. | +| `Weekday` | `(weekday: CalendarWeek) => ReactNode` | The component containing the weekday in the header. | +| `IconPrev` | `ReactNode` | The previous month/year button icon in the header. | +| `IconNext` | `ReactNode` | The next month button/year icon in the header. | ## Type Definitions @@ -353,6 +336,23 @@ type CalendarYear = { }; ``` +## List of Numeral Systems + +| Name | Description | +| ---------- | --------------------------------------------- | +| `latn` | Western Latin. | +| `arab` | Standard Arabic. | +| `arabext` | Eastern Arabic-Indic (Persian). | +| `deva` | Devanagari, used in Indian languages. | +| `beng` | Bengali, used in Bengali and Assamese. | +| `guru` | Gurmukhi, used in Punjab, India. | +| `gujr` | Gujarati, used in Gujarat, India. | +| `orya` | Odia, used in Odisha, India. | +| `tamldec` | Tamil, used in Tamil-speaking regions. | +| `telu` | Telugu, used in Andhra Pradesh and Telangana. | +| `knda` | Kannada, used in Karnataka, India. | +| `mlym` | Malayalam, used in Kerala, India. | +

react-native-ui-datepicker