diff --git a/README.md b/README.md index e1c918e..27946c1 100644 --- a/README.md +++ b/README.md @@ -59,15 +59,16 @@ For more, take a look at the `/example` directory. ## Calendar props -| Name | Type | Default | Description | -| --------------- | ---------- | ---------- | ------------------------------------------------------------------------ | -| mode | `string` | `'single'` | Defines the DatePicker mode `['single', 'range', 'multiple']` | -| locale | `string` | `'en'` | Defines the DatePicker locale | -| minDate | `DateType` | `null` | Defines DatePicker minimum selectable date | -| maxDate | `DateType` | `null` | Defines DatePicker maximum selectable date | -| firstDayOfWeek | `number` | `0` | Defines the starting day of week, number 0-6, 0 - Sunday, 6 - Saturday | -| displayFullDays | `boolean` | `false` | Defines show previous and next month's days in the current calendar view | -| initialView | `string` | `'day'` | Defines the DatePicker initial view `['day', 'month', 'year', 'time']` | +| Name | Type | Default | Description | +| --------------- | ---------- | ------------- | ------------------------------------------------------------------------ | +| mode | `string` | `'single'` | Defines the DatePicker mode `['single', 'range', 'multiple']` | +| locale | `string` | `'en'` | Defines the DatePicker locale | +| minDate | `DateType` | `null` | Defines DatePicker minimum selectable date | +| maxDate | `DateType` | `null` | Defines DatePicker maximum selectable date | +| firstDayOfWeek | `number` | `0` | Defines the starting day of week, number 0-6, 0 - Sunday, 6 - Saturday | +| displayFullDays | `boolean` | `false` | Defines show previous and next month's days in the current calendar view | +| initialView | `string` | `'day'` | Defines the DatePicker initial view `['day', 'month', 'year', 'time']` | +| height | `number` | `'undefined'` | Defines the Calendar view heights |

diff --git a/package.json b/package.json index 3d1b299..de78fba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-ui-datepicker", - "version": "2.0.1", + "version": "2.0.2", "description": "Customizable date picker for React Native", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -106,7 +106,9 @@ "node": ">= 16.0.0" }, "commitlint": { - "extends": ["@commitlint/config-conventional"] + "extends": [ + "@commitlint/config-conventional" + ] }, "release-it": { "git": { @@ -127,7 +129,10 @@ }, "eslintConfig": { "root": true, - "extends": ["@react-native-community", "prettier"], + "extends": [ + "@react-native-community", + "prettier" + ], "rules": { "prettier/prettier": [ "error", @@ -141,7 +146,10 @@ ] } }, - "eslintIgnore": ["node_modules/", "lib/"], + "eslintIgnore": [ + "node_modules/", + "lib/" + ], "prettier": { "quoteProps": "consistent", "singleQuote": true,