@colijnit/sharedcomponents 260.1.11 → 260.1.13
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/bundles/colijnit-sharedcomponents.umd.js +116 -12
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/date-planning/component/agenda/agenda-header.component.js +83 -18
- package/esm2015/lib/components/date-planning/component/agenda/view-select.component.js +37 -4
- package/esm2015/lib/components/date-planning/component/calendar/calendar-view.component.js +2 -2
- package/esm2015/lib/components/date-planning/component/calendar/calendar.component.js +2 -2
- package/esm2015/lib/components/date-planning/date-planning.component.js +3 -3
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -1
- package/esm2015/lib/enum/calendar-view.enum.js +3 -1
- package/esm2015/lib/enum/icon.enum.js +1 -1
- package/esm2015/lib/model/icon-svg.js +1 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +1 -7
- package/esm2015/lib/utils/calendar.utils.js +73 -1
- package/fesm2015/colijnit-sharedcomponents.js +199 -30
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/date-planning/component/agenda/view-select.component.d.ts +2 -0
- package/lib/enum/calendar-view.enum.d.ts +2 -0
- package/lib/res/dictionary/dictionaries.d.ts +0 -31885
- package/lib/utils/calendar.utils.d.ts +3 -0
- package/package.json +1 -1
- package/358.645812766f7a400d0d38.js +0 -1
- package/3rdpartylicenses.txt +0 -2017
- package/7.3142e473803d1a7f9729.js +0 -1
- package/977.bd6291f9ee6f6ddf91f1.js +0 -1
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.0245847a0061efd03ea1.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.023dce2502cba6970a33.js +0 -1
- package/styles.1eab293def3e726bfaa4.css +0 -1
|
@@ -5,7 +5,9 @@ export declare class ViewSelectComponent {
|
|
|
5
5
|
private readonly _viewsToThumb;
|
|
6
6
|
selectedView: CalendarView;
|
|
7
7
|
selectedViewChange: EventEmitter<CalendarView>;
|
|
8
|
+
readonly CalendarView: typeof CalendarView;
|
|
8
9
|
get modelAsThumbState(): ThumbThreeWayState;
|
|
9
10
|
constructor();
|
|
11
|
+
selectView(view: CalendarView): void;
|
|
10
12
|
onThumbStateChange(thumbState: ThumbThreeWayState): void;
|
|
11
13
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export declare enum CalendarView {
|
|
2
2
|
DayView = "DAY",
|
|
3
3
|
DaysAround = "DAYS_AROUND",
|
|
4
|
+
ThreeDaysView = "THREE_DAYS_AROUND",
|
|
4
5
|
WeekView = "WEEK",
|
|
5
6
|
WeekSelectView = "WEEK_SELECT",
|
|
7
|
+
WeekWorkView = "WORK_WEEK",
|
|
6
8
|
WeekPlanningView = "WEEK_PLANNING",
|
|
7
9
|
MonthView = "MONTH"
|
|
8
10
|
}
|