ngx-mat-tui-calendar 12.0.11 → 12.1.2

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.
@@ -15,7 +15,7 @@ export declare class NgxMatTuiCalendarComponent implements OnInit, OnChanges, On
15
15
  iconByWeek: import("@fortawesome/fontawesome-common-types").IconDefinition;
16
16
  iconByDay: import("@fortawesome/fontawesome-common-types").IconDefinition;
17
17
  calendar: Calendar;
18
- calendarId: string;
18
+ calendarIdDefault: string;
19
19
  colors: Color[];
20
20
  colorIndex: number;
21
21
  userCreatedSchedule: EventEmitter<ISchedule>;
@@ -36,7 +36,7 @@ export declare class NgxMatTuiCalendarComponent implements OnInit, OnChanges, On
36
36
  onWeekView(): void;
37
37
  onDayView(): void;
38
38
  getDate(): string;
39
- createTUICalendar(): void;
39
+ createTUICalendar(iopts?: IOptions): void;
40
40
  bindCallbacks(): void;
41
41
  bindAfterRenderSchedule(): void;
42
42
  bindClickTimezonesCollapseBtn(): void;
@@ -66,10 +66,10 @@ export declare class NgxMatTuiCalendarComponent implements OnInit, OnChanges, On
66
66
  }): void;
67
67
  deleteAllSchedules(): void;
68
68
  openPopupScheduleEditor(schedule: ISchedule): void;
69
- setOptions(options: CalendarOptions): void;
69
+ setDefaultOptions(): void;
70
+ setOptions(o?: CalendarOptions): void;
70
71
  setIOptions(ioptionsIn: IOptions): IOptions;
71
72
  preprocessIOptions(ioptions: IOptions): IOptions;
72
- getDefaultOptions(): CalendarOptions;
73
73
  getDefaultIOptions(): IOptions;
74
74
  getColor(name: string): string;
75
75
  getDefaultTheme(): ITheme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-mat-tui-calendar",
3
- "version": "12.0.11",
3
+ "version": "12.1.2",
4
4
  "author": "ron schmitt",
5
5
  "license": "MIT",
6
6
  "description": "Angular Material Design wrapper, supporting theming, for the Toast UI Calendar, suitable for web-based scheduling, events, appointments, and day planner applications.",
@@ -57,9 +57,7 @@
57
57
  "pug": "^3.0.2",
58
58
  "randomcolor": "^0.6.2",
59
59
  "rxjs": "~6.6.0",
60
- "tui-calendar": "^1.15.1",
61
- "tui-date-picker": "^4.3.1",
62
- "tui-time-picker": "^2.1.4",
60
+ "tui-calendar": "^1.15.2",
63
61
  "uuid": "^8.3.2",
64
62
  "zone.js": "~0.11.4"
65
63
  },