courthive-components 3.15.0 → 3.15.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.
@@ -6,6 +6,15 @@ export declare class SchedulePageStore {
6
6
  constructor(config: SchedulePageConfig);
7
7
  getState(): SchedulePageState;
8
8
  setMatchUpCatalog(catalog: CatalogMatchUpItem[]): void;
9
+ /**
10
+ * Replace the date strip. Follows the consumer's `isActive` flag onto a new day
11
+ * when it moves, so a consumer that owns date selection stays in sync.
12
+ *
13
+ * Compared against the PREVIOUS active flag rather than against
14
+ * `selectedDate`: a user click through `selectDate` changes the selection
15
+ * without changing what the consumer declared, and re-syncing on every push
16
+ * would yank that click straight back.
17
+ */
9
18
  setScheduleDates(dates: ScheduleDate[]): void;
10
19
  setIssues(issues: ScheduleIssue[]): void;
11
20
  handleMatchUpDrop(payload: SchedulePageDragPayload, event: DragEvent): void;