From d6807df28293ee1b74ef19c8401dde79ab3692d1 Mon Sep 17 00:00:00 2001 From: tbshag2 Date: Mon, 28 Oct 2024 14:34:03 +0300 Subject: [PATCH] [update] corrected misprints --- docs/api/events/booking-filterdata-event.md | 4 ++-- docs/api/events/booking-selectitemdate-event.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/events/booking-filterdata-event.md b/docs/api/events/booking-filterdata-event.md index 3b05555..e0b4b31 100644 --- a/docs/api/events/booking-filterdata-event.md +++ b/docs/api/events/booking-filterdata-event.md @@ -26,12 +26,12 @@ description: You can learn about the filter-data event in the documentation of t }) => void; ~~~ -### Parameters +### Parameters The callback of the **filter-data** event can take an object with the following parameters: - `text` - (required) the text in the search field -- `date` - (required) Date object with the start and end date for a slot: +- `date` - (required) Date object with the start and end date for a slot: - `start` - the slot start date - `end` - the slot end date - `time` - (required) an array of objects containing time options for a slot. For each object, you can specify the following parameters: diff --git a/docs/api/events/booking-selectitemdate-event.md b/docs/api/events/booking-selectitemdate-event.md index d1ab0f1..b2b9513 100644 --- a/docs/api/events/booking-selectitemdate-event.md +++ b/docs/api/events/booking-selectitemdate-event.md @@ -15,7 +15,7 @@ description: You can learn about the select-item-date event in the documentation ~~~jsx {} "select-item-date": ({ id: string|number, - date: number + date: number }) => void; ~~~