@smart-solutions-tech/smart-angular-calendar 0.0.17 → 0.0.18
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/esm2020/lib/components/calendar/calendar.component.mjs +5 -3
- package/esm2020/lib/components/calendar-event/calendar-event.component.mjs +7 -3
- package/esm2020/lib/components/day/day.component.mjs +5 -3
- package/esm2020/lib/components/duration-event/duration-event.component.mjs +6 -2
- package/esm2020/lib/components/more-events-modal/more-events-modal.component.mjs +8 -3
- package/esm2020/lib/components/smart-calendar/smart-calendar.component.mjs +6 -3
- package/esm2020/lib/components/week/week.component.mjs +5 -3
- package/fesm2015/smart-solutions-tech-smart-angular-calendar.mjs +35 -13
- package/fesm2015/smart-solutions-tech-smart-angular-calendar.mjs.map +1 -1
- package/fesm2020/smart-solutions-tech-smart-angular-calendar.mjs +35 -13
- package/fesm2020/smart-solutions-tech-smart-angular-calendar.mjs.map +1 -1
- package/lib/components/calendar/calendar.component.d.ts +2 -1
- package/lib/components/calendar-event/calendar-event.component.d.ts +3 -1
- package/lib/components/day/day.component.d.ts +2 -1
- package/lib/components/duration-event/duration-event.component.d.ts +3 -1
- package/lib/components/more-events-modal/more-events-modal.component.d.ts +3 -1
- package/lib/components/smart-calendar/smart-calendar.component.d.ts +2 -1
- package/lib/components/week/week.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare class WeekComponent implements OnInit, OnChanges {
|
|
|
5
5
|
startAt: 'monday' | 'sunday';
|
|
6
6
|
events: CalendarEvent[];
|
|
7
7
|
startDate: Date;
|
|
8
|
+
tagColor?: string;
|
|
8
9
|
eventClick: EventEmitter<CalendarEvent>;
|
|
9
10
|
weekDays: WeekDay[];
|
|
10
11
|
hourBlocks: number[];
|
|
@@ -31,5 +32,5 @@ export declare class WeekComponent implements OnInit, OnChanges {
|
|
|
31
32
|
onEventClick(event: CalendarEvent): void;
|
|
32
33
|
isToday(date: Date): boolean;
|
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<WeekComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WeekComponent, "lib-week", never, { "startAt": "startAt"; "events": "events"; "startDate": "startDate"; }, { "eventClick": "eventClick"; }, never, never, false>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WeekComponent, "lib-week", never, { "startAt": "startAt"; "events": "events"; "startDate": "startDate"; "tagColor": "tagColor"; }, { "eventClick": "eventClick"; }, never, never, false>;
|
|
35
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smart-solutions-tech/smart-angular-calendar",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "This library is an events calendar component for Angular 14 and above. It allows you to view, create, and manage events through an intuitive and customizable interface, making it easy to integrate calendar functionality into modern Angular applications. Ideal for schedules, bookings, activity planning, and event management.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^14.2.0",
|