@cocoar/vue-calendar 3.1.0 → 3.2.0-beta.6
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/README.md +33 -6
- package/dist/builders/calendar-builder-config.d.ts +171 -0
- package/dist/builders/calendar-builder-config.d.ts.map +1 -0
- package/dist/builders/calendar-builder-handlers.d.ts +50 -0
- package/dist/builders/calendar-builder-handlers.d.ts.map +1 -0
- package/dist/builders/calendar-builder-internals.d.ts +18 -2
- package/dist/builders/calendar-builder-internals.d.ts.map +1 -1
- package/dist/builders/calendar-builder-state.d.ts +232 -0
- package/dist/builders/calendar-builder-state.d.ts.map +1 -0
- package/dist/builders/calendar-builder.d.ts +41 -452
- package/dist/builders/calendar-builder.d.ts.map +1 -1
- package/dist/builders/internal/event-validation.d.ts +13 -0
- package/dist/builders/internal/event-validation.d.ts.map +1 -0
- package/dist/builders/internal/events-for-window.d.ts +6 -0
- package/dist/builders/internal/events-for-window.d.ts.map +1 -0
- package/dist/builders/internal/loader-pipeline.d.ts +50 -0
- package/dist/builders/internal/loader-pipeline.d.ts.map +1 -0
- package/dist/builders/internal/loading-tracker.d.ts +12 -0
- package/dist/builders/internal/loading-tracker.d.ts.map +1 -0
- package/dist/builders/internal/navigation.d.ts +28 -0
- package/dist/builders/internal/navigation.d.ts.map +1 -0
- package/dist/builders/internal/range-label.d.ts +7 -0
- package/dist/builders/internal/range-label.d.ts.map +1 -0
- package/dist/builders/internal/series-pipeline.d.ts +67 -0
- package/dist/builders/internal/series-pipeline.d.ts.map +1 -0
- package/dist/builders/internal/window-utils.d.ts +44 -0
- package/dist/builders/internal/window-utils.d.ts.map +1 -0
- package/dist/builders/types.d.ts +18 -3
- package/dist/builders/types.d.ts.map +1 -1
- package/dist/components/CoarAgendaView.vue.d.ts +18 -0
- package/dist/components/CoarAgendaView.vue.d.ts.map +1 -1
- package/dist/components/CoarCalendar.vue.d.ts +25 -1
- package/dist/components/CoarCalendar.vue.d.ts.map +1 -1
- package/dist/components/CoarContinuousMonthView.vue.d.ts.map +1 -1
- package/dist/components/CoarDayView.vue.d.ts +16 -2
- package/dist/components/CoarDayView.vue.d.ts.map +1 -1
- package/dist/components/CoarMonthListView.vue.d.ts.map +1 -1
- package/dist/components/CoarMonthView.vue.d.ts.map +1 -1
- package/dist/components/CoarTimeGrid.vue.d.ts +33 -7
- package/dist/components/CoarTimeGrid.vue.d.ts.map +1 -1
- package/dist/components/CoarTimelineView.vue.d.ts.map +1 -1
- package/dist/components/CoarWeekView.vue.d.ts.map +1 -1
- package/dist/components/CoarWorkWeekView.vue.d.ts +1 -2
- package/dist/components/CoarWorkWeekView.vue.d.ts.map +1 -1
- package/dist/components/CoarYearView.vue.d.ts.map +1 -1
- package/dist/components/VirtualizedSurface1DY.vue.d.ts.map +1 -1
- package/dist/components/internal/CoarEventDecorations.vue.d.ts.map +1 -1
- package/dist/components/internal/agenda/agendaTimeLabel.d.ts +4 -0
- package/dist/components/internal/agenda/agendaTimeLabel.d.ts.map +1 -0
- package/dist/components/internal/month/CoarMonthBar.vue.d.ts +2 -0
- package/dist/components/internal/month/CoarMonthBar.vue.d.ts.map +1 -1
- package/dist/components/internal/month/CoarMonthCell.vue.d.ts +3 -1
- package/dist/components/internal/month/CoarMonthCell.vue.d.ts.map +1 -1
- package/dist/components/internal/month/CoarMonthPill.vue.d.ts +2 -0
- package/dist/components/internal/month/CoarMonthPill.vue.d.ts.map +1 -1
- package/dist/components/internal/originatesFromEvent.d.ts +18 -0
- package/dist/components/internal/originatesFromEvent.d.ts.map +1 -0
- package/dist/components/internal/time-grid/CoarTimeGridAllDayBand.vue.d.ts +15 -1
- package/dist/components/internal/time-grid/CoarTimeGridAllDayBand.vue.d.ts.map +1 -1
- package/dist/components/internal/time-grid/CoarTimeGridAllDayBar.vue.d.ts +2 -0
- package/dist/components/internal/time-grid/CoarTimeGridAllDayBar.vue.d.ts.map +1 -1
- package/dist/components/internal/time-grid/CoarTimeGridAllDayOverflow.vue.d.ts +27 -0
- package/dist/components/internal/time-grid/CoarTimeGridAllDayOverflow.vue.d.ts.map +1 -0
- package/dist/components/internal/time-grid/CoarTimeGridColumn.vue.d.ts +2 -0
- package/dist/components/internal/time-grid/CoarTimeGridColumn.vue.d.ts.map +1 -1
- package/dist/components/internal/time-grid/CoarTimeGridEvent.vue.d.ts +12 -1
- package/dist/components/internal/time-grid/CoarTimeGridEvent.vue.d.ts.map +1 -1
- package/dist/components/internal/time-grid/CoarTimeGridHeader.vue.d.ts +12 -1
- package/dist/components/internal/time-grid/CoarTimeGridHeader.vue.d.ts.map +1 -1
- package/dist/components/internal/time-grid/CoarTimeGridSurface.vue.d.ts +53 -0
- package/dist/components/internal/time-grid/CoarTimeGridSurface.vue.d.ts.map +1 -0
- package/dist/composables/useMonthExpansion.d.ts +0 -5
- package/dist/composables/useMonthExpansion.d.ts.map +1 -1
- package/dist/composables/useTimeGridSwipe.d.ts +47 -0
- package/dist/composables/useTimeGridSwipe.d.ts.map +1 -0
- package/dist/composables/useViewWindow.d.ts +4 -2
- package/dist/composables/useViewWindow.d.ts.map +1 -1
- package/dist/core/allDayBandCap.d.ts +41 -0
- package/dist/core/allDayBandCap.d.ts.map +1 -0
- package/dist/core/eventTextContrast.d.ts +53 -2
- package/dist/core/eventTextContrast.d.ts.map +1 -1
- package/dist/core/index.d.ts +5 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/rangeLabel.d.ts +14 -0
- package/dist/core/rangeLabel.d.ts.map +1 -0
- package/dist/core/timeGridRange.d.ts +50 -0
- package/dist/core/timeGridRange.d.ts.map +1 -0
- package/dist/core/timedCardAnatomy.d.ts +47 -0
- package/dist/core/timedCardAnatomy.d.ts.map +1 -0
- package/dist/core/viewWindow.d.ts +17 -4
- package/dist/core/viewWindow.d.ts.map +1 -1
- package/dist/{core-CiKX2hZM.js → core-COjCRcPw.js} +266 -80
- package/dist/core.js +2 -2
- package/dist/i18n/messages.d.ts +16 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2383 -1655
- package/dist/vue-calendar.css +1 -1
- package/package.json +4 -3
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Temporal } from '@js-temporal/polyfill';
|
|
2
|
+
import { FormatOverrides } from './temporal';
|
|
3
|
+
import { CalendarView, ViewWindow } from './types';
|
|
4
|
+
export interface RangeLabelOptions extends FormatOverrides {
|
|
5
|
+
view: CalendarView;
|
|
6
|
+
/** The rendered window — `[start, end)` as ISO dates in the display zone. */
|
|
7
|
+
window: ViewWindow;
|
|
8
|
+
/** The builder's cursor date (day / month / year labels are cursor-based). */
|
|
9
|
+
cursor: Temporal.PlainDate;
|
|
10
|
+
locale: string;
|
|
11
|
+
}
|
|
12
|
+
/** Format the label for `view` over `window`, respecting the C6 format overrides. */
|
|
13
|
+
export declare function formatRangeLabel(opts: RangeLabelOptions): string;
|
|
14
|
+
//# sourceMappingURL=rangeLabel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rangeLabel.d.ts","sourceRoot":"","sources":["../../src/core/rangeLabel.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,YAAY,CAAC;AACtE,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAExD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,IAAI,EAAE,YAAY,CAAC;IACnB,6EAA6E;IAC7E,MAAM,EAAE,UAAU,CAAC;IACnB,8EAA8E;IAC9E,MAAM,EAAE,QAAQ,CAAC,SAAS,CAAC;IAC3B,MAAM,EAAE,MAAM,CAAC;CAChB;AAqBD,qFAAqF;AACrF,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,iBAAiB,GAAG,MAAM,CAwChE"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Temporal } from '@js-temporal/polyfill';
|
|
2
|
+
import { DayOfWeek } from './temporal';
|
|
3
|
+
export type TimeGridAnchor = 'cursor' | 'weekStart';
|
|
4
|
+
export type TimeGridFilter = 'all' | 'workDays';
|
|
5
|
+
/** The three views that render on the time grid. */
|
|
6
|
+
export type TimeGridView = 'day' | 'week' | 'workWeek';
|
|
7
|
+
export interface TimeGridRangeSpec {
|
|
8
|
+
anchor: TimeGridAnchor;
|
|
9
|
+
/** Days from the anchor (≥ 1), or as many complete columns as fit. */
|
|
10
|
+
span: number | 'responsive';
|
|
11
|
+
filter: TimeGridFilter;
|
|
12
|
+
/** Days per page turn (≥ 1), or `'span'` = as many as are shown. */
|
|
13
|
+
step: number | 'span';
|
|
14
|
+
}
|
|
15
|
+
export declare const TIME_GRID_PRESETS: Readonly<Record<'daySingle' | 'dayMulti' | 'week' | 'workWeek', TimeGridRangeSpec>>;
|
|
16
|
+
/**
|
|
17
|
+
* The spec a view renders with. `week` / `workWeek` are fixed presets
|
|
18
|
+
* by definition; `day` honours an explicit `builder.timeGridRange(...)`
|
|
19
|
+
* and otherwise follows `dayMode`.
|
|
20
|
+
*/
|
|
21
|
+
export declare function timeGridRangeSpecFor(view: TimeGridView, options?: {
|
|
22
|
+
dayMode?: 'single' | 'multiDay';
|
|
23
|
+
explicit?: TimeGridRangeSpec | null;
|
|
24
|
+
}): TimeGridRangeSpec;
|
|
25
|
+
export interface ResolveTimeGridRangeOptions {
|
|
26
|
+
spec: TimeGridRangeSpec;
|
|
27
|
+
cursor: Temporal.PlainDate;
|
|
28
|
+
/** 0 = Sun … 6 = Sat. Only read for the `weekStart` anchor. */
|
|
29
|
+
firstDayOfWeek: DayOfWeek;
|
|
30
|
+
/** Only read for the `workDays` filter. */
|
|
31
|
+
workDays: readonly DayOfWeek[];
|
|
32
|
+
/** The measured column count for a `'responsive'` span (≥ 1). */
|
|
33
|
+
responsiveColumns: number;
|
|
34
|
+
}
|
|
35
|
+
export interface TimeGridRange {
|
|
36
|
+
/** First day of the (unfiltered) span — the loader window's start. */
|
|
37
|
+
start: Temporal.PlainDate;
|
|
38
|
+
/** Length of the unfiltered span in days — the loader window's length. */
|
|
39
|
+
spanDays: number;
|
|
40
|
+
/** The dates actually rendered as columns, in order. */
|
|
41
|
+
days: Temporal.PlainDate[];
|
|
42
|
+
/** Days `next` / `prev` move the cursor. */
|
|
43
|
+
stepDays: number;
|
|
44
|
+
}
|
|
45
|
+
export declare function resolveTimeGridRange(opts: ResolveTimeGridRangeOptions): TimeGridRange;
|
|
46
|
+
/** The unfiltered span length for `spec` given the measured column count. */
|
|
47
|
+
export declare function resolveSpanDays(spec: TimeGridRangeSpec, responsiveColumns: number): number;
|
|
48
|
+
/** Days one page turn moves for `spec` whose span resolved to `spanDays`. */
|
|
49
|
+
export declare function timeGridStepDays(spec: TimeGridRangeSpec, spanDays: number): number;
|
|
50
|
+
//# sourceMappingURL=timeGridRange.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"timeGridRange.d.ts","sourceRoot":"","sources":["../../src/core/timeGridRange.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,KAAK,SAAS,EAAyC,MAAM,YAAY,CAAC;AAEnF,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,WAAW,CAAC;AACpD,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,UAAU,CAAC;AAChD,oDAAoD;AACpD,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,MAAM,GAAG,UAAU,CAAC;AAEvD,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,cAAc,CAAC;IACvB,sEAAsE;IACtE,IAAI,EAAE,MAAM,GAAG,YAAY,CAAC;IAC5B,MAAM,EAAE,cAAc,CAAC;IACvB,oEAAoE;IACpE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,iBAAiB,EAAE,QAAQ,CACtC,MAAM,CAAC,WAAW,GAAG,UAAU,GAAG,MAAM,GAAG,UAAU,EAAE,iBAAiB,CAAC,CAM1E,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,YAAY,EAClB,OAAO,GAAE;IAAE,OAAO,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IAAC,QAAQ,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAA;CAAO,GACrF,iBAAiB,CAKnB;AAED,MAAM,WAAW,2BAA2B;IAC1C,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,EAAE,QAAQ,CAAC,SAAS,CAAC;IAC3B,+DAA+D;IAC/D,cAAc,EAAE,SAAS,CAAC;IAC1B,2CAA2C;IAC3C,QAAQ,EAAE,SAAS,SAAS,EAAE,CAAC;IAC/B,iEAAiE;IACjE,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,aAAa;IAC5B,sEAAsE;IACtE,KAAK,EAAE,QAAQ,CAAC,SAAS,CAAC;IAC1B,0EAA0E;IAC1E,QAAQ,EAAE,MAAM,CAAC;IACjB,wDAAwD;IACxD,IAAI,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC3B,4CAA4C;IAC5C,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,2BAA2B,GAAG,aAAa,CAUrF;AAED,6EAA6E;AAC7E,wBAAgB,eAAe,CAAC,IAAI,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,GAAG,MAAM,CAG1F;AAED,6EAA6E;AAC7E,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,iBAAiB,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAGlF"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Timed-card anatomy — what the built-in Day / Week card shows, given
|
|
3
|
+
* how much of it is actually unobscured (iOS 4.0 parity).
|
|
4
|
+
*
|
|
5
|
+
* Overlapping cards form a content-aware cascade; a front card may
|
|
6
|
+
* cover most of the card behind it. When an overlapped card's width
|
|
7
|
+
* that stays visible falls below `detailMinWidth` (iOS
|
|
8
|
+
* `timedEventDetailMinimumWidth`, 112 pt), it switches to a
|
|
9
|
+
* **compact** anatomy: one end-truncated title line, no location row,
|
|
10
|
+
* no time row. Every card stays a separate tappable, draggable target.
|
|
11
|
+
* A card alone in its column is never compacted — a narrow column
|
|
12
|
+
* ellipsizes its rows instead. `detailMinWidth` of `0` disables the
|
|
13
|
+
* switch.
|
|
14
|
+
*
|
|
15
|
+
* The full anatomy grows with the card's height, using the same
|
|
16
|
+
* duration thresholds the cascade budgets for its content block:
|
|
17
|
+
* location from 34 minutes, time row from 52, a second title line
|
|
18
|
+
* from 70 (at the default 60 px per hour).
|
|
19
|
+
*
|
|
20
|
+
* Pure: no DOM, no Vue.
|
|
21
|
+
*/
|
|
22
|
+
export interface TimedCardAnatomy {
|
|
23
|
+
/** Compact policy engaged: one title line, nothing else. */
|
|
24
|
+
compact: boolean;
|
|
25
|
+
/** Title lines the card may use (clamped with an ellipsis). */
|
|
26
|
+
titleLines: 1 | 2;
|
|
27
|
+
showLocation: boolean;
|
|
28
|
+
showTime: boolean;
|
|
29
|
+
}
|
|
30
|
+
export interface TimedCardAnatomyInput {
|
|
31
|
+
/** Visible duration of the card in minutes. */
|
|
32
|
+
durationMinutes: number;
|
|
33
|
+
/**
|
|
34
|
+
* Width that stays unobscured by cards in front, in pixels. `null`
|
|
35
|
+
* when the column hasn't been measured yet (never compact then).
|
|
36
|
+
*/
|
|
37
|
+
visibleWidthPx: number | null;
|
|
38
|
+
/** iOS `timedEventDetailMinimumWidth`; `0` disables the compact switch. */
|
|
39
|
+
detailMinWidth: number;
|
|
40
|
+
/** The card shares its time with others (cascade lanes > 1). */
|
|
41
|
+
overlapped: boolean;
|
|
42
|
+
hasLocation: boolean;
|
|
43
|
+
}
|
|
44
|
+
export declare const DEFAULT_TIMED_EVENT_DETAIL_MIN_WIDTH = 112;
|
|
45
|
+
export declare const COMPACT_TIMED_CARD: TimedCardAnatomy;
|
|
46
|
+
export declare function resolveTimedCardAnatomy(input: TimedCardAnatomyInput): TimedCardAnatomy;
|
|
47
|
+
//# sourceMappingURL=timedCardAnatomy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"timedCardAnatomy.d.ts","sourceRoot":"","sources":["../../src/core/timedCardAnatomy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,4DAA4D;IAC5D,OAAO,EAAE,OAAO,CAAC;IACjB,+DAA+D;IAC/D,UAAU,EAAE,CAAC,GAAG,CAAC,CAAC;IAClB,YAAY,EAAE,OAAO,CAAC;IACtB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB;IACpC,+CAA+C;IAC/C,eAAe,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,2EAA2E;IAC3E,cAAc,EAAE,MAAM,CAAC;IACvB,gEAAgE;IAChE,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,oCAAoC,MAAM,CAAC;AAExD,eAAO,MAAM,kBAAkB,EAAE,gBAK/B,CAAC;AAEH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,qBAAqB,GAAG,gBAAgB,CAgBtF"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Temporal } from '@js-temporal/polyfill';
|
|
2
2
|
import { DayOfWeek } from './temporal';
|
|
3
3
|
import { CalendarView, ViewWindow } from './types';
|
|
4
|
+
import { TimeGridRangeSpec } from './timeGridRange';
|
|
4
5
|
/** Default `workDays` — Mon–Fri using the 0=Sun..6=Sat convention. */
|
|
5
6
|
export declare const DEFAULT_WORK_DAYS: readonly DayOfWeek[];
|
|
6
7
|
export interface ViewWindowOptions {
|
|
@@ -20,10 +21,17 @@ export interface ViewWindowOptions {
|
|
|
20
21
|
*/
|
|
21
22
|
timelineRangeDays?: number;
|
|
22
23
|
/**
|
|
23
|
-
*
|
|
24
|
-
* Ignored
|
|
24
|
+
* Resolved column count for a `'responsive'` time-grid span (the
|
|
25
|
+
* day view measures its container). Default 1. Ignored by views
|
|
26
|
+
* whose spec has a fixed span.
|
|
25
27
|
*/
|
|
26
28
|
dayColumnCount?: number;
|
|
29
|
+
/**
|
|
30
|
+
* Explicit time-grid range spec for the `day` view
|
|
31
|
+
* (`builder.timeGridRange(...)`). `week` / `workWeek` are fixed
|
|
32
|
+
* presets and ignore it. Without it the day view is one column.
|
|
33
|
+
*/
|
|
34
|
+
timeGridRange?: TimeGridRangeSpec | null;
|
|
27
35
|
/** Adjacent calendar months loaded around the cursor for the continuous month surface. */
|
|
28
36
|
monthBuffer?: number;
|
|
29
37
|
/**
|
|
@@ -56,11 +64,16 @@ export declare function windowContainsDate(window: ViewWindow, date: Temporal.Pl
|
|
|
56
64
|
/**
|
|
57
65
|
* Navigate forward / backward by one logical "page" in the view.
|
|
58
66
|
*
|
|
59
|
-
* - day: ±
|
|
60
|
-
* - week: ±7 days
|
|
67
|
+
* - day: ± the rendered column count (the time-grid preset's step)
|
|
68
|
+
* - week / workWeek: ±7 days
|
|
61
69
|
* - month: ±1 month (from the cursor's calendar month)
|
|
62
70
|
* - agenda: ± agendaLengthDays
|
|
63
71
|
*
|
|
72
|
+
* The builder resolves the time-grid views through
|
|
73
|
+
* `timeGridStepDays(spec, spanDays)` so an explicit
|
|
74
|
+
* `builder.timeGridRange(...)` step applies; this function keeps the
|
|
75
|
+
* preset semantics for direct callers.
|
|
76
|
+
*
|
|
64
77
|
* Returns the new cursor for the next computeViewWindow call.
|
|
65
78
|
*/
|
|
66
79
|
export declare function navigateCursor(view: CalendarView, cursor: Temporal.PlainDate, direction: 'prev' | 'next', agendaLengthDays?: number, timelineRangeDays?: number, dayColumnCount?: number): Temporal.PlainDate;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"viewWindow.d.ts","sourceRoot":"","sources":["../../src/core/viewWindow.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,KAAK,SAAS,EAA+B,MAAM,YAAY,CAAC;AAEzE,sEAAsE;AACtE,eAAO,MAAM,iBAAiB,EAAE,SAAS,SAAS,EAAoB,CAAC;AACvE,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"viewWindow.d.ts","sourceRoot":"","sources":["../../src/core/viewWindow.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,KAAK,SAAS,EAA+B,MAAM,YAAY,CAAC;AAEzE,sEAAsE;AACtE,eAAO,MAAM,iBAAiB,EAAE,SAAS,SAAS,EAAoB,CAAC;AACvE,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACxD,OAAO,EAGL,KAAK,iBAAiB,EACvB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,YAAY,CAAC;IACnB,uDAAuD;IACvD,MAAM,EAAE,QAAQ,CAAC,SAAS,CAAC;IAC3B,oEAAoE;IACpE,cAAc,EAAE,SAAS,CAAC;IAC1B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;IACzC,0FAA0F;IAC1F,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,iBAAiB,GAAG,UAAU,CA0GrE;AAID;;;;GAIG;AACH,wBAAiB,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,CAO/E;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,CAIzD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,CAAC,SAAS,GAAG,OAAO,CAIxF;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,cAAc,CAC5B,IAAI,EAAE,YAAY,EAClB,MAAM,EAAE,QAAQ,CAAC,SAAS,EAC1B,SAAS,EAAE,MAAM,GAAG,MAAM,EAC1B,gBAAgB,SAAK,EACrB,iBAAiB,SAAK,EACtB,cAAc,SAAI,GACjB,QAAQ,CAAC,SAAS,CA4BpB"}
|