hijri-date-time-picker 1.0.1 → 1.0.3

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 CHANGED
@@ -19,6 +19,9 @@ An Angular standalone component for dual-mode Gregorian and Hijri date selection
19
19
  ```bash
20
20
  npm install hijri-date-time-picker hijri-date
21
21
  ```
22
+ ```bash
23
+ npm install remixicon --save
24
+ ```
22
25
 
23
26
  ## Dependencies
24
27
 
package/dist/README.md CHANGED
@@ -19,6 +19,9 @@ An Angular standalone component for dual-mode Gregorian and Hijri date selection
19
19
  ```bash
20
20
  npm install hijri-date-time-picker hijri-date
21
21
  ```
22
+ ```bash
23
+ npm install remixicon --save
24
+ ```
22
25
 
23
26
  ## Dependencies
24
27
 
@@ -110,8 +113,8 @@ export class AppComponent {
110
113
  | `futureValidation` | `boolean` | `true` | Prevent selecting dates beyond limit |
111
114
  | `futureYearsLimit` | `number` | `10` | Maximum years in the future |
112
115
  | `isRequired` | `boolean` | `false` | Require date selection before submit |
113
- | `minDate` | `Date` | `undefined` | Minimum selectable date (dates before are disabled) |
114
- | `maxDate` | `Date` | `undefined` | Maximum selectable date (dates after are disabled) |
116
+ | `minDate` | `Date` | `undefined` | Minimum selectable date |
117
+ | `maxDate` | `Date` | `undefined` | Maximum selectable date |
115
118
 
116
119
  #### Selection & Binding
117
120