You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,8 @@ Please note that the badgeStyle, window shadow and border props are only applica
208
208
borderWidth?: number,
209
209
borderRadius?: number,
210
210
paddingY?: number,
211
-
paddingX?: number
211
+
paddingX?: number,
212
+
tabContainerBorderWidth?: number
212
213
};
213
214
}
214
215
```
@@ -264,11 +265,11 @@ function MyComponent() {
264
265
265
266
Functions | Parameters | Type | Description |
266
267
----------|------------|-------|------------|
267
-
markAsReadByDate | startDate | ISO date string | Sets the read status of notifications to true until the given date |
268
+
markAsReadByDate | options | { startDate: ISO date string, <br>isRead?: boolean } | Updates the read status of notifications. <br>startDate- To set the read status of notifications up to the specified date. <br> isRead- Filters notifications based on their read status. |
268
269
markAsReadById | id | string | Set read status of a notification to true |
269
270
deleteById | id | string | Delete a notification by id |
270
-
deleteByDate | startDate | ISO date string| Delete all notifications until given date |
271
-
markAllAsViewed | startDate | ISO date string |Sets the viewed status of notifications to true until the given date |
271
+
deleteByDate | options | { startDate: ISO date string, <br>isRead?: boolean } | Delete all notifications until given start date. <br>startDate- To specify the date until which notifications are deleted. <br> isRead- Filters notifications based on their read status. |
272
+
markAllAsViewed | untilDate | ISO date string |Sets the viewed status of notifications to true until the given date |
0 commit comments