@libxai/board 1.9.10 → 1.9.12
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/index.cjs +45 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +178 -473
- package/dist/index.d.ts +178 -473
- package/dist/index.js +45 -45
- package/dist/index.js.map +1 -1
- package/dist/styles.css +11471 -12890
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2002,106 +2002,6 @@ interface CommandPaletteProps {
|
|
|
2002
2002
|
}
|
|
2003
2003
|
declare function CommandPalette({ board, onCreateCard, onNavigateToCard, onSearch, onChangePriority, onAssignUser, onGeneratePlan, onPredictRisks, onOpenAIUsage, shortcut, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element | null;
|
|
2004
2004
|
|
|
2005
|
-
interface CardDetailModalProps {
|
|
2006
|
-
/** Card to display */
|
|
2007
|
-
card: Card$1 | null;
|
|
2008
|
-
/** Whether modal is open */
|
|
2009
|
-
isOpen: boolean;
|
|
2010
|
-
/** Close callback */
|
|
2011
|
-
onClose: () => void;
|
|
2012
|
-
/** Update card callback */
|
|
2013
|
-
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
2014
|
-
/** Delete card callback */
|
|
2015
|
-
onDelete?: (cardId: string) => void;
|
|
2016
|
-
/** Available users for assignment */
|
|
2017
|
-
availableUsers?: User$1[];
|
|
2018
|
-
/** Comments for this card */
|
|
2019
|
-
comments?: Comment[];
|
|
2020
|
-
/** Activity log for this card */
|
|
2021
|
-
activities?: Activity[];
|
|
2022
|
-
/** AI insights for this card */
|
|
2023
|
-
aiInsights?: Insight[];
|
|
2024
|
-
/** Attachments for this card */
|
|
2025
|
-
attachments?: Attachment[];
|
|
2026
|
-
/** Add comment callback */
|
|
2027
|
-
onAddComment?: (cardId: string, content: string) => void;
|
|
2028
|
-
/** Delete comment callback */
|
|
2029
|
-
onDeleteComment?: (commentId: string) => void;
|
|
2030
|
-
/** Upload attachments callback */
|
|
2031
|
-
onUploadAttachments?: (cardId: string, files: File[]) => Promise<void> | void;
|
|
2032
|
-
/** Delete attachment callback */
|
|
2033
|
-
onDeleteAttachment?: (attachmentId: string) => void;
|
|
2034
|
-
/** Current user ID */
|
|
2035
|
-
currentUserId?: string;
|
|
2036
|
-
/** AI: Suggest assignee */
|
|
2037
|
-
onSuggestAssignee?: (card: Card$1) => Promise<AssigneeSuggestion[]>;
|
|
2038
|
-
/** AI: Generate subtasks */
|
|
2039
|
-
onGenerateSubtasks?: (card: Card$1) => Promise<Omit<Card$1, 'id'>[]>;
|
|
2040
|
-
/** AI: Estimate effort */
|
|
2041
|
-
onEstimateEffort?: (card: Card$1) => Promise<{
|
|
2042
|
-
hours: number;
|
|
2043
|
-
confidence: number;
|
|
2044
|
-
}>;
|
|
2045
|
-
}
|
|
2046
|
-
declare function CardDetailModal({ card, isOpen, onClose, onUpdate, onDelete, availableUsers, comments, activities, aiInsights, attachments, onAddComment, onDeleteComment, onUploadAttachments, onDeleteAttachment, onSuggestAssignee, onGenerateSubtasks, onEstimateEffort, currentUserId, }: CardDetailModalProps): react_jsx_runtime.JSX.Element | null;
|
|
2047
|
-
|
|
2048
|
-
interface CardDetailModalV2Props {
|
|
2049
|
-
/** Card to display */
|
|
2050
|
-
card: Card$1 | null;
|
|
2051
|
-
/** Whether modal is open */
|
|
2052
|
-
isOpen: boolean;
|
|
2053
|
-
/** Close callback */
|
|
2054
|
-
onClose: () => void;
|
|
2055
|
-
/** Update card callback */
|
|
2056
|
-
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
2057
|
-
/** Delete card callback */
|
|
2058
|
-
onDelete?: (cardId: string) => void;
|
|
2059
|
-
/** Available users for assignment */
|
|
2060
|
-
availableUsers?: User$1[];
|
|
2061
|
-
/** Comments for this card */
|
|
2062
|
-
comments?: Comment[];
|
|
2063
|
-
/** Activity log for this card */
|
|
2064
|
-
activities?: Activity[];
|
|
2065
|
-
/** Add comment callback */
|
|
2066
|
-
onAddComment?: (cardId: string, content: string) => void;
|
|
2067
|
-
/** Delete comment callback */
|
|
2068
|
-
onDeleteComment?: (commentId: string) => void;
|
|
2069
|
-
/** Current user */
|
|
2070
|
-
currentUser?: User$1;
|
|
2071
|
-
/** AI: Generate description */
|
|
2072
|
-
onAIGenerateDescription?: (card: Card$1) => Promise<string>;
|
|
2073
|
-
/** AI: Create subtasks */
|
|
2074
|
-
onAICreateSubtasks?: (card: Card$1) => Promise<string[]>;
|
|
2075
|
-
/** AI: Find similar tasks */
|
|
2076
|
-
onAIFindSimilar?: (card: Card$1) => Promise<Card$1[]>;
|
|
2077
|
-
/** Available columns for status */
|
|
2078
|
-
availableColumns?: Array<{
|
|
2079
|
-
id: string;
|
|
2080
|
-
title: string;
|
|
2081
|
-
}>;
|
|
2082
|
-
/** Available labels (legacy - use availableTags for colored tags) */
|
|
2083
|
-
availableLabels?: string[];
|
|
2084
|
-
/** v0.17.158: Available tags with colors (ClickUp-style) */
|
|
2085
|
-
availableTags?: TaskTag[];
|
|
2086
|
-
/** v0.17.158: Callback to create a new tag */
|
|
2087
|
-
onCreateTag?: (name: string, color: string) => Promise<TaskTag | null>;
|
|
2088
|
-
/** Upload cover image callback (optional - returns public URL) */
|
|
2089
|
-
onUploadCoverImage?: (file: File) => Promise<string>;
|
|
2090
|
-
/** Unsplash API key for cover images (optional) */
|
|
2091
|
-
unsplashAccessKey?: string;
|
|
2092
|
-
/** Theme for the modal (dark, light, neutral). If not provided, uses KanbanThemeContext or defaults to 'dark' */
|
|
2093
|
-
theme?: 'dark' | 'light' | 'neutral';
|
|
2094
|
-
/** Callback when subtasks are changed (for persistence) */
|
|
2095
|
-
onSubtasksChange?: (cardId: string, subtasks: Subtask[]) => void;
|
|
2096
|
-
/** Attachments for this card */
|
|
2097
|
-
attachments?: Attachment[];
|
|
2098
|
-
/** Upload attachments callback */
|
|
2099
|
-
onUploadAttachments?: (cardId: string, files: File[]) => Promise<void> | void;
|
|
2100
|
-
/** Delete attachment callback */
|
|
2101
|
-
onDeleteAttachment?: (attachmentId: string) => void;
|
|
2102
|
-
}
|
|
2103
|
-
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, availableTags, onCreateTag, onUploadCoverImage: _onUploadCoverImage, unsplashAccessKey: _unsplashAccessKey, theme, onSubtasksChange, attachments, onUploadAttachments, onDeleteAttachment, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
2104
|
-
|
|
2105
2005
|
interface AttachmentUploaderProps {
|
|
2106
2006
|
/** Card ID for attachments */
|
|
2107
2007
|
cardId: string;
|
|
@@ -3801,11 +3701,11 @@ interface GanttTranslations {
|
|
|
3801
3701
|
/**
|
|
3802
3702
|
* English translations (default)
|
|
3803
3703
|
*/
|
|
3804
|
-
declare const en$
|
|
3704
|
+
declare const en$1: GanttTranslations;
|
|
3805
3705
|
/**
|
|
3806
3706
|
* Spanish translations
|
|
3807
3707
|
*/
|
|
3808
|
-
declare const es$
|
|
3708
|
+
declare const es$1: GanttTranslations;
|
|
3809
3709
|
/**
|
|
3810
3710
|
* All available translations
|
|
3811
3711
|
*/
|
|
@@ -4397,15 +4297,15 @@ declare function ListView({ tasks, config, callbacks, isLoading, error, classNam
|
|
|
4397
4297
|
/**
|
|
4398
4298
|
* Dark theme for ListView — Chronos V2.0
|
|
4399
4299
|
*/
|
|
4400
|
-
declare const darkTheme$
|
|
4300
|
+
declare const darkTheme$2: ListViewTheme;
|
|
4401
4301
|
/**
|
|
4402
4302
|
* Light theme for ListView
|
|
4403
4303
|
*/
|
|
4404
|
-
declare const lightTheme$
|
|
4304
|
+
declare const lightTheme$2: ListViewTheme;
|
|
4405
4305
|
/**
|
|
4406
4306
|
* Neutral theme for ListView
|
|
4407
4307
|
*/
|
|
4408
|
-
declare const neutralTheme$
|
|
4308
|
+
declare const neutralTheme$2: ListViewTheme;
|
|
4409
4309
|
/**
|
|
4410
4310
|
* All available themes
|
|
4411
4311
|
*/
|
|
@@ -4429,11 +4329,11 @@ type ListViewSupportedLocale = 'en' | 'es';
|
|
|
4429
4329
|
/**
|
|
4430
4330
|
* English translations
|
|
4431
4331
|
*/
|
|
4432
|
-
declare const en
|
|
4332
|
+
declare const en: ListViewTranslations;
|
|
4433
4333
|
/**
|
|
4434
4334
|
* Spanish translations
|
|
4435
4335
|
*/
|
|
4436
|
-
declare const es
|
|
4336
|
+
declare const es: ListViewTranslations;
|
|
4437
4337
|
/**
|
|
4438
4338
|
* All available translations
|
|
4439
4339
|
*/
|
|
@@ -4448,396 +4348,201 @@ declare function getListViewTranslations(locale: ListViewSupportedLocale | strin
|
|
|
4448
4348
|
declare function mergeListViewTranslations(locale: ListViewSupportedLocale | string, customTranslations?: Partial<ListViewTranslations>): ListViewTranslations;
|
|
4449
4349
|
|
|
4450
4350
|
/**
|
|
4451
|
-
*
|
|
4452
|
-
*
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
*
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
*
|
|
4461
|
-
*/
|
|
4462
|
-
type WeekDay = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4463
|
-
/**
|
|
4464
|
-
* Calendar event (task displayed on calendar)
|
|
4351
|
+
* Motor de layout del Calendario (Asakaa Pulse) — Sprint 1.
|
|
4352
|
+
*
|
|
4353
|
+
* Convierte tareas reales (del Gantt) en barras posicionadas por semana, y los
|
|
4354
|
+
* elementos de día (hitos/desembolsos/vencimientos/externos/ausencias) en chips,
|
|
4355
|
+
* empaquetándolos en "lanes" sin solaparse — fiel a layoutWeek del diseño de
|
|
4356
|
+
* referencia (cal-data.js). Solo lectura.
|
|
4357
|
+
*
|
|
4358
|
+
* El calendario usa un "serial" de día: índice continuo dentro del mes visible
|
|
4359
|
+
* (1..N), con lunes = columna 0. Esto permite posicionar barras que cruzan
|
|
4360
|
+
* semanas con muescas de continuación.
|
|
4465
4361
|
*/
|
|
4466
|
-
|
|
4362
|
+
type DayItemType = 'hito' | 'desembolso' | 'deadline' | 'ext' | 'aus';
|
|
4363
|
+
interface CalTask {
|
|
4364
|
+
uid: string;
|
|
4467
4365
|
id: string;
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
*/
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
/**
|
|
4488
|
-
* Theme configuration for calendar
|
|
4489
|
-
*/
|
|
4490
|
-
interface CalendarTheme {
|
|
4491
|
-
bgPrimary: string;
|
|
4492
|
-
bgSecondary: string;
|
|
4493
|
-
bgHover: string;
|
|
4494
|
-
bgToday: string;
|
|
4495
|
-
bgWeekend: string;
|
|
4496
|
-
bgOtherMonth: string;
|
|
4497
|
-
border: string;
|
|
4498
|
-
borderLight: string;
|
|
4499
|
-
textPrimary: string;
|
|
4500
|
-
textSecondary: string;
|
|
4501
|
-
textMuted: string;
|
|
4502
|
-
textToday: string;
|
|
4503
|
-
accent: string;
|
|
4504
|
-
accentHover: string;
|
|
4505
|
-
accentLight: string;
|
|
4506
|
-
statusTodo: string;
|
|
4507
|
-
statusInProgress: string;
|
|
4508
|
-
statusCompleted: string;
|
|
4509
|
-
focusRing: string;
|
|
4510
|
-
glass: string;
|
|
4511
|
-
glassBorder: string;
|
|
4512
|
-
glassHover: string;
|
|
4513
|
-
neonRed: string;
|
|
4514
|
-
glowBlue: string;
|
|
4515
|
-
glowRed: string;
|
|
4516
|
-
}
|
|
4517
|
-
/**
|
|
4518
|
-
* Permissions for calendar operations
|
|
4519
|
-
*/
|
|
4520
|
-
interface CalendarPermissions {
|
|
4521
|
-
canCreateTask?: boolean;
|
|
4522
|
-
/** v1.4.10: When true, user can only create subtasks (not root-level tasks) */
|
|
4523
|
-
canCreateSubtaskOnly?: boolean;
|
|
4524
|
-
canUpdateTask?: boolean;
|
|
4525
|
-
canDeleteTask?: boolean;
|
|
4526
|
-
canDragDrop?: boolean;
|
|
4527
|
-
canResize?: boolean;
|
|
4366
|
+
name: string;
|
|
4367
|
+
projectId: string;
|
|
4368
|
+
startSerial: number;
|
|
4369
|
+
endSerial: number;
|
|
4370
|
+
hrs: number;
|
|
4371
|
+
cost: string;
|
|
4372
|
+
critical: boolean;
|
|
4373
|
+
who?: string;
|
|
4374
|
+
realStart: Date;
|
|
4375
|
+
realEnd: Date;
|
|
4376
|
+
/** fase = tarea-padre RAÍZ del WBS (para el filtro "Fase"). uid de la raíz;
|
|
4377
|
+
* si la tarea es de primer nivel, su propia fase es ella misma. */
|
|
4378
|
+
phaseId?: string;
|
|
4379
|
+
phaseName?: string;
|
|
4380
|
+
}
|
|
4381
|
+
interface DayItem {
|
|
4382
|
+
serial: number;
|
|
4383
|
+
type: DayItemType;
|
|
4384
|
+
label: string;
|
|
4528
4385
|
}
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
/**
|
|
4538
|
-
|
|
4539
|
-
/**
|
|
4540
|
-
|
|
4541
|
-
/**
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
showWeekNumbers?: boolean;
|
|
4545
|
-
/** Show mini calendar in sidebar */
|
|
4546
|
-
showMiniCalendar?: boolean;
|
|
4547
|
-
/** Max events to show per day before "+N more" */
|
|
4548
|
-
maxEventsPerDay?: number;
|
|
4549
|
-
/** Available users for filtering */
|
|
4550
|
-
availableUsers?: User$1[];
|
|
4551
|
-
/** Permissions */
|
|
4552
|
-
permissions?: CalendarPermissions;
|
|
4553
|
-
/** Enable drag and drop */
|
|
4554
|
-
enableDragDrop?: boolean;
|
|
4555
|
-
/** Show task details on hover */
|
|
4556
|
-
showTooltip?: boolean;
|
|
4557
|
-
/** Show right sidebar with unscheduled/backlog tasks (default: true) */
|
|
4558
|
-
showBacklog?: boolean;
|
|
4559
|
-
/** Render custom content on the right side of header (e.g. lens toggle) */
|
|
4560
|
-
toolbarRightContent?: ReactNode;
|
|
4386
|
+
interface MonthGrid {
|
|
4387
|
+
/** Fecha del primer día visible (puede ser de mes anterior, siempre lunes). */
|
|
4388
|
+
gridStart: Date;
|
|
4389
|
+
/** Semanas como rangos de serial [ws, we], 6 semanas máximo. */
|
|
4390
|
+
weeks: Array<{
|
|
4391
|
+
ws: number;
|
|
4392
|
+
we: number;
|
|
4393
|
+
}>;
|
|
4394
|
+
/** serial → Date */
|
|
4395
|
+
serialToDate: (serial: number) => Date;
|
|
4396
|
+
/** Date → serial dentro de la grid (o null si fuera). */
|
|
4397
|
+
dateToSerial: (d: Date) => number;
|
|
4398
|
+
/** serial del primer día del mes objetivo (para detectar "out"). */
|
|
4399
|
+
monthStartSerial: number;
|
|
4400
|
+
monthEndSerial: number;
|
|
4561
4401
|
}
|
|
4402
|
+
|
|
4562
4403
|
/**
|
|
4563
|
-
*
|
|
4404
|
+
* Calendario (Asakaa Pulse) — componentes de presentación puros (Sprint 1, solo lectura).
|
|
4405
|
+
*
|
|
4406
|
+
* Traducción a TSX de cal-components.jsx, fiel al diseño aprobado. Sin estado,
|
|
4407
|
+
* sin drag/resize: solo pintan barras de tarea, chips de día, "+N más" y la
|
|
4408
|
+
* leyenda usando las clases .cal-* de calendar.css y el motor de calendarLayout.ts.
|
|
4409
|
+
*
|
|
4410
|
+
* El color de cada proyecto NO se inventa: se recibe vía la prop `projects`
|
|
4411
|
+
* (mapa projectId → color CSS) y se inyecta en la barra como variable `--proj`.
|
|
4564
4412
|
*/
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
day: string;
|
|
4573
|
-
};
|
|
4574
|
-
weekdays: {
|
|
4575
|
-
sun: string;
|
|
4576
|
-
mon: string;
|
|
4577
|
-
tue: string;
|
|
4578
|
-
wed: string;
|
|
4579
|
-
thu: string;
|
|
4580
|
-
fri: string;
|
|
4581
|
-
sat: string;
|
|
4582
|
-
};
|
|
4583
|
-
weekdaysFull: {
|
|
4584
|
-
sunday: string;
|
|
4585
|
-
monday: string;
|
|
4586
|
-
tuesday: string;
|
|
4587
|
-
wednesday: string;
|
|
4588
|
-
thursday: string;
|
|
4589
|
-
friday: string;
|
|
4590
|
-
saturday: string;
|
|
4591
|
-
};
|
|
4592
|
-
months: {
|
|
4593
|
-
january: string;
|
|
4594
|
-
february: string;
|
|
4595
|
-
march: string;
|
|
4596
|
-
april: string;
|
|
4597
|
-
may: string;
|
|
4598
|
-
june: string;
|
|
4599
|
-
july: string;
|
|
4600
|
-
august: string;
|
|
4601
|
-
september: string;
|
|
4602
|
-
october: string;
|
|
4603
|
-
november: string;
|
|
4604
|
-
december: string;
|
|
4605
|
-
};
|
|
4606
|
-
status: {
|
|
4607
|
-
todo: string;
|
|
4608
|
-
inProgress: string;
|
|
4609
|
-
completed: string;
|
|
4610
|
-
};
|
|
4611
|
-
labels: {
|
|
4612
|
-
allDay: string;
|
|
4613
|
-
moreEvents: string;
|
|
4614
|
-
noEvents: string;
|
|
4615
|
-
newTask: string;
|
|
4616
|
-
viewAll: string;
|
|
4617
|
-
week: string;
|
|
4618
|
-
backlogTitle: string;
|
|
4619
|
-
systemStatus: string;
|
|
4620
|
-
budgetUtil: string;
|
|
4621
|
-
variance: string;
|
|
4622
|
-
cost: string;
|
|
4623
|
-
estimate: string;
|
|
4624
|
-
sold: string;
|
|
4625
|
-
cashOut: string;
|
|
4626
|
-
typeToAdd: string;
|
|
4627
|
-
critical: string;
|
|
4628
|
-
blocker: string;
|
|
4629
|
-
risk: string;
|
|
4630
|
-
delay: string;
|
|
4631
|
-
days: string;
|
|
4632
|
-
};
|
|
4633
|
-
tooltips: {
|
|
4634
|
-
progress: string;
|
|
4635
|
-
status: string;
|
|
4636
|
-
assignees: string;
|
|
4637
|
-
duration: string;
|
|
4638
|
-
days: string;
|
|
4639
|
-
};
|
|
4413
|
+
|
|
4414
|
+
/** Modo del valor mostrado en el extremo de la barra. */
|
|
4415
|
+
type MoneyMode = '$' | 'Hrs';
|
|
4416
|
+
|
|
4417
|
+
interface DailyLog {
|
|
4418
|
+
date: string;
|
|
4419
|
+
hours: number;
|
|
4640
4420
|
}
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
onEventClick?: (event: CalendarEvent) => void;
|
|
4647
|
-
/** Event double-click handler */
|
|
4648
|
-
onEventDoubleClick?: (event: CalendarEvent) => void;
|
|
4649
|
-
/** Date click handler (create new task) */
|
|
4650
|
-
onDateClick?: (date: Date) => void;
|
|
4651
|
-
/** Task update after drag/drop */
|
|
4652
|
-
onTaskUpdate?: (task: Task) => void;
|
|
4653
|
-
/** Task delete handler */
|
|
4654
|
-
onTaskDelete?: (taskId: string) => void;
|
|
4655
|
-
/** View change handler */
|
|
4656
|
-
onViewChange?: (view: CalendarViewMode) => void;
|
|
4657
|
-
/** Date range change handler */
|
|
4658
|
-
onDateRangeChange?: (start: Date, end: Date) => void;
|
|
4659
|
-
/** v0.17.99: Quick create task handler */
|
|
4660
|
-
onTaskCreate?: (taskData: Partial<Task>) => void;
|
|
4661
|
-
/** v0.17.241: Upload attachments handler */
|
|
4662
|
-
onUploadAttachments?: (taskId: string, files: File[]) => Promise<void>;
|
|
4663
|
-
/** v0.17.241: Delete attachment handler */
|
|
4664
|
-
onDeleteAttachment?: (attachmentId: string) => Promise<void>;
|
|
4421
|
+
interface TeamMember {
|
|
4422
|
+
userId: string;
|
|
4423
|
+
name: string;
|
|
4424
|
+
weeklyCapacity?: number;
|
|
4425
|
+
dailyEstimated: DailyLog[];
|
|
4665
4426
|
}
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
*/
|
|
4669
|
-
interface CalendarBoardProps {
|
|
4670
|
-
/** Tasks to display */
|
|
4427
|
+
|
|
4428
|
+
interface Props {
|
|
4671
4429
|
tasks: Task[];
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
/**
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
attachmentsByTask?: Map<string, Attachment[]>;
|
|
4692
|
-
/** v0.17.254: Comments for TaskDetailModal */
|
|
4693
|
-
comments?: Array<{
|
|
4694
|
-
id: string;
|
|
4695
|
-
taskId: string;
|
|
4696
|
-
userId: string;
|
|
4697
|
-
content: string;
|
|
4698
|
-
createdAt: Date;
|
|
4699
|
-
updatedAt?: Date;
|
|
4700
|
-
user?: {
|
|
4701
|
-
id: string;
|
|
4702
|
-
name: string;
|
|
4703
|
-
email: string;
|
|
4704
|
-
avatarUrl?: string;
|
|
4705
|
-
};
|
|
4706
|
-
}>;
|
|
4707
|
-
/** v0.17.254: Callback to add a comment (with optional attachments) */
|
|
4708
|
-
onAddComment?: (taskId: string, content: string, mentionedUserIds?: string[], attachments?: Array<{
|
|
4709
|
-
id: string;
|
|
4710
|
-
name: string;
|
|
4711
|
-
url: string;
|
|
4712
|
-
type: string;
|
|
4713
|
-
size: number;
|
|
4714
|
-
}>) => Promise<void>;
|
|
4715
|
-
/** v0.17.425: Upload comment attachments callback */
|
|
4716
|
-
onUploadCommentAttachments?: (files: File[]) => Promise<Array<{
|
|
4717
|
-
id: string;
|
|
4718
|
-
name: string;
|
|
4719
|
-
url: string;
|
|
4720
|
-
type: string;
|
|
4721
|
-
size: number;
|
|
4722
|
-
}>>;
|
|
4723
|
-
/** v0.17.254: Current user info for comment input */
|
|
4724
|
-
currentUser?: {
|
|
4430
|
+
projectName: string;
|
|
4431
|
+
projectId: string;
|
|
4432
|
+
projectColor?: string;
|
|
4433
|
+
workspaceId?: string;
|
|
4434
|
+
locale: 'es' | 'en';
|
|
4435
|
+
/** 'light' aplica la paleta clara; cualquier otro = oscuro. */
|
|
4436
|
+
themeMode?: 'dark' | 'light';
|
|
4437
|
+
hourlyRate: number;
|
|
4438
|
+
/** money compartido con Gantt/Lista (lens global). */
|
|
4439
|
+
money: MoneyMode;
|
|
4440
|
+
onMoneyChange: (m: MoneyMode) => void;
|
|
4441
|
+
/** abrir el drawer global de tarea. */
|
|
4442
|
+
onTaskOpen?: (taskId: string) => void;
|
|
4443
|
+
/** contenido extra a la derecha de la topbar (historial, etc.). */
|
|
4444
|
+
rightContent?: React.ReactNode;
|
|
4445
|
+
/** S3 (C5): ¿el usuario puede reprogramar? Si no, el calendario es solo lectura. */
|
|
4446
|
+
canReschedule?: boolean;
|
|
4447
|
+
/** S3 (C5): commit del movimiento (la tarea + sus sucesoras). Devuelve éxito. */
|
|
4448
|
+
onReschedule?: (changes: Array<{
|
|
4725
4449
|
id: string;
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4450
|
+
startDate: Date;
|
|
4451
|
+
endDate: Date;
|
|
4452
|
+
}>) => Promise<boolean>;
|
|
4453
|
+
/** miembros con su carga diaria (de useTeamCapacity en el SaaS). */
|
|
4454
|
+
members?: TeamMember[];
|
|
4455
|
+
/** festivos del workspace como 'YYYY-MM-DD' (de useHolidays en el SaaS). */
|
|
4456
|
+
holidayDates?: string[];
|
|
4457
|
+
/** jornada del workspace (de timesheetSettings) — capacidad diaria por persona. */
|
|
4458
|
+
timesheetSettings?: {
|
|
4459
|
+
hoursPerDay?: Record<string, number>;
|
|
4729
4460
|
};
|
|
4730
|
-
/**
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
avatar?: string;
|
|
4737
|
-
color?: string;
|
|
4738
|
-
}>;
|
|
4739
|
-
onTaskOpen?: (taskId: string) => void;
|
|
4740
|
-
/** Enable time tracking features in TaskDetailModal */
|
|
4741
|
-
enableTimeTracking?: boolean;
|
|
4742
|
-
/** Time tracking summary for the currently open task */
|
|
4743
|
-
timeTrackingSummary?: TimeTrackingSummary;
|
|
4744
|
-
/** Time entries for the currently open task */
|
|
4745
|
-
timeEntries?: TimeEntry[];
|
|
4746
|
-
/** Current timer state */
|
|
4747
|
-
timerState?: TimerState;
|
|
4748
|
-
/** Callback to log time manually */
|
|
4749
|
-
onLogTime?: (taskId: string, input: TimeLogInput) => Promise<void>;
|
|
4750
|
-
/** Callback to update task estimate */
|
|
4751
|
-
onUpdateEstimate?: (taskId: string, minutes: number | null) => Promise<void>;
|
|
4752
|
-
/** Callback to update sold effort (quoted time) */
|
|
4753
|
-
onUpdateSoldEffort?: (taskId: string, minutes: number | null) => Promise<void>;
|
|
4754
|
-
/** Callback to start timer */
|
|
4755
|
-
onStartTimer?: (taskId: string) => void;
|
|
4756
|
-
/** Callback to stop timer and save time */
|
|
4757
|
-
onStopTimer?: (taskId: string) => void;
|
|
4758
|
-
/** Callback to discard timer without saving */
|
|
4759
|
-
onDiscardTimer?: (taskId: string) => void;
|
|
4760
|
-
/** Blur financial data (tiempo ofertado) for unauthorized users */
|
|
4761
|
-
blurFinancials?: boolean;
|
|
4762
|
-
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
4763
|
-
suppressDetailModal?: boolean;
|
|
4764
|
-
/** Display mode: 'hours' shows Xh, 'financial' shows $X (hours × hourlyRate) */
|
|
4765
|
-
lens?: 'hours' | 'financial';
|
|
4766
|
-
/** Rate used to convert hours → dollars when lens='financial' */
|
|
4767
|
-
hourlyRate?: number;
|
|
4461
|
+
/** se llama cuando cambia el rango visible (mes) para que el consumidor
|
|
4462
|
+
* recargue la capacidad de ese rango. */
|
|
4463
|
+
onVisibleRangeChange?: (range: {
|
|
4464
|
+
start: string;
|
|
4465
|
+
end: string;
|
|
4466
|
+
}) => void;
|
|
4768
4467
|
}
|
|
4468
|
+
declare function CalendarView({ tasks, projectName, projectId, projectColor, locale, themeMode, hourlyRate, money, onMoneyChange, onTaskOpen, canReschedule, onReschedule, members, holidayDates, timesheetSettings, onVisibleRangeChange, }: Props): react_jsx_runtime.JSX.Element;
|
|
4769
4469
|
|
|
4770
4470
|
/**
|
|
4771
|
-
*
|
|
4471
|
+
* Simulación de reprogramación con CPM (Calendario, Sprint 3, regla C5).
|
|
4472
|
+
*
|
|
4473
|
+
* Dado un movimiento de fechas de UNA tarea, calcula —sobre una copia en
|
|
4474
|
+
* memoria, SIN persistir— la consecuencia: qué sucesoras se desplazan, cuánto
|
|
4475
|
+
* cambia el fin de proyecto, y si la tarea es/sigue en ruta crítica.
|
|
4476
|
+
*
|
|
4477
|
+
* Reutiliza el modelo de dependencias del Gantt (task.dependencies). NO duplica
|
|
4478
|
+
* el commit: confirmar usa el endpoint real (updateTask) — esto es solo el
|
|
4479
|
+
* "forward pass" en simulación para mostrar el popover de impacto.
|
|
4772
4480
|
*/
|
|
4773
|
-
declare function CalendarBoard({ tasks, config, callbacks, initialDate, isLoading, error, className, style, availableTags, onCreateTag, attachmentsByTask, comments, onAddComment, currentUser, mentionableUsers, onUploadCommentAttachments, onTaskOpen, enableTimeTracking, timeTrackingSummary, timeEntries, timerState, onLogTime, onUpdateEstimate, onUpdateSoldEffort, onStartTimer, onStopTimer, onDiscardTimer, blurFinancials, suppressDetailModal, lens: calLens, hourlyRate: calRate, }: CalendarBoardProps): react_jsx_runtime.JSX.Element;
|
|
4774
4481
|
|
|
4482
|
+
interface RescheduleSimulation {
|
|
4483
|
+
taskId: string;
|
|
4484
|
+
oldStart: Date;
|
|
4485
|
+
oldEnd: Date;
|
|
4486
|
+
newStart: Date;
|
|
4487
|
+
newEnd: Date;
|
|
4488
|
+
/** sucesoras que se mueven por respetar dependencias (id + nombre + nuevas fechas). */
|
|
4489
|
+
movedSuccessors: Array<{
|
|
4490
|
+
id: string;
|
|
4491
|
+
name: string;
|
|
4492
|
+
newStart: Date;
|
|
4493
|
+
newEnd: Date;
|
|
4494
|
+
}>;
|
|
4495
|
+
/** delta del fin de proyecto en días (>0 lo retrasa, 0 = absorbido por holgura). */
|
|
4496
|
+
projectEndDeltaDays: number;
|
|
4497
|
+
oldProjectEnd: Date;
|
|
4498
|
+
newProjectEnd: Date;
|
|
4499
|
+
/** ¿la tarea movida estaba en ruta crítica antes del movimiento? */
|
|
4500
|
+
wasCritical: boolean;
|
|
4501
|
+
/** ¿sigue en ruta crítica tras el movimiento? */
|
|
4502
|
+
stillCritical: boolean;
|
|
4503
|
+
/** holgura (días) de la tarea antes del movimiento (informativo). */
|
|
4504
|
+
slackDays: number;
|
|
4505
|
+
}
|
|
4775
4506
|
/**
|
|
4776
|
-
*
|
|
4777
|
-
* @version 2.0.0
|
|
4507
|
+
* Simula mover una tarea a [newStart, newEnd]. Devuelve el impacto SIN persistir.
|
|
4778
4508
|
*/
|
|
4509
|
+
declare function simulateReschedule(tasks: Task[], taskId: string, newStart: Date, newEnd: Date): RescheduleSimulation | null;
|
|
4779
4510
|
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
*/
|
|
4784
|
-
declare const darkTheme$2: CalendarTheme;
|
|
4785
|
-
/**
|
|
4786
|
-
* Light theme for CalendarBoard
|
|
4787
|
-
*/
|
|
4788
|
-
declare const lightTheme$2: CalendarTheme;
|
|
4789
|
-
/**
|
|
4790
|
-
* Neutral theme for CalendarBoard
|
|
4791
|
-
*/
|
|
4792
|
-
declare const neutralTheme$2: CalendarTheme;
|
|
4793
|
-
/**
|
|
4794
|
-
* All available themes
|
|
4795
|
-
*/
|
|
4796
|
-
declare const calendarThemes: {
|
|
4797
|
-
readonly dark: CalendarTheme;
|
|
4798
|
-
readonly light: CalendarTheme;
|
|
4799
|
-
readonly neutral: CalendarTheme;
|
|
4800
|
-
};
|
|
4801
|
-
type CalendarThemeName = keyof typeof calendarThemes;
|
|
4802
|
-
/**
|
|
4803
|
-
* Get theme by name
|
|
4804
|
-
*/
|
|
4805
|
-
declare function getCalendarTheme(themeName: CalendarThemeName): CalendarTheme;
|
|
4511
|
+
type CalView = 'mes' | 'semana' | 'lookahead' | 'agenda';
|
|
4512
|
+
type CalMoney = 'hrs' | '$';
|
|
4513
|
+
type CalLayerId = 'tareas' | 'cpm' | 'hitos' | 'ext' | 'festivos' | 'aus';
|
|
4806
4514
|
|
|
4807
4515
|
/**
|
|
4808
|
-
*
|
|
4809
|
-
*
|
|
4516
|
+
* Mapeo de datos reales del Gantt → estructuras del Calendario (Sprint 1).
|
|
4517
|
+
*
|
|
4518
|
+
* Toma las tareas reales (LibXAITask) que ya carga ProjectCalendar y las
|
|
4519
|
+
* proyecta sobre la grilla del mes visible como barras (CalTask). NO inventa
|
|
4520
|
+
* datos: hitos/desembolsos/externos/ausencias solo aparecen si hay fuente real
|
|
4521
|
+
* (en S1 derivamos "vencimientos" de tareas que terminan en el mes; el resto
|
|
4522
|
+
* llega cuando existan sus entidades — S2/S3).
|
|
4810
4523
|
*/
|
|
4811
4524
|
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
*/
|
|
4816
|
-
|
|
4817
|
-
/**
|
|
4818
|
-
|
|
4819
|
-
*/
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
/**
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
declare function getCalendarTranslations(locale: CalendarSupportedLocale | string): CalendarTranslations;
|
|
4829
|
-
/**
|
|
4830
|
-
* Merge custom translations with default translations
|
|
4831
|
-
*/
|
|
4832
|
-
declare function mergeCalendarTranslations(locale: CalendarSupportedLocale | string, customTranslations?: Partial<CalendarTranslations>): CalendarTranslations;
|
|
4833
|
-
/**
|
|
4834
|
-
* Get month names array based on locale
|
|
4835
|
-
*/
|
|
4836
|
-
declare function getMonthNames(locale: CalendarSupportedLocale | string): string[];
|
|
4525
|
+
interface BuildOpts {
|
|
4526
|
+
tasks: Task[];
|
|
4527
|
+
grid: MonthGrid;
|
|
4528
|
+
/** projectId → color (CSS). En vista de un proyecto, un solo color. */
|
|
4529
|
+
projectColor: (projectId: string) => string;
|
|
4530
|
+
/** tarifa media para estimar costo cuando no hay costo explícito. */
|
|
4531
|
+
hourlyRate: number;
|
|
4532
|
+
/** id de proyecto de las tareas (el calendario es por proyecto en S1). */
|
|
4533
|
+
projectId: string;
|
|
4534
|
+
}
|
|
4535
|
+
interface BuiltCalendar {
|
|
4536
|
+
calTasks: CalTask[];
|
|
4537
|
+
dayItems: DayItem[];
|
|
4538
|
+
/** ¿el mes visible tiene algo que mostrar? (para estado vacío C13) */
|
|
4539
|
+
isEmpty: boolean;
|
|
4540
|
+
}
|
|
4837
4541
|
/**
|
|
4838
|
-
*
|
|
4542
|
+
* Construye las barras (y items derivados) para el mes visible de la grilla.
|
|
4543
|
+
* Recorta tareas a la ventana de la grilla; las que no intersectan se omiten.
|
|
4839
4544
|
*/
|
|
4840
|
-
declare function
|
|
4545
|
+
declare function buildCalendar(opts: BuildOpts): BuiltCalendar;
|
|
4841
4546
|
|
|
4842
4547
|
interface CardStackProps {
|
|
4843
4548
|
/** Stack configuration */
|
|
@@ -6953,4 +6658,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
6953
6658
|
*/
|
|
6954
6659
|
declare const defaultTheme: ThemeName;
|
|
6955
6660
|
|
|
6956
|
-
export { type AICallbacks, type AICommandResult, type GanttTask as AIGanttTask, type AIMessage, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, AddCardButton, type AddCardButtonProps, type AddCardData, AddColumnButton, type AddColumnButtonProps, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type AvailableUser, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, CUSTOM_FIELD_TYPES,
|
|
6661
|
+
export { type AICallbacks, type AICommandResult, type GanttTask as AIGanttTask, type AIMessage, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, AddCardButton, type AddCardButtonProps, type AddCardData, AddColumnButton, type AddColumnButtonProps, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type AvailableUser, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, CUSTOM_FIELD_TYPES, type CalLayerId, type CalMoney, type CalView, CalendarView as CalendarBoard, type DailyLog as CalendarDailyLog, type TeamMember as CalendarTeamMember, Card, type CardFilter, type CardFilters, CardHistoryReplay, type CardHistoryReplayProps, CardHistoryTimeline, type CardHistoryTimelineProps, type CardProps, CardRelationshipsGraph, type CardRelationshipsGraphProps, type CardSort, type CardSortKey, CardStack, type CardStackProps, type CardStack$1 as CardStackType, type CardStatus, type CardTemplate, CardTemplateSelector, type CardTemplateSelectorProps, type CardTimeProps, type Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, type CommentAttachment, ConfigMenu, type ConfigMenuProps, ContextMenu, type ContextMenuAction, type ContextMenuState, type CustomFieldDefinition, type CustomFieldValue, DEFAULT_SHORTCUTS, DEFAULT_TABLE_COLUMNS, DEFAULT_TEMPLATES, type DateFilter, DateRangePicker, type DateRangePickerProps, DependenciesSelector, type DependenciesSelectorProps, DependencyLine, type DesignTokens, DistributionCharts, type DistributionChartsProps, type DistributionDataPoint, type DragData, type DropData, type DurationToken, type EasingToken, EditableColumnTitle, type EditableColumnTitleProps, ErrorBoundary, type ErrorBoundaryProps, ExportDropdown, type ExportFormat, ExportImportModal, type ExportImportModalProps, type ExportOptions, FilterBar, type FilterBarProps, type FilterState, type FlattenedTask, type FontSizeToken, type FontWeightToken, GANTT_AI_SYSTEM_PROMPT, GanttAIAssistant, type GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType$1 as GanttColumnType, type GanttConfig, GanttI18nContext, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, type GanttTranslations, GenerateGanttTasksDialog, type GenerateGanttTasksDialogProps, GeneratePlanModal, type GeneratePlanModalProps, type GeneratedPlan, type GeneratedTasksResponse, type GroupByOption, GroupBySelector, type GroupBySelectorProps, HealthBar, type HealthBarProps, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanToolbar, type KanbanToolbarProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, type ColumnType as ListColumnType, type ListFilter, type ListSort, type ListSortColumn, ListView, type ListViewCallbacks, type ListViewConfig, type ListViewPermissions, type ListViewProps, type ListViewSupportedLocale, type ListViewTheme, type ListViewThemeName, type ListViewTranslations, MenuIcons, type MoneyMode, type OpacityToken, type PendingFile, type PersistHistoryConfig, type Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, ProfitabilityReport, type ProfitabilityReportProps, type ProjectForecast, type ProjectHealthData, QuickTaskCreate, type QuickTaskCreateData, type QuickTaskCreateProps, RATE_LIMITS, type RenderProps, type RescheduleSimulation, type RetryOptions, type RetryResult, STANDARD_FIELDS, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type Subtask, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, type TableColumn, TagBadge, TagList, TagPicker, TaskBar, type TaskComment, TaskDetailModal, type TaskDetailModalProps, type TaskFilterType, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type TaskPriority, type TaskTag, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeEntry, TimeInputPopover, type TimeInputPopoverProps, type TimeLogInput, type TimeLogSource, TimePill, type TimePillProps, TimePopover, type TimePopoverProps, type TimeScale, type TimeTrackingBoardProps, type TimeTrackingCallbacks, type TimeTrackingSummary, Timeline, type TimerState, type ThemeColors$1 as TokenThemeColors, type TokenValue, type UsageStats, type UseAIOptions, type UseAIReturn, type UseBoardReturn as UseBoardCoreReturn, type UseBoardOptions, type UseBoardReturn$1 as UseBoardReturn, type UseCardStackingOptions, type UseCardStackingResult, type UseDragStateReturn, type UseFiltersOptions, type UseFiltersReturn, type UseKanbanStateOptions, type UseKanbanStateReturn, type UseKeyboardShortcutsOptions, type UseKeyboardShortcutsReturn, type UseMultiSelectReturn, type UseSelectionStateReturn, type User$1 as User, UserAssignmentSelector, type UserAssignmentSelectorProps, VelocityChart, type VelocityChartProps, type VelocityDataPoint, VirtualGrid, type VirtualGridProps, VirtualList, type VirtualListProps, type ZIndexToken, aiUsageTracker, borderRadius, buildCalendar, calculatePosition, cardToGanttTask, cardsToGanttTasks, cn, createKanbanView, createRetryWrapper, darkTheme, darkTheme$1 as darkTokenTheme, defaultTheme, designTokens, duration, easing, exportTokensToCSS, findTaskByName, fontSize, fontWeight, formatCost, en$1 as ganttEnTranslations, es$1 as ganttEsTranslations, ganttTaskToCardUpdate, themes$1 as ganttThemes, gantt as ganttTokens, translations as ganttTranslations, ganttUtils, generateCSSVariables, generateCompleteCSS, generateInitialPositions, generateTasksContext, generateThemeVariables, getListViewTheme, getListViewTranslations, getToken, getTranslations, kanban as kanbanTokens, lightTheme, lightTheme$1 as lightTokenTheme, lineHeight, darkTheme$2 as listViewDarkTheme, en as listViewEnTranslations, es as listViewEsTranslations, lightTheme$2 as listViewLightTheme, neutralTheme$2 as listViewNeutralTheme, listViewThemes, listViewTranslations, mergeListViewTranslations, mergeTranslations, neutralTheme, neutralTheme$1 as neutralTokenTheme, opacity, parseLocalCommand, parseNaturalDate, parseNaturalDuration, parseProgress, parseStatus, pluginManager, retrySyncOperation, retryWithBackoff, shadows, shouldVirtualizeGrid, simulateReschedule, spacing, themes, useAI, useBoard$1 as useBoard, useBoard as useBoardCore, useBoardStore, useCardStacking, useDragState, useFilteredCards, useFilters, useGanttI18n, useKanbanState, useKeyboardShortcuts, useMultiSelect, useSelectionState, useSortedCards, useTheme, useVirtualGrid, useVirtualList, validateAIResponse, withErrorBoundary, wouldCreateCircularDependency, zIndex };
|