form-input-fields 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,38 @@
|
|
|
2
2
|
|
|
3
3
|
A collection of Material-UI form field components with Formik integration.
|
|
4
4
|
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [FormDateField](#formdatefield)
|
|
8
|
+
- [Features](#features)
|
|
9
|
+
- [Available Date Formats](#available-date-formats)
|
|
10
|
+
- [Importing Date Constants](#importing-date-constants)
|
|
11
|
+
- [Usage with Formik](#usage-with-formik)
|
|
12
|
+
- [Props](#props)
|
|
13
|
+
- [Examples](#examples)
|
|
14
|
+
- [Basic Date Input](#basic-date-input)
|
|
15
|
+
- [Date with Validation](#date-with-validation)
|
|
16
|
+
- [Appointment Scheduler](#appointment-scheduler)
|
|
17
|
+
- [Read-Only Date Display](#read-only-date-display)
|
|
18
|
+
- [Custom Change Handler](#custom-change-handler)
|
|
19
|
+
- [FormMaskField](#formmaskfield)
|
|
20
|
+
- [Features](#features-1)
|
|
21
|
+
- [Installation](#installation)
|
|
22
|
+
- [Basic Usage](#basic-usage)
|
|
23
|
+
- [Available Masks](#available-masks)
|
|
24
|
+
- [Props](#props-1)
|
|
25
|
+
- [Examples](#examples-1)
|
|
26
|
+
- [Phone Number](#phone-number)
|
|
27
|
+
- [Date Input](#date-input)
|
|
28
|
+
- [Product Code (Uppercase)](#product-code-uppercase)
|
|
29
|
+
- [Credit Card](#credit-card)
|
|
30
|
+
- [Custom Change Handler](#custom-change-handler-1)
|
|
31
|
+
- [Show Mask Pattern](#show-mask-pattern)
|
|
32
|
+
- [Show Placeholder](#show-placeholder)
|
|
33
|
+
- [Custom Mask with Validation](#custom-mask-with-validation)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
5
37
|
## FormDateField
|
|
6
38
|
|
|
7
39
|
A date input field component with Material-UI and Formik integration, powered by MUI X Date Pickers.
|