@design-system-rte/core 1.6.5 → 1.7.0

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.
Files changed (27) hide show
  1. package/components/datepicker/datepicker-menu-focus-order.d.ts +4 -0
  2. package/components/datepicker/datepicker-menu-focus-order.d.ts.map +1 -0
  3. package/components/datepicker/datepicker-menu-focus-order.js +34 -0
  4. package/components/datepicker/datepicker.constants.d.ts +23 -0
  5. package/components/datepicker/datepicker.constants.d.ts.map +1 -0
  6. package/components/datepicker/datepicker.constants.js +36 -0
  7. package/components/datepicker/datepicker.interface.d.ts +59 -0
  8. package/components/datepicker/datepicker.utils.d.ts +132 -0
  9. package/components/datepicker/datepicker.utils.d.ts.map +1 -0
  10. package/components/datepicker/datepicker.utils.js +539 -0
  11. package/components/datepicker/index.d.ts +6 -0
  12. package/components/datepicker/index.d.ts.map +1 -0
  13. package/components/datepicker/index.js +4 -0
  14. package/components/datepicker/segmented-date-field.d.ts +27 -0
  15. package/components/datepicker/segmented-date-field.d.ts.map +1 -0
  16. package/components/datepicker/segmented-date-field.js +318 -0
  17. package/components/file-upload/file-upload.interface.d.ts +26 -0
  18. package/components/file-upload/file-upload.util.d.ts +7 -0
  19. package/components/file-upload/file-upload.util.d.ts.map +1 -0
  20. package/components/file-upload/file-upload.util.js +16 -0
  21. package/components/file-upload/index.d.ts +2 -0
  22. package/components/file-upload/index.d.ts.map +1 -0
  23. package/components/file-upload/index.js +1 -0
  24. package/components/toast/toast.utils.d.ts +1 -1
  25. package/index.d.ts +2 -0
  26. package/index.js +2 -0
  27. package/package.json +9 -1
@@ -0,0 +1,4 @@
1
+ import type { DatepickerCalendarType } from "./datepicker.interface";
2
+ export declare function collectDatepickerMenuTabOrder(menuHost: HTMLElement, calendarType: DatepickerCalendarType, activeCell: HTMLElement | null): HTMLElement[];
3
+ export declare function getDatepickerMenuInitialFocusIndex(calendarType: DatepickerCalendarType, orderedFocusables: HTMLElement[], activeCell: HTMLElement | null): number;
4
+ //# sourceMappingURL=datepicker-menu-focus-order.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"datepicker-menu-focus-order.d.ts","sourceRoot":"","sources":["../../../components/datepicker/datepicker-menu-focus-order.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAarE,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,WAAW,EACrB,YAAY,EAAE,sBAAsB,EACpC,UAAU,EAAE,WAAW,GAAG,IAAI,GAC7B,WAAW,EAAE,CAgBf;AAED,wBAAgB,kCAAkC,CAChD,YAAY,EAAE,sBAAsB,EACpC,iBAAiB,EAAE,WAAW,EAAE,EAChC,UAAU,EAAE,WAAW,GAAG,IAAI,GAC7B,MAAM,CASR"}
@@ -0,0 +1,34 @@
1
+ import { DATEPICKER_MENU_FOOTER_TAB_KEYS, DATEPICKER_MENU_HEADER_TAB_KEYS_COMPACT, DATEPICKER_TAB_DATA, } from "./datepicker.constants";
2
+ import { getDatepickerMenuRestTabKeysInOrder, resolveDatepickerMenuFocusableElement } from "./datepicker.utils";
3
+ function resolveTabDataKeysToFocusables(menuHost, tabDataKeys) {
4
+ return tabDataKeys
5
+ .map((tabDataKey) => menuHost.querySelector(`[data-datepicker-tab="${DATEPICKER_TAB_DATA[tabDataKey]}"]`))
6
+ .filter((element) => element instanceof HTMLElement)
7
+ .map(resolveDatepickerMenuFocusableElement);
8
+ }
9
+ export function collectDatepickerMenuTabOrder(menuHost, calendarType, activeCell) {
10
+ if (calendarType === "day") {
11
+ const tabKeys = getDatepickerMenuRestTabKeysInOrder(calendarType);
12
+ const rest = resolveTabDataKeysToFocusables(menuHost, tabKeys);
13
+ if (activeCell) {
14
+ return [activeCell, ...rest];
15
+ }
16
+ return rest;
17
+ }
18
+ const headerFocusables = resolveTabDataKeysToFocusables(menuHost, DATEPICKER_MENU_HEADER_TAB_KEYS_COMPACT);
19
+ const footerFocusables = resolveTabDataKeysToFocusables(menuHost, DATEPICKER_MENU_FOOTER_TAB_KEYS);
20
+ if (activeCell) {
21
+ return [...headerFocusables, activeCell, ...footerFocusables];
22
+ }
23
+ return [...headerFocusables, ...footerFocusables];
24
+ }
25
+ export function getDatepickerMenuInitialFocusIndex(calendarType, orderedFocusables, activeCell) {
26
+ if (calendarType === "day") {
27
+ return 0;
28
+ }
29
+ if (!activeCell) {
30
+ return 0;
31
+ }
32
+ const index = orderedFocusables.indexOf(activeCell);
33
+ return index >= 0 ? index : 0;
34
+ }
@@ -0,0 +1,23 @@
1
+ export declare const DATEPICKER_DEFAULT_WIDTH = "248px";
2
+ export declare const DATEPICKER_DEFAULT_LOCALE = "fr-FR";
3
+ export declare const DATEPICKER_DEFAULT_CALENDAR_TYPE: "day";
4
+ export declare const DATEPICKER_ARIA_OPEN_CALENDAR = "Ouvrir le calendrier";
5
+ export declare const DATEPICKER_ARIA_CHANGE_DATE_PREFIX = "Changer la date, ";
6
+ export declare const DATEPICKER_YEAR_GRID_PAGE_SIZE = 11;
7
+ export declare const DATEPICKER_TAB_DATA: {
8
+ readonly cancel: "cancel";
9
+ readonly confirm: "confirm";
10
+ readonly navPrevYear: "nav-prev-year";
11
+ readonly navPrevMonth: "nav-prev-month";
12
+ readonly monthLabel: "month-label";
13
+ readonly navNextMonth: "nav-next-month";
14
+ readonly navNextYear: "nav-next-year";
15
+ readonly navPrevCompact: "nav-prev-compact";
16
+ readonly navNextCompact: "nav-next-compact";
17
+ };
18
+ export type DatepickerTabDataKey = keyof typeof DATEPICKER_TAB_DATA;
19
+ export declare const DATEPICKER_MENU_REST_TAB_KEYS_DAY: readonly ["cancel", "confirm", "navPrevYear", "navPrevMonth", "monthLabel", "navNextMonth", "navNextYear"];
20
+ export declare const DATEPICKER_MENU_HEADER_TAB_KEYS_COMPACT: readonly ["navPrevCompact", "monthLabel", "navNextCompact"];
21
+ export declare const DATEPICKER_MENU_FOOTER_TAB_KEYS: readonly ["cancel", "confirm"];
22
+ export declare const DATEPICKER_MENU_REST_TAB_KEYS_COMPACT: readonly ["navPrevCompact", "monthLabel", "navNextCompact", "cancel", "confirm"];
23
+ //# sourceMappingURL=datepicker.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"datepicker.constants.d.ts","sourceRoot":"","sources":["../../../components/datepicker/datepicker.constants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,wBAAwB,UAAU,CAAC;AAEhD,eAAO,MAAM,yBAAyB,UAAU,CAAC;AAEjD,eAAO,MAAM,gCAAgC,OAAkD,CAAC;AAEhG,eAAO,MAAM,6BAA6B,yBAAyB,CAAC;AAEpE,eAAO,MAAM,kCAAkC,sBAAsB,CAAC;AAEtE,eAAO,MAAM,8BAA8B,KAAK,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;CAUtB,CAAC;AAEX,MAAM,MAAM,oBAAoB,GAAG,MAAM,OAAO,mBAAmB,CAAC;AAEpE,eAAO,MAAM,iCAAiC,4GAQM,CAAC;AAErD,eAAO,MAAM,uCAAuC,6DAIA,CAAC;AAErD,eAAO,MAAM,+BAA+B,gCAA2E,CAAC;AAExH,eAAO,MAAM,qCAAqC,kFAGE,CAAC"}
@@ -0,0 +1,36 @@
1
+ export const DATEPICKER_DEFAULT_WIDTH = "248px";
2
+ export const DATEPICKER_DEFAULT_LOCALE = "fr-FR";
3
+ export const DATEPICKER_DEFAULT_CALENDAR_TYPE = "day";
4
+ export const DATEPICKER_ARIA_OPEN_CALENDAR = "Ouvrir le calendrier";
5
+ export const DATEPICKER_ARIA_CHANGE_DATE_PREFIX = "Changer la date, ";
6
+ export const DATEPICKER_YEAR_GRID_PAGE_SIZE = 11;
7
+ export const DATEPICKER_TAB_DATA = {
8
+ cancel: "cancel",
9
+ confirm: "confirm",
10
+ navPrevYear: "nav-prev-year",
11
+ navPrevMonth: "nav-prev-month",
12
+ monthLabel: "month-label",
13
+ navNextMonth: "nav-next-month",
14
+ navNextYear: "nav-next-year",
15
+ navPrevCompact: "nav-prev-compact",
16
+ navNextCompact: "nav-next-compact",
17
+ };
18
+ export const DATEPICKER_MENU_REST_TAB_KEYS_DAY = [
19
+ "cancel",
20
+ "confirm",
21
+ "navPrevYear",
22
+ "navPrevMonth",
23
+ "monthLabel",
24
+ "navNextMonth",
25
+ "navNextYear",
26
+ ];
27
+ export const DATEPICKER_MENU_HEADER_TAB_KEYS_COMPACT = [
28
+ "navPrevCompact",
29
+ "monthLabel",
30
+ "navNextCompact",
31
+ ];
32
+ export const DATEPICKER_MENU_FOOTER_TAB_KEYS = ["cancel", "confirm"];
33
+ export const DATEPICKER_MENU_REST_TAB_KEYS_COMPACT = [
34
+ ...DATEPICKER_MENU_HEADER_TAB_KEYS_COMPACT,
35
+ ...DATEPICKER_MENU_FOOTER_TAB_KEYS,
36
+ ];
@@ -0,0 +1,59 @@
1
+ export type DatepickerCalendarType = "day" | "month" | "year";
2
+
3
+ export type DatepickerDayNavAction = "prevYear" | "prevMonth" | "nextMonth" | "nextYear";
4
+
5
+ export type DatepickerCompactNavStep = "previous" | "next";
6
+
7
+ export type DatepickerDayCellType = "default" | "today" | "selected" | "prev/next" | "empty";
8
+
9
+ export interface DatepickerDayCell {
10
+ readonly date: Date;
11
+ readonly label: string;
12
+ readonly cellType: DatepickerDayCellType;
13
+ readonly isDisabled: boolean;
14
+ }
15
+
16
+ export interface DatepickerMonthCell {
17
+ readonly monthIndex: number;
18
+ readonly label: string;
19
+ readonly isDisabled: boolean;
20
+ readonly isCurrent: boolean;
21
+ readonly isSelected: boolean;
22
+ }
23
+
24
+ export interface DatepickerYearCell {
25
+ readonly year: number;
26
+ readonly label: string;
27
+ readonly isDisabled: boolean;
28
+ readonly isCurrent: boolean;
29
+ readonly isSelected: boolean;
30
+ }
31
+
32
+ export interface NavigateViewDateParams {
33
+ viewDate: Date;
34
+ calendarType: DatepickerCalendarType;
35
+ dayAction?: DatepickerDayNavAction;
36
+ compactStep?: DatepickerCompactNavStep;
37
+ }
38
+
39
+ export interface DatepickerDisabledConstraints {
40
+ minDate?: Date;
41
+ maxDate?: Date;
42
+ disabledDates?: readonly Date[];
43
+ }
44
+
45
+ export type DatepickerTextInputApplyResult =
46
+ | {
47
+ outcome: "committed";
48
+ date: Date;
49
+ monthAnchorDay: number;
50
+ maskedValue: string;
51
+ }
52
+ | {
53
+ outcome: "cleared";
54
+ maskedValue: string;
55
+ }
56
+ | {
57
+ outcome: "partial";
58
+ maskedValue: string;
59
+ };
@@ -0,0 +1,132 @@
1
+ import { type DatepickerTabDataKey } from "./datepicker.constants";
2
+ import type { DatepickerCalendarType, DatepickerDayCell, DatepickerDisabledConstraints, DatepickerMonthCell, DatepickerTextInputApplyResult, DatepickerYearCell, NavigateViewDateParams } from "./datepicker.interface";
3
+ export interface DdMmYyyyDigitParts {
4
+ dayDigits: string;
5
+ monthDigits: string;
6
+ yearDigits: string;
7
+ }
8
+ export declare function parseDdMmYyyyMaskedString(value: string): DdMmYyyyDigitParts;
9
+ export declare function buildMaskedDdMmYyyyFromDigitParts(parts: DdMmYyyyDigitParts): string;
10
+ export declare function getDatepickerMenuRestTabKeysInOrder(calendarType: DatepickerCalendarType): readonly DatepickerTabDataKey[];
11
+ export declare function resolveDatepickerMenuFocusableElement(element: HTMLElement): HTMLElement;
12
+ export declare function startOfMonth(date: Date): Date;
13
+ export declare function maskDateInput(value: string): string;
14
+ export declare function formatDate(date: Date): string;
15
+ export declare function getDatepickerCalendarButtonAriaLabel(selectedDate: Date | null): string;
16
+ export declare function parseDate(value: string): Date | null;
17
+ export declare function isSameDay(first: Date, second: Date): boolean;
18
+ export declare function isBeforeDay(first: Date, second: Date): boolean;
19
+ export declare function isAfterDay(first: Date, second: Date): boolean;
20
+ export declare function startOfDay(date: Date): Date;
21
+ export declare function getLastDayOfMonth(year: number, monthIndex: number): number;
22
+ export declare function projectDayToMonthAnchor(desiredDayOfMonth: number, year: number, monthIndex: number): Date;
23
+ export declare function addDays(date: Date, amount: number): Date;
24
+ export declare function addMonths(date: Date, amount: number): Date;
25
+ export declare function addYears(date: Date, amount: number): Date;
26
+ export declare function getDecadeStartYear(year: number): number;
27
+ export declare function navigateViewDate(params: NavigateViewDateParams): Date;
28
+ export declare function isDateDisabled(params: {
29
+ date: Date;
30
+ minDate?: Date;
31
+ maxDate?: Date;
32
+ disabledDates?: readonly Date[];
33
+ }): boolean;
34
+ export declare function getMonthLabel(date: Date, locale?: string): string;
35
+ export declare function getYearLabel(date: Date, locale?: string): string;
36
+ export declare function getDecadeRangeLabel(date: Date): string;
37
+ export declare function getWeekdayShortLabels(locale?: string): string[];
38
+ export declare function resolveInitialCalendarDay(params: {
39
+ pendingDate: Date | null;
40
+ selectedDate: Date | null;
41
+ dayCells: DatepickerDayCell[];
42
+ }): Date;
43
+ export declare function getDayCellIndexForDate(dayCells: DatepickerDayCell[], date: Date): number;
44
+ export declare function getDayGridCellCountForViewMonth(viewDate: Date): number;
45
+ export declare function buildDayGrid(params: {
46
+ viewDate: Date;
47
+ selectedDate: Date | null;
48
+ minDate?: Date;
49
+ maxDate?: Date;
50
+ disabledDates?: readonly Date[];
51
+ }): DatepickerDayCell[];
52
+ export declare function buildMonthGrid(params: {
53
+ viewDate: Date;
54
+ selectedDate: Date | null;
55
+ minDate?: Date;
56
+ maxDate?: Date;
57
+ disabledDates?: readonly Date[];
58
+ locale?: string;
59
+ }): DatepickerMonthCell[];
60
+ export declare function buildYearGrid(params: {
61
+ viewDate: Date;
62
+ selectedDate: Date | null;
63
+ minDate?: Date;
64
+ maxDate?: Date;
65
+ disabledDates?: readonly Date[];
66
+ }): DatepickerYearCell[];
67
+ export declare function getNextGridCellIndex(params: {
68
+ currentIndex: number;
69
+ key: string;
70
+ columnCount: number;
71
+ cellCount: number;
72
+ }): number | null;
73
+ export type DatepickerGridArrowLayout = "day" | "monthYear";
74
+ export declare function getDatepickerGridArrowDelta(key: string, layout: DatepickerGridArrowLayout): number;
75
+ export declare function getDayOfMonthOrNull(date: Date | null): number | null;
76
+ export declare function resolveDatepickerMenuOpenState(params: {
77
+ textValue: string;
78
+ constraints: DatepickerDisabledConstraints;
79
+ pendingDate: Date | null;
80
+ selectedDate: Date | null;
81
+ fallbackViewDate?: Date;
82
+ }): {
83
+ viewDate: Date;
84
+ pendingForMenu: Date | null;
85
+ menuInitialActiveDate: Date;
86
+ monthNavigationAnchorDay: number | null;
87
+ };
88
+ export declare function applyDatepickerTextInputChange(params: {
89
+ rawValue: string;
90
+ constraints: DatepickerDisabledConstraints;
91
+ }): DatepickerTextInputApplyResult;
92
+ export declare function tryProjectPendingDateToViewMonth(params: {
93
+ anchorDay: number | null;
94
+ viewDate: Date;
95
+ constraints: DatepickerDisabledConstraints;
96
+ }): Date | null;
97
+ export declare function normalizeDatepickerMenuSelectionDate(params: {
98
+ date: Date;
99
+ constraints: DatepickerDisabledConstraints;
100
+ }): Date | null;
101
+ export declare function resolveDatepickerMenuKeyboardDayNavigation(params: {
102
+ focusTargetDay: Date;
103
+ constraints: DatepickerDisabledConstraints;
104
+ }): {
105
+ viewDate: Date;
106
+ menuInitialActiveDate: Date;
107
+ } | null;
108
+ export declare function resolveDatepickerMenuKeyboardMonthNavigation(params: {
109
+ focusTargetMonthStart: Date;
110
+ constraints: DatepickerDisabledConstraints;
111
+ }): {
112
+ viewDate: Date;
113
+ menuInitialActiveDate: Date;
114
+ } | null;
115
+ export declare function resolveDatepickerMenuKeyboardYearNavigation(params: {
116
+ focusTargetYear: number;
117
+ constraints: DatepickerDisabledConstraints;
118
+ }): {
119
+ viewDate: Date;
120
+ menuInitialActiveDate: Date;
121
+ } | null;
122
+ export declare function buildRestoreCommittedDatepickerFieldState(params: {
123
+ selectedDate: Date | null;
124
+ }): {
125
+ pendingDate: Date | null;
126
+ textValue: string;
127
+ };
128
+ export declare function alignViewDateToSelectedMonthIfNeeded(params: {
129
+ viewDate: Date;
130
+ selectedDate: Date;
131
+ }): Date;
132
+ //# sourceMappingURL=datepicker.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"datepicker.utils.d.ts","sourceRoot":"","sources":["../../../components/datepicker/datepicker.utils.ts"],"names":[],"mappings":"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"}