@dereekb/dbx-form 13.10.5 → 13.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-form",
3
- "version": "13.10.5",
3
+ "version": "13.10.6",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.2.8",
6
6
  "@angular/common": "21.2.10",
@@ -10,13 +10,13 @@
10
10
  "@angular/material-date-fns-adapter": "21.2.8",
11
11
  "@angular/platform-browser": "21.2.10",
12
12
  "@bobbyquantum/ngx-editor": "21.0.0",
13
- "@dereekb/date": "13.10.5",
14
- "@dereekb/dbx-core": "13.10.5",
15
- "@dereekb/dbx-web": "13.10.5",
16
- "@dereekb/model": "13.10.5",
17
- "@dereekb/rxjs": "13.10.5",
18
- "@dereekb/util": "13.10.5",
19
- "@dereekb/vitest": "13.10.5",
13
+ "@dereekb/date": "13.10.6",
14
+ "@dereekb/dbx-core": "13.10.6",
15
+ "@dereekb/dbx-web": "13.10.6",
16
+ "@dereekb/model": "13.10.6",
17
+ "@dereekb/rxjs": "13.10.6",
18
+ "@dereekb/util": "13.10.6",
19
+ "@dereekb/vitest": "13.10.6",
20
20
  "@ng-forge/dynamic-forms": "~0.8.0",
21
21
  "@ng-forge/dynamic-forms-material": "~0.8.0",
22
22
  "@ng-web-apis/geolocation": "^5.2.0",
@@ -266,6 +266,18 @@ declare class DbxCalendarScheduleSelectionStore extends ComponentStore<CalendarS
266
266
  timezone: string;
267
267
  }> | undefined>;
268
268
  readonly currentSelectionValueDateCellDurationSpanExpansion$: Observable<DateCellDurationSpan<DateCell>[]>;
269
+ /**
270
+ * State-anchored coordinate contract: the emitted indexes are anchored at
271
+ * `state.start` (== `filter.start` when a filter is set, otherwise `today` from
272
+ * `initialCalendarScheduleSelectionState()`). Consumers can use them directly
273
+ * with `state.indexFactory(date)`.
274
+ *
275
+ * This holds because `currentSelectionValue.dateScheduleRange.start` always
276
+ * equals `state.start` for filter-relative outputs, so the expansion's `i`
277
+ * values share the same anchor. If a future change re-introduces a non-
278
+ * `state.start` output anchor, translate output indexes back via
279
+ * `state.indexFactory(dateScheduleRange.start)` here.
280
+ */
269
281
  readonly selectionValueSelectedIndexes$: Observable<Set<DateCellIndex>>;
270
282
  readonly selectionValueSelectedDates$: Observable<Set<ISO8601DayString>>;
271
283
  readonly selectionValue$: Observable<CalendarScheduleSelectionValue>;