@ilamy/calendar 1.7.0 → 1.8.0

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/dist/index.d.ts CHANGED
@@ -266,32 +266,6 @@ interface Translations {
266
266
  date: string;
267
267
  noResourcesVisible: string;
268
268
  addResourcesOrShowExisting: string;
269
- sunday: string;
270
- monday: string;
271
- tuesday: string;
272
- wednesday: string;
273
- thursday: string;
274
- friday: string;
275
- saturday: string;
276
- sun: string;
277
- mon: string;
278
- tue: string;
279
- wed: string;
280
- thu: string;
281
- fri: string;
282
- sat: string;
283
- january: string;
284
- february: string;
285
- march: string;
286
- april: string;
287
- may: string;
288
- june: string;
289
- july: string;
290
- august: string;
291
- september: string;
292
- october: string;
293
- november: string;
294
- december: string;
295
269
  }
296
270
  type TranslationKey = keyof Translations;
297
271
  type TranslatorFunction = (key: TranslationKey | string) => string;
@@ -547,6 +521,12 @@ interface IlamyCalendarProps {
547
521
  */
548
522
  hideNonBusinessHours?: boolean;
549
523
  /**
524
+ * Whether to hide the iCalendar button in the calendar header.
525
+ * Applies to both desktop and mobile header layouts.
526
+ * @default false
527
+ */
528
+ hideExportButton?: boolean;
529
+ /**
550
530
  * Custom class names for overriding default calendar element styles.
551
531
  * Allows fine-grained control over the appearance of different calendar elements.
552
532
  * @example { disabledCell: "bg-gray-100 text-gray-400" }