sa2kit 3.6.0 → 3.8.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/business/index.d.mts +2 -7
- package/dist/business/index.d.ts +2 -7
- package/dist/business/index.js +1761 -8045
- package/dist/business/index.js.map +1 -1
- package/dist/business/index.mjs +1169 -7452
- package/dist/business/index.mjs.map +1 -1
- package/dist/business/portfolio/index.d.mts +1 -2
- package/dist/business/portfolio/index.d.ts +1 -2
- package/dist/{chunk-ZJLS5JU5.mjs → chunk-6KD4CD7O.mjs} +7 -16
- package/dist/chunk-6KD4CD7O.mjs.map +1 -0
- package/dist/chunk-GJVEYCS4.js +12 -0
- package/dist/chunk-GJVEYCS4.js.map +1 -0
- package/dist/chunk-PPV4IEWR.mjs +8 -0
- package/dist/chunk-PPV4IEWR.mjs.map +1 -0
- package/dist/{chunk-XPY45Y75.js → chunk-VVHFMAE7.js} +9 -21
- package/dist/chunk-VVHFMAE7.js.map +1 -0
- package/dist/common/aiApi/client/index.d.mts +66 -4
- package/dist/common/aiApi/client/index.d.ts +66 -4
- package/dist/common/aiApi/client/index.js +360 -15
- package/dist/common/aiApi/client/index.js.map +1 -1
- package/dist/common/aiApi/client/index.mjs +345 -11
- package/dist/common/aiApi/client/index.mjs.map +1 -1
- package/dist/common/aiApi/index.d.mts +2 -2
- package/dist/common/aiApi/index.d.ts +2 -2
- package/dist/common/aiApi/index.js +63 -62
- package/dist/common/aiApi/index.mjs +2 -1
- package/dist/common/aiApi/server/index.d.mts +1 -1
- package/dist/common/aiApi/server/index.d.ts +1 -1
- package/dist/common/aiApi/server/index.js +63 -62
- package/dist/common/aiApi/server/index.mjs +2 -1
- package/dist/{index-BSmd4ikf.d.ts → index-B4wDXFL0.d.mts} +39 -2
- package/dist/{index-r2-zE3iC.d.mts → index-B4wDXFL0.d.ts} +39 -2
- package/dist/{index-DLLPTprx.d.mts → index-B9vXYzok.d.mts} +48 -13
- package/dist/{index-VFDbZxVM.d.ts → index-BZ0MhRau.d.ts} +48 -13
- package/dist/index.d.mts +398 -28
- package/dist/index.d.ts +398 -28
- package/dist/index.js +1831 -6859
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1121 -6149
- package/dist/index.mjs.map +1 -1
- package/dist/{types-CiqMQ-uu.d.mts → types-DgbG0Of-.d.mts} +9 -1
- package/dist/{types-CiqMQ-uu.d.ts → types-DgbG0Of-.d.ts} +9 -1
- package/package.json +1 -11
- package/dist/CollisionBalls-DgKtscU2.d.mts +0 -41
- package/dist/CollisionBalls-DgKtscU2.d.ts +0 -41
- package/dist/business/calendar/index.d.mts +0 -6
- package/dist/business/calendar/index.d.ts +0 -6
- package/dist/business/calendar/index.js +0 -7433
- package/dist/business/calendar/index.js.map +0 -1
- package/dist/business/calendar/index.mjs +0 -7257
- package/dist/business/calendar/index.mjs.map +0 -1
- package/dist/business/calendar/routes/index.d.mts +0 -191
- package/dist/business/calendar/routes/index.d.ts +0 -191
- package/dist/business/calendar/routes/index.js +0 -844
- package/dist/business/calendar/routes/index.js.map +0 -1
- package/dist/business/calendar/routes/index.mjs +0 -826
- package/dist/business/calendar/routes/index.mjs.map +0 -1
- package/dist/chunk-XPY45Y75.js.map +0 -1
- package/dist/chunk-ZJLS5JU5.mjs.map +0 -1
- package/dist/index-BMgdH5dL.d.mts +0 -1716
- package/dist/index-IXMAeTtN.d.ts +0 -1716
|
@@ -115,6 +115,14 @@ interface ConnectivityTestOutput {
|
|
|
115
115
|
ok: boolean;
|
|
116
116
|
reply: string;
|
|
117
117
|
}
|
|
118
|
+
/** GET /api/ai/config 响应(宿主实现,不暴露 apiKey) */
|
|
119
|
+
interface AiServerConfigStatus {
|
|
120
|
+
serverConfigured: boolean;
|
|
121
|
+
baseUrl?: string;
|
|
122
|
+
visionModel?: string;
|
|
123
|
+
textModel?: string;
|
|
124
|
+
error?: string;
|
|
125
|
+
}
|
|
118
126
|
interface AiModelsListRequest {
|
|
119
127
|
clientSettings?: AiClientSettings;
|
|
120
128
|
}
|
|
@@ -163,4 +171,4 @@ interface MultimodalChatResult {
|
|
|
163
171
|
transcriptions?: string[];
|
|
164
172
|
}
|
|
165
173
|
|
|
166
|
-
export { type AiClientSettings as A, type ConnectivityTestOutput as C, type MultimodalChatParams as M, type StructuredMultimodalInput as S, type TextCompletionInput as T, type AiApiResponse as a, type AiModelsListResponse as b, type AudioStrategy as c, type
|
|
174
|
+
export { type AiClientSettings as A, type ConnectivityTestOutput as C, type MultimodalChatParams as M, type StructuredMultimodalInput as S, type TextCompletionInput as T, type AiApiResponse as a, type AiModelsListResponse as b, type AudioStrategy as c, type AiServerConfigStatus as d, type AiConnectionConfig as e, type MultimodalChatResult as f, type AiImageInput as g, type AiAudioInput as h, type AiMediaInput as i, type AiTaskDefinition as j, type AiTaskContext as k, type TextCompletionOutput as l, type StructuredMultimodalOutput as m, type AiConnectionSettings as n, type AiApiRunRequest as o, type AiTaskRunOptions as p, type AiApiErrorBody as q, type AiApiErrorCode as r, type AiApiResponseMeta as s, type AiMediaKind as t, type AiImageMediaInput as u, type AiAudioMediaInput as v, CORE_LLM_COMPLETION_TASK_ID as w, CORE_STRUCTURED_MULTIMODAL_TASK_ID as x, CORE_CONNECTIVITY_TEST_TASK_ID as y, type AiModelsListRequest as z };
|
|
@@ -115,6 +115,14 @@ interface ConnectivityTestOutput {
|
|
|
115
115
|
ok: boolean;
|
|
116
116
|
reply: string;
|
|
117
117
|
}
|
|
118
|
+
/** GET /api/ai/config 响应(宿主实现,不暴露 apiKey) */
|
|
119
|
+
interface AiServerConfigStatus {
|
|
120
|
+
serverConfigured: boolean;
|
|
121
|
+
baseUrl?: string;
|
|
122
|
+
visionModel?: string;
|
|
123
|
+
textModel?: string;
|
|
124
|
+
error?: string;
|
|
125
|
+
}
|
|
118
126
|
interface AiModelsListRequest {
|
|
119
127
|
clientSettings?: AiClientSettings;
|
|
120
128
|
}
|
|
@@ -163,4 +171,4 @@ interface MultimodalChatResult {
|
|
|
163
171
|
transcriptions?: string[];
|
|
164
172
|
}
|
|
165
173
|
|
|
166
|
-
export { type AiClientSettings as A, type ConnectivityTestOutput as C, type MultimodalChatParams as M, type StructuredMultimodalInput as S, type TextCompletionInput as T, type AiApiResponse as a, type AiModelsListResponse as b, type AudioStrategy as c, type
|
|
174
|
+
export { type AiClientSettings as A, type ConnectivityTestOutput as C, type MultimodalChatParams as M, type StructuredMultimodalInput as S, type TextCompletionInput as T, type AiApiResponse as a, type AiModelsListResponse as b, type AudioStrategy as c, type AiServerConfigStatus as d, type AiConnectionConfig as e, type MultimodalChatResult as f, type AiImageInput as g, type AiAudioInput as h, type AiMediaInput as i, type AiTaskDefinition as j, type AiTaskContext as k, type TextCompletionOutput as l, type StructuredMultimodalOutput as m, type AiConnectionSettings as n, type AiApiRunRequest as o, type AiTaskRunOptions as p, type AiApiErrorBody as q, type AiApiErrorCode as r, type AiApiResponseMeta as s, type AiMediaKind as t, type AiImageMediaInput as u, type AiAudioMediaInput as v, CORE_LLM_COMPLETION_TASK_ID as w, CORE_STRUCTURED_MULTIMODAL_TASK_ID as x, CORE_CONNECTIVITY_TEST_TASK_ID as y, type AiModelsListRequest as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sa2kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "SA2Kit 2.0 — common API 稳定;business 实验田模块逐步迁出 profile-v1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -163,16 +163,6 @@
|
|
|
163
163
|
"import": "./dist/business/audioDetection/index.mjs",
|
|
164
164
|
"require": "./dist/business/audioDetection/index.js"
|
|
165
165
|
},
|
|
166
|
-
"./business/calendar": {
|
|
167
|
-
"types": "./dist/business/calendar/index.d.ts",
|
|
168
|
-
"import": "./dist/business/calendar/index.mjs",
|
|
169
|
-
"require": "./dist/business/calendar/index.js"
|
|
170
|
-
},
|
|
171
|
-
"./business/calendar/routes": {
|
|
172
|
-
"types": "./dist/business/calendar/routes/index.d.ts",
|
|
173
|
-
"import": "./dist/business/calendar/routes/index.mjs",
|
|
174
|
-
"require": "./dist/business/calendar/routes/index.js"
|
|
175
|
-
},
|
|
176
166
|
"./business/festivalCard": {
|
|
177
167
|
"types": "./dist/business/festivalCard/index.d.ts",
|
|
178
168
|
"import": "./dist/business/festivalCard/index.mjs",
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
|
|
3
|
-
interface TimelineItem {
|
|
4
|
-
date: string;
|
|
5
|
-
title: string;
|
|
6
|
-
description: string;
|
|
7
|
-
}
|
|
8
|
-
interface TimelineConfig {
|
|
9
|
-
items: TimelineItem[];
|
|
10
|
-
}
|
|
11
|
-
interface TimelineProps {
|
|
12
|
-
items?: TimelineItem[];
|
|
13
|
-
}
|
|
14
|
-
declare const Timeline: React__default.FC<TimelineProps>;
|
|
15
|
-
|
|
16
|
-
interface Ball {
|
|
17
|
-
x: number;
|
|
18
|
-
y: number;
|
|
19
|
-
vx: number;
|
|
20
|
-
vy: number;
|
|
21
|
-
radius: number;
|
|
22
|
-
color: string;
|
|
23
|
-
text?: string;
|
|
24
|
-
isDragging?: boolean;
|
|
25
|
-
}
|
|
26
|
-
interface CollisionBallsConfig {
|
|
27
|
-
balls: {
|
|
28
|
-
id: string;
|
|
29
|
-
label: string;
|
|
30
|
-
color: string;
|
|
31
|
-
size: number;
|
|
32
|
-
}[];
|
|
33
|
-
width: number;
|
|
34
|
-
height: number;
|
|
35
|
-
}
|
|
36
|
-
interface CollisionBallsProps {
|
|
37
|
-
collisionBallsConfig: CollisionBallsConfig;
|
|
38
|
-
}
|
|
39
|
-
declare const CollisionBalls: React__default.FC<CollisionBallsProps>;
|
|
40
|
-
|
|
41
|
-
export { type Ball as B, type CollisionBallsConfig as C, type TimelineConfig as T, type TimelineItem as a, CollisionBalls as b, Timeline as c };
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
|
|
3
|
-
interface TimelineItem {
|
|
4
|
-
date: string;
|
|
5
|
-
title: string;
|
|
6
|
-
description: string;
|
|
7
|
-
}
|
|
8
|
-
interface TimelineConfig {
|
|
9
|
-
items: TimelineItem[];
|
|
10
|
-
}
|
|
11
|
-
interface TimelineProps {
|
|
12
|
-
items?: TimelineItem[];
|
|
13
|
-
}
|
|
14
|
-
declare const Timeline: React__default.FC<TimelineProps>;
|
|
15
|
-
|
|
16
|
-
interface Ball {
|
|
17
|
-
x: number;
|
|
18
|
-
y: number;
|
|
19
|
-
vx: number;
|
|
20
|
-
vy: number;
|
|
21
|
-
radius: number;
|
|
22
|
-
color: string;
|
|
23
|
-
text?: string;
|
|
24
|
-
isDragging?: boolean;
|
|
25
|
-
}
|
|
26
|
-
interface CollisionBallsConfig {
|
|
27
|
-
balls: {
|
|
28
|
-
id: string;
|
|
29
|
-
label: string;
|
|
30
|
-
color: string;
|
|
31
|
-
size: number;
|
|
32
|
-
}[];
|
|
33
|
-
width: number;
|
|
34
|
-
height: number;
|
|
35
|
-
}
|
|
36
|
-
interface CollisionBallsProps {
|
|
37
|
-
collisionBallsConfig: CollisionBallsConfig;
|
|
38
|
-
}
|
|
39
|
-
declare const CollisionBalls: React__default.FC<CollisionBallsProps>;
|
|
40
|
-
|
|
41
|
-
export { type Ball as B, type CollisionBallsConfig as C, type TimelineConfig as T, type TimelineItem as a, CollisionBalls as b, Timeline as c };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export { D as AlertDialog, A as AlertDialogAction, c as AlertDialogCancel, d as AlertDialogContent, e as AlertDialogDescription, f as AlertDialogFooter, g as AlertDialogHeader, h as AlertDialogOverlay, j as AlertDialogPortal, k as AlertDialogTitle, l as AlertDialogTrigger, b9 as ApiResponse, m as Avatar, n as AvatarFallback, o as AvatarImage, B as BackButton, p as BackButtonProps, q as Badge, r as BadgeProps, bR as BaseEventData, s as Button, t as ButtonProps, aT as CALENDAR_MODULE_NAME, aS as CALENDAR_MODULE_VERSION, bi as CalendarActions, bm as CalendarCell, bo as CalendarConfig, bq as CalendarDbService, aU as CalendarEvent, bE as CalendarExportService, bG as CalendarImportService, ct as CalendarPage, bp as CalendarService, bh as CalendarState, bc as CalendarViewProps, a_ as CalendarViewType, C as Card, u as CardContent, v as CardDescription, w as CardFooter, x as CardHeader, y as CardTitle, z as ConfirmModal, E as ConfirmModalProps, b5 as CreateEventRequest, bl as DateRange, b7 as DeleteEventRequest, D as Dialog, F as DialogClose, H as DialogContent, I as DialogContentProps, e as DialogDescription, f as DialogFooter, g as DialogHeader, h as DialogOverlay, j as DialogPortal, k as DialogTitle, l as DialogTrigger, bD as DragState, J as DropdownMenu, K as DropdownMenuCheckboxItem, L as DropdownMenuContent, M as DropdownMenuGroup, N as DropdownMenuItem, O as DropdownMenuLabel, P as DropdownMenuPortal, Q as DropdownMenuRadioGroup, R as DropdownMenuRadioItem, S as DropdownMenuSeparator, T as DropdownMenuShortcut, U as DropdownMenuSub, V as DropdownMenuSubContent, W as DropdownMenuSubTrigger, X as DropdownMenuTrigger, bd as EventCardProps, a$ as EventColor, bV as EventData, cu as EventDetailPage, b1 as EventFormData, be as EventFormProps, bw as EventListConfig, bt as EventListDisplayMode, bv as EventListFilter, bx as EventListProps, bu as EventListSort, bf as EventModalProps, b0 as EventPriority, bb as EventResponse, br as EventSortField, bP as EventType, bX as EventTypeService, ba as EventsResponse, bF as ExportOptions, Y as FilterButtonGroup, Z as FilterButtonGroupProps, _ as FilterOption, bW as GeneratedEvent, $ as GenericOrderManager, a0 as GenericOrderManagerProps, b8 as GetEventsRequest, a1 as Grid, a as GridColumns, b as GridGap, G as GridItem, a2 as GridProps, a3 as ImageMappingItem, a4 as ImageMappingPanel, a5 as ImageMappingPanelProps, a6 as ImageMappingValue, bH as ImportOptions, bI as ImportResult, a7 as Input, a8 as Label, a9 as LocalImageMappingPanel, aa as LocalImageMappingPanelProps, bg as MiniCalendarProps, ab as Modal, ac as ModalProps, bT as MultiDayEventData, ad as OrderManagerOperations, ae as OrderableItem, af as Popover, ag as PopoverAnchor, ah as PopoverContent, ai as PopoverTrigger, aj as Progress, ak as ProgressProps, b2 as RecurrenceFormData, bQ as RecurrencePattern, aV as RecurrenceRule, bK as RecurrenceRuleType, bJ as RecurrenceService, aX as RecurrenceType, bU as RecurringEventData, bL as RecurringEventInstance, aW as Reminder, b4 as ReminderApiData, bN as ReminderConfig, b3 as ReminderFormData, bM as ReminderService, aZ as ReminderStatus, aY as ReminderType, bO as ScheduledReminder, al as ScrollArea, am as ScrollBar, an as SearchBox, ao as SearchResultHint, ap as SearchResultHintProps, aq as Select, ar as SelectContent, as as SelectGroup, at as SelectItem, au as SelectLabel, av as SelectScrollDownButton, aw as SelectScrollUpButton, ax as SelectSeparator, ay as SelectTrigger, az as SelectValue, aA as Separator, aB as SeparatorProps, D as Sheet, F as SheetClose, aC as SheetContent, aD as SheetDescription, aE as SheetFooter, aF as SheetHeader, h as SheetOverlay, j as SheetPortal, aG as SheetTitle, l as SheetTrigger, bS as SingleEventData, bs as SortDirection, aH as Tabs, aI as TabsContent, aJ as TabsList, aK as TabsTrigger, aL as Textarea, bn as TimeSlot, aM as Tooltip, aN as TooltipContent, aO as TooltipProvider, aP as TooltipTrigger, b6 as UpdateEventRequest, bj as UseCalendarReturn, bA as UseEnhancedEventsReturn, bC as UseEventDragReturn, bk as UseEventsReturn, cb as addDays, cd as addMonths, cc as addWeeks, ce as addYears, aQ as badgeVariants, aR as buttonVariants, cp as cloneDate, bY as formatDate, b_ as formatDateTime, bZ as formatTime, ch as generateTimeSlots, c5 as getDayEnd, c4 as getDayStart, cj as getDaysDifference, c1 as getMonthEnd, cl as getMonthName, c0 as getMonthStart, cf as getMonthViewDates, cn as getRelativeTime, c3 as getWeekEnd, c2 as getWeekStart, cg as getWeekViewDates, cm as getWeekdayName, cr as isDragSupported, cq as isMobileDevice, c6 as isSameDay, c8 as isSameMonth, c7 as isSameWeek, c9 as isToday, co as isValidDate, ca as isWeekend, ck as isWorkingHour, ci as parseDate, b$ as toLocalISOString, cs as useDeviceType, bz as useEnhancedEvents, bB as useEventDrag, by as useEvents } from '../../index-BMgdH5dL.mjs';
|
|
2
|
-
export { B as Ball, b as CollisionBalls, C as CollisionBallsConfig, c as Timeline, T as TimelineConfig, a as TimelineItem } from '../../CollisionBalls-DgKtscU2.mjs';
|
|
3
|
-
import 'class-variance-authority/types';
|
|
4
|
-
import 'react';
|
|
5
|
-
import 'class-variance-authority';
|
|
6
|
-
import '@dnd-kit/core';
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export { D as AlertDialog, A as AlertDialogAction, c as AlertDialogCancel, d as AlertDialogContent, e as AlertDialogDescription, f as AlertDialogFooter, g as AlertDialogHeader, h as AlertDialogOverlay, j as AlertDialogPortal, k as AlertDialogTitle, l as AlertDialogTrigger, b9 as ApiResponse, m as Avatar, n as AvatarFallback, o as AvatarImage, B as BackButton, p as BackButtonProps, q as Badge, r as BadgeProps, bR as BaseEventData, s as Button, t as ButtonProps, aT as CALENDAR_MODULE_NAME, aS as CALENDAR_MODULE_VERSION, bi as CalendarActions, bm as CalendarCell, bo as CalendarConfig, bq as CalendarDbService, aU as CalendarEvent, bE as CalendarExportService, bG as CalendarImportService, ct as CalendarPage, bp as CalendarService, bh as CalendarState, bc as CalendarViewProps, a_ as CalendarViewType, C as Card, u as CardContent, v as CardDescription, w as CardFooter, x as CardHeader, y as CardTitle, z as ConfirmModal, E as ConfirmModalProps, b5 as CreateEventRequest, bl as DateRange, b7 as DeleteEventRequest, D as Dialog, F as DialogClose, H as DialogContent, I as DialogContentProps, e as DialogDescription, f as DialogFooter, g as DialogHeader, h as DialogOverlay, j as DialogPortal, k as DialogTitle, l as DialogTrigger, bD as DragState, J as DropdownMenu, K as DropdownMenuCheckboxItem, L as DropdownMenuContent, M as DropdownMenuGroup, N as DropdownMenuItem, O as DropdownMenuLabel, P as DropdownMenuPortal, Q as DropdownMenuRadioGroup, R as DropdownMenuRadioItem, S as DropdownMenuSeparator, T as DropdownMenuShortcut, U as DropdownMenuSub, V as DropdownMenuSubContent, W as DropdownMenuSubTrigger, X as DropdownMenuTrigger, bd as EventCardProps, a$ as EventColor, bV as EventData, cu as EventDetailPage, b1 as EventFormData, be as EventFormProps, bw as EventListConfig, bt as EventListDisplayMode, bv as EventListFilter, bx as EventListProps, bu as EventListSort, bf as EventModalProps, b0 as EventPriority, bb as EventResponse, br as EventSortField, bP as EventType, bX as EventTypeService, ba as EventsResponse, bF as ExportOptions, Y as FilterButtonGroup, Z as FilterButtonGroupProps, _ as FilterOption, bW as GeneratedEvent, $ as GenericOrderManager, a0 as GenericOrderManagerProps, b8 as GetEventsRequest, a1 as Grid, a as GridColumns, b as GridGap, G as GridItem, a2 as GridProps, a3 as ImageMappingItem, a4 as ImageMappingPanel, a5 as ImageMappingPanelProps, a6 as ImageMappingValue, bH as ImportOptions, bI as ImportResult, a7 as Input, a8 as Label, a9 as LocalImageMappingPanel, aa as LocalImageMappingPanelProps, bg as MiniCalendarProps, ab as Modal, ac as ModalProps, bT as MultiDayEventData, ad as OrderManagerOperations, ae as OrderableItem, af as Popover, ag as PopoverAnchor, ah as PopoverContent, ai as PopoverTrigger, aj as Progress, ak as ProgressProps, b2 as RecurrenceFormData, bQ as RecurrencePattern, aV as RecurrenceRule, bK as RecurrenceRuleType, bJ as RecurrenceService, aX as RecurrenceType, bU as RecurringEventData, bL as RecurringEventInstance, aW as Reminder, b4 as ReminderApiData, bN as ReminderConfig, b3 as ReminderFormData, bM as ReminderService, aZ as ReminderStatus, aY as ReminderType, bO as ScheduledReminder, al as ScrollArea, am as ScrollBar, an as SearchBox, ao as SearchResultHint, ap as SearchResultHintProps, aq as Select, ar as SelectContent, as as SelectGroup, at as SelectItem, au as SelectLabel, av as SelectScrollDownButton, aw as SelectScrollUpButton, ax as SelectSeparator, ay as SelectTrigger, az as SelectValue, aA as Separator, aB as SeparatorProps, D as Sheet, F as SheetClose, aC as SheetContent, aD as SheetDescription, aE as SheetFooter, aF as SheetHeader, h as SheetOverlay, j as SheetPortal, aG as SheetTitle, l as SheetTrigger, bS as SingleEventData, bs as SortDirection, aH as Tabs, aI as TabsContent, aJ as TabsList, aK as TabsTrigger, aL as Textarea, bn as TimeSlot, aM as Tooltip, aN as TooltipContent, aO as TooltipProvider, aP as TooltipTrigger, b6 as UpdateEventRequest, bj as UseCalendarReturn, bA as UseEnhancedEventsReturn, bC as UseEventDragReturn, bk as UseEventsReturn, cb as addDays, cd as addMonths, cc as addWeeks, ce as addYears, aQ as badgeVariants, aR as buttonVariants, cp as cloneDate, bY as formatDate, b_ as formatDateTime, bZ as formatTime, ch as generateTimeSlots, c5 as getDayEnd, c4 as getDayStart, cj as getDaysDifference, c1 as getMonthEnd, cl as getMonthName, c0 as getMonthStart, cf as getMonthViewDates, cn as getRelativeTime, c3 as getWeekEnd, c2 as getWeekStart, cg as getWeekViewDates, cm as getWeekdayName, cr as isDragSupported, cq as isMobileDevice, c6 as isSameDay, c8 as isSameMonth, c7 as isSameWeek, c9 as isToday, co as isValidDate, ca as isWeekend, ck as isWorkingHour, ci as parseDate, b$ as toLocalISOString, cs as useDeviceType, bz as useEnhancedEvents, bB as useEventDrag, by as useEvents } from '../../index-IXMAeTtN.js';
|
|
2
|
-
export { B as Ball, b as CollisionBalls, C as CollisionBallsConfig, c as Timeline, T as TimelineConfig, a as TimelineItem } from '../../CollisionBalls-DgKtscU2.js';
|
|
3
|
-
import 'class-variance-authority/types';
|
|
4
|
-
import 'react';
|
|
5
|
-
import 'class-variance-authority';
|
|
6
|
-
import '@dnd-kit/core';
|