foldkit 0.59.0 → 0.61.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.
- package/dist/calendar/arithmetic.d.ts +140 -0
- package/dist/calendar/arithmetic.d.ts.map +1 -0
- package/dist/calendar/arithmetic.js +169 -0
- package/dist/calendar/calendarDate.d.ts +162 -0
- package/dist/calendar/calendarDate.d.ts.map +1 -0
- package/dist/calendar/calendarDate.js +196 -0
- package/dist/calendar/comparison.d.ts +163 -0
- package/dist/calendar/comparison.d.ts.map +1 -0
- package/dist/calendar/comparison.js +134 -0
- package/dist/calendar/index.d.ts +7 -0
- package/dist/calendar/index.d.ts.map +1 -0
- package/dist/calendar/index.js +6 -0
- package/dist/calendar/info.d.ts +76 -0
- package/dist/calendar/info.d.ts.map +1 -0
- package/dist/calendar/info.js +125 -0
- package/dist/calendar/locale.d.ts +71 -0
- package/dist/calendar/locale.d.ts.map +1 -0
- package/dist/calendar/locale.js +171 -0
- package/dist/calendar/public.d.ts +2 -0
- package/dist/calendar/public.d.ts.map +1 -0
- package/dist/calendar/public.js +1 -0
- package/dist/calendar/today.d.ts +41 -0
- package/dist/calendar/today.d.ts.map +1 -0
- package/dist/calendar/today.js +33 -0
- package/dist/html/index.d.ts +3 -3
- package/dist/html/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/test/apps/disabledButton.d.ts +2 -2
- package/dist/ui/calendar/index.d.ts +242 -0
- package/dist/ui/calendar/index.d.ts.map +1 -0
- package/dist/ui/calendar/index.js +515 -0
- package/dist/ui/calendar/public.d.ts +3 -0
- package/dist/ui/calendar/public.d.ts.map +1 -0
- package/dist/ui/calendar/public.js +1 -0
- package/dist/ui/combobox/multi.d.ts +7 -4
- package/dist/ui/combobox/multi.d.ts.map +1 -1
- package/dist/ui/combobox/multi.js +3 -1
- package/dist/ui/combobox/multiPublic.d.ts +1 -1
- package/dist/ui/combobox/multiPublic.d.ts.map +1 -1
- package/dist/ui/combobox/multiPublic.js +1 -1
- package/dist/ui/combobox/public.d.ts +1 -1
- package/dist/ui/combobox/public.d.ts.map +1 -1
- package/dist/ui/combobox/public.js +1 -1
- package/dist/ui/combobox/shared.d.ts +3 -3
- package/dist/ui/combobox/shared.js +3 -3
- package/dist/ui/combobox/single.d.ts +8 -4
- package/dist/ui/combobox/single.d.ts.map +1 -1
- package/dist/ui/combobox/single.js +4 -1
- package/dist/ui/dialog/index.d.ts +1 -1
- package/dist/ui/dialog/index.js +2 -2
- package/dist/ui/dragAndDrop/index.d.ts +1 -1
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +1 -0
- package/dist/ui/listbox/multi.d.ts +7 -4
- package/dist/ui/listbox/multi.d.ts.map +1 -1
- package/dist/ui/listbox/multi.js +3 -1
- package/dist/ui/listbox/multiPublic.d.ts +1 -1
- package/dist/ui/listbox/multiPublic.d.ts.map +1 -1
- package/dist/ui/listbox/multiPublic.js +1 -1
- package/dist/ui/listbox/shared.d.ts +3 -3
- package/dist/ui/listbox/shared.js +2 -2
- package/dist/ui/listbox/single.d.ts +1 -1
- package/dist/ui/menu/index.d.ts +2 -2
- package/dist/ui/menu/index.js +2 -2
- package/dist/ui/popover/index.d.ts +2 -2
- package/dist/ui/popover/index.js +2 -2
- package/dist/ui/transition/index.d.ts +2 -2
- package/dist/ui/transition/index.d.ts.map +1 -1
- package/dist/ui/transition/index.js +2 -2
- package/dist/ui/transition/public.d.ts +1 -1
- package/dist/ui/transition/public.d.ts.map +1 -1
- package/dist/ui/transition/public.js +1 -1
- package/dist/ui/transition/schema.d.ts +3 -3
- package/dist/ui/transition/schema.d.ts.map +1 -1
- package/dist/ui/transition/schema.js +2 -2
- package/dist/ui/transition/update.js +1 -1
- package/package.json +9 -1
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
import { Option, Schema as S } from 'effect';
|
|
2
|
+
import * as Calendar from '../../calendar';
|
|
3
|
+
import type { CalendarDate } from '../../calendar';
|
|
4
|
+
import * as Command from '../../command';
|
|
5
|
+
import { type Attribute, type Html } from '../../html';
|
|
6
|
+
/** Schema for the calendar component's state. Tracks the visible month/year,
|
|
7
|
+
* the keyboard-focused and user-selected dates, and the configuration that
|
|
8
|
+
* governs navigation (locale, min/max, disabled days). */
|
|
9
|
+
export declare const Model: S.Struct<{
|
|
10
|
+
id: typeof S.String;
|
|
11
|
+
today: S.filter<S.Struct<{
|
|
12
|
+
year: typeof S.Int;
|
|
13
|
+
month: S.filter<typeof S.Int>;
|
|
14
|
+
day: S.filter<typeof S.Int>;
|
|
15
|
+
}>>;
|
|
16
|
+
viewYear: typeof S.Int;
|
|
17
|
+
viewMonth: S.filter<typeof S.Int>;
|
|
18
|
+
maybeFocusedDate: S.OptionFromSelf<S.filter<S.Struct<{
|
|
19
|
+
year: typeof S.Int;
|
|
20
|
+
month: S.filter<typeof S.Int>;
|
|
21
|
+
day: S.filter<typeof S.Int>;
|
|
22
|
+
}>>>;
|
|
23
|
+
maybeSelectedDate: S.OptionFromSelf<S.filter<S.Struct<{
|
|
24
|
+
year: typeof S.Int;
|
|
25
|
+
month: S.filter<typeof S.Int>;
|
|
26
|
+
day: S.filter<typeof S.Int>;
|
|
27
|
+
}>>>;
|
|
28
|
+
isGridFocused: typeof S.Boolean;
|
|
29
|
+
locale: S.Struct<{
|
|
30
|
+
firstDayOfWeek: S.Literal<["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>;
|
|
31
|
+
monthNames: S.Tuple<[typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String]>;
|
|
32
|
+
shortMonthNames: S.Tuple<[typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String]>;
|
|
33
|
+
dayNames: S.Tuple<[typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String]>;
|
|
34
|
+
shortDayNames: S.Tuple<[typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String, typeof S.String]>;
|
|
35
|
+
}>;
|
|
36
|
+
maybeMinDate: S.OptionFromSelf<S.filter<S.Struct<{
|
|
37
|
+
year: typeof S.Int;
|
|
38
|
+
month: S.filter<typeof S.Int>;
|
|
39
|
+
day: S.filter<typeof S.Int>;
|
|
40
|
+
}>>>;
|
|
41
|
+
maybeMaxDate: S.OptionFromSelf<S.filter<S.Struct<{
|
|
42
|
+
year: typeof S.Int;
|
|
43
|
+
month: S.filter<typeof S.Int>;
|
|
44
|
+
day: S.filter<typeof S.Int>;
|
|
45
|
+
}>>>;
|
|
46
|
+
disabledDaysOfWeek: S.Array$<S.Literal<["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>>;
|
|
47
|
+
disabledDates: S.Array$<S.filter<S.Struct<{
|
|
48
|
+
year: typeof S.Int;
|
|
49
|
+
month: S.filter<typeof S.Int>;
|
|
50
|
+
day: S.filter<typeof S.Int>;
|
|
51
|
+
}>>>;
|
|
52
|
+
}>;
|
|
53
|
+
export type Model = typeof Model.Type;
|
|
54
|
+
/** Sent when the user clicks a day cell in the grid. */
|
|
55
|
+
export declare const ClickedDay: import("../../schema").CallableTaggedStruct<"ClickedDay", {
|
|
56
|
+
date: S.filter<S.Struct<{
|
|
57
|
+
year: typeof S.Int;
|
|
58
|
+
month: S.filter<typeof S.Int>;
|
|
59
|
+
day: S.filter<typeof S.Int>;
|
|
60
|
+
}>>;
|
|
61
|
+
}>;
|
|
62
|
+
/** Sent when the user presses a key on the grid container. The update maps
|
|
63
|
+
* the key to a navigation or selection action. */
|
|
64
|
+
export declare const PressedKeyOnGrid: import("../../schema").CallableTaggedStruct<"PressedKeyOnGrid", {
|
|
65
|
+
key: typeof S.String;
|
|
66
|
+
isShift: typeof S.Boolean;
|
|
67
|
+
}>;
|
|
68
|
+
/** Sent when the user clicks the previous-month navigation button. */
|
|
69
|
+
export declare const ClickedPreviousMonthButton: import("../../schema").CallableTaggedStruct<"ClickedPreviousMonthButton", {}>;
|
|
70
|
+
/** Sent when the user clicks the next-month navigation button. */
|
|
71
|
+
export declare const ClickedNextMonthButton: import("../../schema").CallableTaggedStruct<"ClickedNextMonthButton", {}>;
|
|
72
|
+
/** Sent when the user picks a month from the month dropdown. */
|
|
73
|
+
export declare const SelectedMonthFromDropdown: import("../../schema").CallableTaggedStruct<"SelectedMonthFromDropdown", {
|
|
74
|
+
month: typeof S.Int;
|
|
75
|
+
}>;
|
|
76
|
+
/** Sent when the user picks a year from the year dropdown. */
|
|
77
|
+
export declare const SelectedYearFromDropdown: import("../../schema").CallableTaggedStruct<"SelectedYearFromDropdown", {
|
|
78
|
+
year: typeof S.Int;
|
|
79
|
+
}>;
|
|
80
|
+
/** Sent when the grid container receives DOM focus. */
|
|
81
|
+
export declare const FocusedGrid: import("../../schema").CallableTaggedStruct<"FocusedGrid", {}>;
|
|
82
|
+
/** Sent when the grid container loses DOM focus. */
|
|
83
|
+
export declare const BlurredGrid: import("../../schema").CallableTaggedStruct<"BlurredGrid", {}>;
|
|
84
|
+
/** Sent when a long-lived session's "today" reference should be refreshed. */
|
|
85
|
+
export declare const RefreshedToday: import("../../schema").CallableTaggedStruct<"RefreshedToday", {
|
|
86
|
+
today: S.filter<S.Struct<{
|
|
87
|
+
year: typeof S.Int;
|
|
88
|
+
month: S.filter<typeof S.Int>;
|
|
89
|
+
day: S.filter<typeof S.Int>;
|
|
90
|
+
}>>;
|
|
91
|
+
}>;
|
|
92
|
+
/** Sent when a FocusGrid command completes. */
|
|
93
|
+
export declare const CompletedFocusGrid: import("../../schema").CallableTaggedStruct<"CompletedFocusGrid", {}>;
|
|
94
|
+
/** Union of all messages the calendar component can produce. */
|
|
95
|
+
export declare const Message: S.Union<[import("../../schema").CallableTaggedStruct<"ClickedDay", {
|
|
96
|
+
date: S.filter<S.Struct<{
|
|
97
|
+
year: typeof S.Int;
|
|
98
|
+
month: S.filter<typeof S.Int>;
|
|
99
|
+
day: S.filter<typeof S.Int>;
|
|
100
|
+
}>>;
|
|
101
|
+
}>, import("../../schema").CallableTaggedStruct<"PressedKeyOnGrid", {
|
|
102
|
+
key: typeof S.String;
|
|
103
|
+
isShift: typeof S.Boolean;
|
|
104
|
+
}>, import("../../schema").CallableTaggedStruct<"ClickedPreviousMonthButton", {}>, import("../../schema").CallableTaggedStruct<"ClickedNextMonthButton", {}>, import("../../schema").CallableTaggedStruct<"SelectedMonthFromDropdown", {
|
|
105
|
+
month: typeof S.Int;
|
|
106
|
+
}>, import("../../schema").CallableTaggedStruct<"SelectedYearFromDropdown", {
|
|
107
|
+
year: typeof S.Int;
|
|
108
|
+
}>, import("../../schema").CallableTaggedStruct<"FocusedGrid", {}>, import("../../schema").CallableTaggedStruct<"BlurredGrid", {}>, import("../../schema").CallableTaggedStruct<"RefreshedToday", {
|
|
109
|
+
today: S.filter<S.Struct<{
|
|
110
|
+
year: typeof S.Int;
|
|
111
|
+
month: S.filter<typeof S.Int>;
|
|
112
|
+
day: S.filter<typeof S.Int>;
|
|
113
|
+
}>>;
|
|
114
|
+
}>, import("../../schema").CallableTaggedStruct<"CompletedFocusGrid", {}>]>;
|
|
115
|
+
export type Message = typeof Message.Type;
|
|
116
|
+
/** Emitted when the visible month changes due to navigation. Consumers of an
|
|
117
|
+
* inline calendar may use this to load month-scoped data (holidays, events).
|
|
118
|
+
*
|
|
119
|
+
* Date selection does NOT use OutMessage — consumers subscribe via the
|
|
120
|
+
* `onSelectedDate` callback in `ViewConfig`, matching the Listbox/Popover
|
|
121
|
+
* controlled-component pattern. Use `Calendar.selectDate(model, date)` to
|
|
122
|
+
* write back when handling the callback. */
|
|
123
|
+
export declare const ChangedViewMonth: import("../../schema").CallableTaggedStruct<"ChangedViewMonth", {
|
|
124
|
+
year: typeof S.Int;
|
|
125
|
+
month: typeof S.Int;
|
|
126
|
+
}>;
|
|
127
|
+
/** The calendar's OutMessage. Only one variant — `ChangedViewMonth` — which
|
|
128
|
+
* fires when navigation shifts the visible month. Date selection goes through
|
|
129
|
+
* the `onSelectedDate` ViewConfig callback, not OutMessage. */
|
|
130
|
+
export declare const OutMessage: import("../../schema").CallableTaggedStruct<"ChangedViewMonth", {
|
|
131
|
+
year: typeof S.Int;
|
|
132
|
+
month: typeof S.Int;
|
|
133
|
+
}>;
|
|
134
|
+
export type OutMessage = typeof OutMessage.Type;
|
|
135
|
+
/** Configuration for creating a calendar model with `init`. */
|
|
136
|
+
export type InitConfig = Readonly<{
|
|
137
|
+
id: string;
|
|
138
|
+
today: CalendarDate;
|
|
139
|
+
maybeInitialSelectedDate?: Option.Option<CalendarDate>;
|
|
140
|
+
locale?: Calendar.LocaleConfig;
|
|
141
|
+
maybeMinDate?: Option.Option<CalendarDate>;
|
|
142
|
+
maybeMaxDate?: Option.Option<CalendarDate>;
|
|
143
|
+
disabledDaysOfWeek?: ReadonlyArray<Calendar.DayOfWeek>;
|
|
144
|
+
disabledDates?: ReadonlyArray<CalendarDate>;
|
|
145
|
+
}>;
|
|
146
|
+
/** Creates an initial calendar model. The view month defaults to the month
|
|
147
|
+
* of the initial selected date, or today if no date is pre-selected. */
|
|
148
|
+
export declare const init: (config: InitConfig) => Model;
|
|
149
|
+
type UpdateReturn = readonly [
|
|
150
|
+
Model,
|
|
151
|
+
ReadonlyArray<Command.Command<Message>>,
|
|
152
|
+
Option.Option<OutMessage>
|
|
153
|
+
];
|
|
154
|
+
/** Focuses the calendar grid container. */
|
|
155
|
+
export declare const FocusGrid: Command.CommandDefinition<"FocusGrid", {
|
|
156
|
+
readonly _tag: "CompletedFocusGrid";
|
|
157
|
+
}>;
|
|
158
|
+
/** Builds a command that focuses the calendar grid container. Parent
|
|
159
|
+
* components like DatePicker dispatch this after opening to hand focus to
|
|
160
|
+
* the grid's keyboard layer. */
|
|
161
|
+
export declare const focusGrid: (modelId: string) => Command.Command<Message>;
|
|
162
|
+
/** Programmatically selects a date on the calendar, committing it as the
|
|
163
|
+
* chosen value and moving the cursor onto it. Use this in controlled-mode
|
|
164
|
+
* handlers (when the view's `onSelectedDate` callback is provided) to write
|
|
165
|
+
* the selection back to the calendar's internal state.
|
|
166
|
+
*
|
|
167
|
+
* Equivalent to dispatching `ClickedDay({ date })` through `update`. */
|
|
168
|
+
export declare const selectDate: (model: Model, date: CalendarDate) => UpdateReturn;
|
|
169
|
+
/** Processes a calendar message and returns the next model, commands, and
|
|
170
|
+
* optional OutMessage. */
|
|
171
|
+
export declare const update: (model: Model, message: Message) => UpdateReturn;
|
|
172
|
+
/** Information about a single day cell in the rendered calendar grid. */
|
|
173
|
+
export type DayCell<ParentMessage> = Readonly<{
|
|
174
|
+
date: CalendarDate;
|
|
175
|
+
label: string;
|
|
176
|
+
cellAttributes: ReadonlyArray<Attribute<ParentMessage>>;
|
|
177
|
+
buttonAttributes: ReadonlyArray<Attribute<ParentMessage>>;
|
|
178
|
+
isSelected: boolean;
|
|
179
|
+
isFocused: boolean;
|
|
180
|
+
isToday: boolean;
|
|
181
|
+
isInViewMonth: boolean;
|
|
182
|
+
isDisabled: boolean;
|
|
183
|
+
}>;
|
|
184
|
+
/** A column header for the grid's first row (day-of-week labels). */
|
|
185
|
+
export type ColumnHeader<ParentMessage> = Readonly<{
|
|
186
|
+
name: string;
|
|
187
|
+
attributes: ReadonlyArray<Attribute<ParentMessage>>;
|
|
188
|
+
}>;
|
|
189
|
+
/** A single week row in the calendar grid, carrying its own row attributes
|
|
190
|
+
* (role, aria-rowindex) alongside its 7 day cells. */
|
|
191
|
+
export type Week<ParentMessage> = Readonly<{
|
|
192
|
+
attributes: ReadonlyArray<Attribute<ParentMessage>>;
|
|
193
|
+
cells: ReadonlyArray<DayCell<ParentMessage>>;
|
|
194
|
+
}>;
|
|
195
|
+
/** Attribute groups and derived data the calendar component provides to the
|
|
196
|
+
* consumer's `toView` callback. */
|
|
197
|
+
export type CalendarAttributes<ParentMessage> = Readonly<{
|
|
198
|
+
root: ReadonlyArray<Attribute<ParentMessage>>;
|
|
199
|
+
previousMonthButton: ReadonlyArray<Attribute<ParentMessage>>;
|
|
200
|
+
nextMonthButton: ReadonlyArray<Attribute<ParentMessage>>;
|
|
201
|
+
heading: Readonly<{
|
|
202
|
+
id: string;
|
|
203
|
+
text: string;
|
|
204
|
+
}>;
|
|
205
|
+
monthSelect: ReadonlyArray<Attribute<ParentMessage>>;
|
|
206
|
+
monthOptions: ReadonlyArray<Readonly<{
|
|
207
|
+
value: number;
|
|
208
|
+
label: string;
|
|
209
|
+
}>>;
|
|
210
|
+
yearSelect: ReadonlyArray<Attribute<ParentMessage>>;
|
|
211
|
+
yearOptions: ReadonlyArray<number>;
|
|
212
|
+
grid: ReadonlyArray<Attribute<ParentMessage>>;
|
|
213
|
+
headerRow: ReadonlyArray<Attribute<ParentMessage>>;
|
|
214
|
+
columnHeaders: ReadonlyArray<ColumnHeader<ParentMessage>>;
|
|
215
|
+
weeks: ReadonlyArray<Week<ParentMessage>>;
|
|
216
|
+
}>;
|
|
217
|
+
/** Configuration for rendering a calendar with `view`. */
|
|
218
|
+
export type ViewConfig<ParentMessage> = Readonly<{
|
|
219
|
+
model: Model;
|
|
220
|
+
toParentMessage: (message: Message) => ParentMessage;
|
|
221
|
+
toView: (attributes: CalendarAttributes<ParentMessage>) => Html;
|
|
222
|
+
/** Optional callback invoked when the user commits a date via click, Enter,
|
|
223
|
+
* or Space. When provided, the view dispatches the callback directly (the
|
|
224
|
+
* controlled pattern — parent owns the event). When omitted, the calendar
|
|
225
|
+
* manages its own `maybeSelectedDate` state automatically (uncontrolled).
|
|
226
|
+
* In controlled mode, use `Calendar.selectDate(model, date)` to write the
|
|
227
|
+
* selection back to the calendar's internal state. */
|
|
228
|
+
onSelectedDate?: (date: CalendarDate) => ParentMessage;
|
|
229
|
+
previousMonthLabel?: string;
|
|
230
|
+
nextMonthLabel?: string;
|
|
231
|
+
monthSelectLabel?: string;
|
|
232
|
+
yearSelectLabel?: string;
|
|
233
|
+
}>;
|
|
234
|
+
/** Renders an accessible calendar grid. Builds ARIA attribute groups (grid,
|
|
235
|
+
* row, gridcell, column header) plus the derived month grid, then delegates
|
|
236
|
+
* layout to the consumer's `toView` callback. */
|
|
237
|
+
export declare const view: <ParentMessage>(config: ViewConfig<ParentMessage>) => Html;
|
|
238
|
+
/** Creates a memoized calendar view. Static config is captured in a closure;
|
|
239
|
+
* only `model` and `toParentMessage` are compared per render via `createLazy`. */
|
|
240
|
+
export declare const lazy: <ParentMessage>(staticConfig: Omit<ViewConfig<ParentMessage>, "model" | "toParentMessage">) => ((model: Model, toParentMessage: ViewConfig<ParentMessage>["toParentMessage"]) => Html);
|
|
241
|
+
export {};
|
|
242
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/calendar/index.ts"],"names":[],"mappings":"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"}
|